diff --git a/.vs/PO/v16/.suo b/.vs/PO/v16/.suo index a55d2927..1d814535 100644 Binary files a/.vs/PO/v16/.suo and b/.vs/PO/v16/.suo differ diff --git a/Assets/BaseEnemyTurn.cs b/Assets/BaseEnemyTurn.cs new file mode 100644 index 00000000..3a1b7abc --- /dev/null +++ b/Assets/BaseEnemyTurn.cs @@ -0,0 +1,50 @@ +using System.Collections.Generic; +using System; +using UnityEditor; +using UnityEngine; +using UnityEngine.Events; + +public class BaseEnemyTurn : MonoBehaviour +{ + public static BaseEnemyTurn basic; + public List enemyLoopTurns; + public GameObject currentEnemy; + + private void Awake() + { + if (basic != null && basic != this) + { + Debug.LogWarning("2 base enemy turn on the scene"); + Destroy(this); + return; + } + + basic = this; + } + public void FindLoopTurn(GameObject _enemy, int _phaseAttack) + { + for(int i = 0; i < enemyLoopTurns.Count; i++) + { + if(enemyLoopTurns[i].config == _enemy.GetComponent().enemyConfig) + { + currentEnemy = _enemy; + int _phase = _phaseAttack % enemyLoopTurns[i].attackLoop.Count; + Debug.Log(_phase + " " + _enemy.name); + enemyLoopTurns[i].attackLoop[_phase]?.Invoke(); + return; + } + } + Debug.LogError("Loop not found"); + + } +} + + +[Serializable] +public class EnemyLoopTurn +{ + [Tooltip("the config is necessary to find the right chain of actions")] + public EnemyConfig config; + public List attackLoop = new List(); +} + diff --git a/Assets/BaseEnemyTurn.cs.meta b/Assets/BaseEnemyTurn.cs.meta new file mode 100644 index 00000000..1ac5b4ad --- /dev/null +++ b/Assets/BaseEnemyTurn.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 612089f16e66d00488dccd03e47c4582 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/LibraryTurnMethods.cs b/Assets/LibraryTurnMethods.cs new file mode 100644 index 00000000..93a02a71 --- /dev/null +++ b/Assets/LibraryTurnMethods.cs @@ -0,0 +1,27 @@ +using System.Collections; +using System.Collections.Generic; +using System; +using UnityEngine; +using UnityEditor; + +public class LibraryTurnMethods : MonoBehaviour +{ + public void Attack() + { + Enemy _enemy = BaseEnemyTurn.basic.currentEnemy.GetComponent(); + Player.main.ChangeHp(_enemy.enemyConfig.enemyCharacteristics.damage); + + } + public void Healing() + { + + Enemy _enemy = BaseEnemyTurn.basic.currentEnemy.GetComponent(); + int _healing = + _enemy.enemyConfig.enemyCharacteristics.healing; + Debug.Log(_enemy + " " + _healing); + _enemy.ChangeHp(-_healing); + + } + +} + diff --git a/Assets/LibraryTurnMethods.cs.meta b/Assets/LibraryTurnMethods.cs.meta new file mode 100644 index 00000000..b53735f0 --- /dev/null +++ b/Assets/LibraryTurnMethods.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bd479503eca378348bbe2b8d5b53b364 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Prefabs/Cards/BigDamagePrefab.prefab b/Assets/Prefabs/Cards/BigDamagePrefab.prefab index 827f6cb1..a8a31f41 100644 --- a/Assets/Prefabs/Cards/BigDamagePrefab.prefab +++ b/Assets/Prefabs/Cards/BigDamagePrefab.prefab @@ -61,6 +61,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 0} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -89,6 +90,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -119,6 +121,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 8062193537357689324} + m_TargetAssemblyTypeName: m_MethodName: OnClick m_Mode: 1 m_Arguments: @@ -189,6 +192,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -267,6 +271,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -341,6 +346,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -419,6 +425,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -491,6 +498,13 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: cardConfig: {fileID: 11400000, guid: 5169032180a01ac43905ed44dbad9b24, type: 2} + attackLoop: + - m_PersistentCalls: + m_Calls: [] + - m_PersistentCalls: + m_Calls: [] + - m_PersistentCalls: + m_Calls: [] number: 0 cardObject: {fileID: 3374814057080039205} picture: {fileID: 5929972977001169469} @@ -567,6 +581,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -645,6 +660,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -723,6 +739,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: diff --git a/Assets/Scenes/SampleScene.unity b/Assets/Scenes/SampleScene.unity index 17329731..77c1127f 100644 --- a/Assets/Scenes/SampleScene.unity +++ b/Assets/Scenes/SampleScene.unity @@ -43,7 +43,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 12 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -98,7 +98,7 @@ LightmapSettings: m_TrainingDataDestination: TrainingData m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_LightingSettings: {fileID: 4890085278179872738, guid: 727470f1003b0d84ea84cdd280a59b2b, type: 2} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -118,6 +118,8 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 debug: m_Flags: 0 m_NavMeshData: {fileID: 0} @@ -176,6 +178,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 0 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -264,6 +267,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -342,6 +346,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -414,6 +419,7 @@ SpriteRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -501,6 +507,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -575,6 +582,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 0, b: 0, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -649,6 +657,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -727,6 +736,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -795,6 +805,7 @@ SpriteRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -882,6 +893,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -941,7 +953,7 @@ RectTransform: - {fileID: 1443397809} - {fileID: 888543789} m_Father: {fileID: 1480860662} - m_RootOrder: 2 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -963,6 +975,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1008,6 +1021,9 @@ MonoBehaviour: enemyHp: {fileID: 2062929834} enemyHealthbar: {fileID: 1443397810} hp: 0 + phaseAttack: 0 + attackLoop: [] + index: 0 --- !u!1 &501741110 GameObject: m_ObjectHideFlags: 0 @@ -1060,6 +1076,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 0, b: 0, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1145,6 +1162,7 @@ MonoBehaviour: - {fileID: 73259540} - {fileID: 1174871651} stamina: 0 + waitingEnemyTurn: 0 --- !u!20 &519420031 Camera: m_ObjectHideFlags: 0 @@ -1220,6 +1238,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 770121095} + m_TargetAssemblyTypeName: m_MethodName: SetActive m_Mode: 6 m_Arguments: @@ -1230,6 +1249,45 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 1 m_CallState: 2 + onDefeat: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1128828789} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 1718398096} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1135022039} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 enemyPositions: - {fileID: 258774032} - {fileID: 1278751374} @@ -1239,12 +1297,10 @@ MonoBehaviour: - {fileID: 1271226751} - {fileID: 424260587} playerPosition: {fileID: 71094363} - playerName: {fileID: 804817851} - playerMaxHp: {fileID: 44604190} - playerHp: {fileID: 58824884} - playerHealthbar: {fileID: 1593438719} + player: {fileID: 2101519803} numberPhase: 1 quantityEnemies: 0 + currentEnemies: [] --- !u!1 &596008590 GameObject: m_ObjectHideFlags: 0 @@ -1298,6 +1354,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.2627451, g: 0.2627451, b: 0.2627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1422,7 +1479,7 @@ RectTransform: - {fileID: 9106519} - {fileID: 1390723402} m_Father: {fileID: 1480860662} - m_RootOrder: 0 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -1444,6 +1501,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1489,6 +1547,23 @@ MonoBehaviour: enemyHp: {fileID: 1539474213} enemyHealthbar: {fileID: 9106520} hp: 0 + phaseAttack: 0 + attackLoop: + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11500000, guid: bb773d3a31f3ff84d9872e7cee1125bd, type: 3} + m_TargetAssemblyTypeName: + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + index: 0 --- !u!1 &747611652 GameObject: m_ObjectHideFlags: 0 @@ -1541,6 +1616,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.26415092, g: 0.26415092, b: 0.26415092, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1615,6 +1691,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1693,6 +1770,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -1700,7 +1778,7 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 0} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_HighlightedColor: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 0} m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0} m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 0} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0} @@ -1723,11 +1801,12 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519420030} - m_MethodName: Action - m_Mode: 2 + m_TargetAssemblyTypeName: DeckManager, Assembly-CSharp + m_MethodName: ActionInPlayer + m_Mode: 1 m_Arguments: - m_ObjectArgument: {fileID: 2101519803} - m_ObjectArgumentAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine m_IntArgument: 0 m_FloatArgument: 0 m_StringArgument: @@ -1748,6 +1827,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1822,6 +1902,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1900,6 +1981,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.26415092, g: 0.26415092, b: 0.26415092, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2009,6 +2091,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2087,6 +2170,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -2117,6 +2201,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: m_MethodName: ActionInEnemy m_Mode: 2 m_Arguments: @@ -2142,6 +2227,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2216,6 +2302,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2294,6 +2381,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2320,6 +2408,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1093410812} m_CullTransparentMesh: 0 +--- !u!1 &1128828789 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1128828790} + - component: {fileID: 1128828792} + - component: {fileID: 1128828791} + m_Layer: 5 + m_Name: Defeat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1128828790 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1128828789} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.9390976, y: 1.9390976, z: 1.9390976} + m_Children: [] + m_Father: {fileID: 1302787964} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.00001526, y: 0.00001049} + m_SizeDelta: {x: 1713.5695, y: 338.06305} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1128828791 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1128828789} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 3 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 7 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: DEFEAT +--- !u!222 &1128828792 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1128828789} + m_CullTransparentMesh: 0 --- !u!1 &1135022039 GameObject: m_ObjectHideFlags: 0 @@ -2412,6 +2579,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.26415092, g: 0.26415092, b: 0.26415092, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2486,6 +2654,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2654,6 +2823,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 0.392} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2744,7 +2914,7 @@ RectTransform: - {fileID: 1987347243} - {fileID: 1767372939} m_Father: {fileID: 1480860662} - m_RootOrder: 1 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -2766,6 +2936,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2811,6 +2982,9 @@ MonoBehaviour: enemyHp: {fileID: 296641238} enemyHealthbar: {fileID: 1987347244} hp: 0 + phaseAttack: 0 + attackLoop: [] + index: 0 --- !u!1 &1278751374 GameObject: m_ObjectHideFlags: 0 @@ -2857,6 +3031,7 @@ SpriteRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -2950,6 +3125,7 @@ MonoBehaviour: m_FallbackScreenDPI: 96 m_DefaultSpriteDPI: 96 m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 --- !u!223 &1302787963 Canvas: m_ObjectHideFlags: 0 @@ -2987,6 +3163,8 @@ RectTransform: - {fileID: 1480860662} - {fileID: 2101519804} - {fileID: 1718398097} + - {fileID: 1357456000} + - {fileID: 1128828790} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -3117,6 +3295,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3143,6 +3322,115 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1337029629} m_CullTransparentMesh: 0 +--- !u!1 &1357455999 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1357456000} + - component: {fileID: 1357456001} + - component: {fileID: 1357456002} + m_Layer: 5 + m_Name: BaseEnemyTurn + m_TagString: Untagged + m_Icon: {fileID: 2800000, guid: 48d034c499ee4697af9dd6e327110249, type: 3} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1357456000 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1357455999} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1302787964} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1357456001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1357455999} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 612089f16e66d00488dccd03e47c4582, type: 3} + m_Name: + m_EditorClassIdentifier: + enemyLoopTurns: + - config: {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + attackLoop: + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1357456002} + m_TargetAssemblyTypeName: LibraryTurnMethods, Assembly-CSharp + m_MethodName: Attack + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - config: {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + attackLoop: + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1357456002} + m_TargetAssemblyTypeName: LibraryTurnMethods, Assembly-CSharp + m_MethodName: Attack + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1357456002} + m_TargetAssemblyTypeName: LibraryTurnMethods, Assembly-CSharp + m_MethodName: Healing + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + currentEnemy: {fileID: 0} +--- !u!114 &1357456002 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1357455999} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bd479503eca378348bbe2b8d5b53b364, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1390723401 GameObject: m_ObjectHideFlags: 0 @@ -3195,6 +3483,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3225,6 +3514,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: m_MethodName: ActionInEnemy m_Mode: 2 m_Arguments: @@ -3250,6 +3540,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3324,6 +3615,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3405,6 +3697,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 0 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3468,9 +3761,9 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 718877045} - {fileID: 1271226752} - {fileID: 424260588} + - {fileID: 718877045} m_Father: {fileID: 1302787964} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -3531,6 +3824,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3603,6 +3897,7 @@ SpriteRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -3690,6 +3985,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3768,6 +4064,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 0, b: 0, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3845,6 +4142,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 0 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3934,6 +4232,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3964,15 +4263,16 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: DeckManager, Assembly-CSharp m_MethodName: EndTurn - m_Mode: 1 + m_Mode: 6 m_Arguments: m_ObjectArgument: {fileID: 0} m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine m_IntArgument: 0 m_FloatArgument: 0 m_StringArgument: - m_BoolArgument: 0 + m_BoolArgument: 1 m_CallState: 2 --- !u!114 &1718398099 MonoBehaviour: @@ -3989,6 +4289,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4063,6 +4364,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -4093,6 +4395,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: m_MethodName: ActionInEnemy m_Mode: 2 m_Arguments: @@ -4118,6 +4421,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4192,6 +4496,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4273,6 +4578,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 0 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -4361,6 +4667,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 0, b: 0, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4435,6 +4742,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4513,6 +4821,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4548,6 +4857,7 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 2101519804} + - component: {fileID: 2101519805} m_Layer: 5 m_Name: Player m_TagString: Untagged @@ -4579,6 +4889,25 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2101519805 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2101519803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a797a7d28ee3d2d4c85df06375b9a2c7, type: 3} + m_Name: + m_EditorClassIdentifier: + playerName: {fileID: 804817851} + playerMaxHp: {fileID: 44604190} + playerHp: {fileID: 58824884} + playerHealthbar: {fileID: 1593438719} + playerConfig: {fileID: 0} + playerPosition: {fileID: 0} + hp: 0 --- !u!1 &2146044858 GameObject: m_ObjectHideFlags: 0 @@ -4631,6 +4960,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.26415092, g: 0.26415092, b: 0.26415092, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: diff --git a/Assets/Scenes/SampleSceneSettings.lighting b/Assets/Scenes/SampleSceneSettings.lighting new file mode 100644 index 00000000..ff4e65c4 --- /dev/null +++ b/Assets/Scenes/SampleSceneSettings.lighting @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!850595691 &4890085278179872738 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SampleSceneSettings + serializedVersion: 3 + m_GIWorkflowMode: 1 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 1 + m_BakeBackend: 0 + m_LightmapMaxSize: 1024 + m_BakeResolution: 40 + m_Padding: 2 + m_TextureCompression: 1 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAO: 0 + m_MixedBakeMode: 2 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 2 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 diff --git a/Assets/Scenes/SampleSceneSettings.lighting.meta b/Assets/Scenes/SampleSceneSettings.lighting.meta new file mode 100644 index 00000000..ee4e24a9 --- /dev/null +++ b/Assets/Scenes/SampleSceneSettings.lighting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 727470f1003b0d84ea84cdd280a59b2b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4890085278179872738 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Card.cs b/Assets/Scripts/Card.cs index 33727b53..53da2aa3 100644 --- a/Assets/Scripts/Card.cs +++ b/Assets/Scripts/Card.cs @@ -1,13 +1,17 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; +using UnityEngine.Events; using UnityEngine.UI; public class Card : MonoBehaviour { [SerializeField] private CardConfig cardConfig; + + [Space(3)] [HideInInspector] public int number; + [Header("DON'T TOUCH THIS! IT STANDART PRESET!")] [SerializeField] private GameObject cardObject; [SerializeField] private Image picture; diff --git a/Assets/Scripts/Configs/EnemyConfig.cs b/Assets/Scripts/Configs/EnemyConfig.cs index 7df6cf76..d56877ee 100644 --- a/Assets/Scripts/Configs/EnemyConfig.cs +++ b/Assets/Scripts/Configs/EnemyConfig.cs @@ -1,21 +1,27 @@ -using System; +using System.Collections.Generic; +using System; using UnityEditor; using UnityEngine; - +using UnityEngine.Events; [CreateAssetMenu(fileName = "EnemyConfig")] public class EnemyConfig : ScriptableObject { public EnemyCharacteristics enemyCharacteristics; + } [Serializable] public class EnemyCharacteristics { public string name; public int maxHp; + public int damage; + public int healing; public Sprite sprite; - [Range (1,3)] + [Range(1, 3)] public int minimumPosition; - [Range (1,3)] + [Range(1, 3)] public int maximumPosition; -} \ No newline at end of file + +} + diff --git a/Assets/Scripts/Configs/EnemyConfigs/Snake.asset b/Assets/Scripts/Configs/EnemyConfigs/Snake.asset index 16e60762..9ea69428 100644 --- a/Assets/Scripts/Configs/EnemyConfigs/Snake.asset +++ b/Assets/Scripts/Configs/EnemyConfigs/Snake.asset @@ -15,6 +15,37 @@ MonoBehaviour: enemyCharacteristics: name: Snake maxHp: 10 + damage: 1 + healing: 0 sprite: {fileID: 21300000, guid: 3cd50817f068be2499e7e3509dc6c1e7, type: 3} minimumPosition: 1 maximumPosition: 2 + attackLoop: + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11500000, guid: bb773d3a31f3ff84d9872e7cee1125bd, type: 3} + m_TargetAssemblyTypeName: + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11400000} + m_TargetAssemblyTypeName: + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 diff --git a/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset b/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset index 10b5bea5..9ce82fb2 100644 --- a/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset +++ b/Assets/Scripts/Configs/EnemyConfigs/Zombie.asset @@ -15,6 +15,9 @@ MonoBehaviour: enemyCharacteristics: name: Zombie maxHp: 15 + damage: 2 + healing: 2 sprite: {fileID: 21300000, guid: aab1740fef9fe4145aef437cf6873127, type: 3} minimumPosition: 1 maximumPosition: 3 + attackLoop: [] diff --git a/Assets/Scripts/Configs/PlayerConfigs/One.asset b/Assets/Scripts/Configs/PlayerConfigs/One.asset new file mode 100644 index 00000000..c80f5a9a --- /dev/null +++ b/Assets/Scripts/Configs/PlayerConfigs/One.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bf4cbb13736ac54f8e9fdca4327535f, type: 3} + m_Name: One + m_EditorClassIdentifier: + characterCharacteristics: + namePlayer: + maxHp: 0 + maxStamina: 0 + sprite: {fileID: 0} diff --git a/Assets/Scripts/Configs/PlayerConfigs/One.asset.meta b/Assets/Scripts/Configs/PlayerConfigs/One.asset.meta new file mode 100644 index 00000000..6418c378 --- /dev/null +++ b/Assets/Scripts/Configs/PlayerConfigs/One.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97caade20631e134b8c91a0b8e0302e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/DeckManager.cs b/Assets/Scripts/DeckManager.cs index 0fd60efe..63b3a6a9 100644 --- a/Assets/Scripts/DeckManager.cs +++ b/Assets/Scripts/DeckManager.cs @@ -15,6 +15,8 @@ public class DeckManager : MonoBehaviour [Header("Stamina")] [SerializeField] private List staminaCells = new List(); [HideInInspector] public int stamina; + + public bool waitingEnemyTurn = false; private void Start() { stamina = 3; @@ -24,6 +26,7 @@ public class DeckManager : MonoBehaviour public void HandingOut() { + for (int i = 0; i < 5; i++) { if (currentDeck.Count > 0) @@ -60,8 +63,9 @@ public class DeckManager : MonoBehaviour } } } - public void EndTurn() + public void EndTurn(bool enemyTurn) { + if (waitingEnemyTurn) return; for (int i = 0; i < 5; i++) { if (CardInTable[i] != null) @@ -73,15 +77,20 @@ public class DeckManager : MonoBehaviour if (stamina < 3) NewStaminaQuantity(stamina + 1); //нужна корутина для вражеского хода - HandingOut(); + if (enemyTurn) + StartCoroutine(EnemyStep()); + //а, вот же она + } public void ActionInEnemy(Enemy enemy) { + if (waitingEnemyTurn) return; if (currentCard == null) return; - if(currentCard.CardCharacteristics.damage > 0) + if (currentCard.CardCharacteristics.damage > 0) { enemy.ChangeHp(currentCard.CardCharacteristics.damage); - } else if (currentCard.CardCharacteristics.healing > 0) + } + else if (currentCard.CardCharacteristics.healing > 0) { enemy.ChangeHp(-currentCard.CardCharacteristics.healing); } @@ -92,7 +101,26 @@ public class DeckManager : MonoBehaviour } public void ActionInPlayer() { - + if (waitingEnemyTurn) return; + if (currentCard == null) return; + if (currentCard.CardCharacteristics.damage > 0) + { + Player.main.ChangeHp(currentCard.CardCharacteristics.damage); + } + else if (currentCard.CardCharacteristics.healing > 0) + { + Player.main.ChangeHp(-currentCard.CardCharacteristics.healing); + } + NewStaminaQuantity(stamina - currentCard.CardCharacteristics.quantityStamina); + CardInTable[numberCurrentCard].GetComponent().DestroyObject(); + currentCard = null; + } + IEnumerator EnemyStep() + { + waitingEnemyTurn = true; + Session.instance.EnemiesStep(); + yield return new WaitForSeconds(0.5f); + waitingEnemyTurn = false; + HandingOut(); } - } diff --git a/Assets/Scripts/Enemy.cs b/Assets/Scripts/Enemy.cs index 30d3b4ab..0e080ed7 100644 --- a/Assets/Scripts/Enemy.cs +++ b/Assets/Scripts/Enemy.cs @@ -1,28 +1,40 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; +using UnityEngine.Events; using UnityEngine.UI; public class Enemy : MonoBehaviour { public EnemyConfig enemyConfig; public GameObject enemyPosition; + + + [SerializeField] private Text enemyName; [SerializeField] private Text enemyMaxHp; [SerializeField] private Text enemyHp; [SerializeField] private Slider enemyHealthbar; [SerializeField] private int hp; - + + [Header("For checking. dont touch this")] + [SerializeField] int phaseAttack = 0; + public List attackLoop = new List(); + [HideInInspector] public int index; + + + + public void ChangeHp(int damage) { hp -= damage; - - if (hp<=0) + + if (hp <= 0) { Death(); } - else if(hp > enemyConfig.enemyCharacteristics.maxHp) + else if (hp > enemyConfig.enemyCharacteristics.maxHp) { hp = enemyConfig.enemyCharacteristics.maxHp; } @@ -48,7 +60,13 @@ public class Enemy : MonoBehaviour { SpriteRenderer _sprRend = enemyPosition.GetComponent(); _sprRend.sprite = null; - Camera.main.GetComponent().EnemyDeath(); + Session.instance.EnemyDeath(index); gameObject.SetActive(false); } + + public void Turn() + { + BaseEnemyTurn.basic.FindLoopTurn(this.gameObject, phaseAttack); + phaseAttack++; + } } diff --git a/Assets/Scripts/Player.cs b/Assets/Scripts/Player.cs new file mode 100644 index 00000000..45261423 --- /dev/null +++ b/Assets/Scripts/Player.cs @@ -0,0 +1,64 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class Player : MonoBehaviour +{ + public static Player main; + [Header("dont touch this. standart preset, change session")] + [SerializeField] private Text playerName; + [SerializeField] private Text playerMaxHp; + [SerializeField] private Text playerHp; + [SerializeField] private Slider playerHealthbar; + public PlayerConfig playerConfig; + public Transform playerPosition; + [SerializeField] private int hp; + + private void Awake() + { + if (main != null && main != this) + { + Debug.LogWarning("2 session on the scene"); + Destroy(this); + return; + } + + main = this; + } + public void NewInformation() + { + SpriteRenderer _sprRend = playerPosition.GetComponent(); + var _character = playerConfig.characterCharacteristics; + _sprRend.sprite = _character.sprite; + playerName.text = _character.namePlayer; + playerMaxHp.text = _character.maxHp.ToString(); + playerHp.text = playerMaxHp.text; + playerHealthbar.maxValue = _character.maxHp; + playerHealthbar.value = playerHealthbar.maxValue; + hp = _character.maxHp; + } + + public void ChangeHp(int damage) + { + hp -= damage; + + if (hp <= 0) + { + hp = 0; + Death(); + } + else if (hp > playerConfig.characterCharacteristics.maxHp) + { + hp = playerConfig.characterCharacteristics.maxHp; + } + + playerMaxHp.text = hp.ToString(); + playerHealthbar.value = hp; + } + + public void Death() + { + Session.instance.Defeat(); + } +} diff --git a/Assets/Scripts/Player.cs.meta b/Assets/Scripts/Player.cs.meta new file mode 100644 index 00000000..f6dcedf8 --- /dev/null +++ b/Assets/Scripts/Player.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a797a7d28ee3d2d4c85df06375b9a2c7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Session.cs b/Assets/Scripts/Session.cs index 309dd41f..82bcab59 100644 --- a/Assets/Scripts/Session.cs +++ b/Assets/Scripts/Session.cs @@ -8,12 +8,14 @@ using UnityEngine.SceneManagement; public class Session : MonoBehaviour { + public static Session instance; [SerializeField] private PlayerConfig playerConfig; [SerializeField] private BattleConfig battleConfig; [SerializeField] private UnityEvent onVictory; + [SerializeField] private UnityEvent onDefeat; @@ -24,13 +26,9 @@ public class Session : MonoBehaviour [SerializeField] private List enemyPositions = new List(); [SerializeField] private List enemies = new List(); - [Header("Player")] [SerializeField] private Transform playerPosition; - [SerializeField] private Text playerName; - [SerializeField] private Text playerMaxHp; - [SerializeField] private Text playerHp; - [SerializeField] private Slider playerHealthbar; + [SerializeField] private GameObject player; [Space(3)] @@ -38,6 +36,19 @@ public class Session : MonoBehaviour public int numberPhase = 1; public int quantityEnemies = 0; + [SerializeField] private List currentEnemies = new List(); + + private void Awake() + { + if (instance != null && instance != this) + { + Debug.LogWarning("2 session on the scene"); + Destroy(this); + return; + } + + instance = this; + } public void Start() { CreatePlayer(); @@ -51,7 +62,8 @@ public class Session : MonoBehaviour { quantityEnemies++; EnemyConfig enemy = Randomizer(i, FP.enemies); - CreateEnemies(enemy, i); + currentEnemies.Add(CreateEnemies(enemy, i)); + } } @@ -68,7 +80,8 @@ public class Session : MonoBehaviour { quantityEnemies++; EnemyConfig enemy = Randomizer(i, SP.enemies); - CreateEnemies(enemy, i); + currentEnemies.Add(CreateEnemies(enemy, i)); + } } @@ -85,7 +98,8 @@ public class Session : MonoBehaviour { quantityEnemies++; EnemyConfig enemy = Randomizer(i, TP.enemies); - CreateEnemies(enemy, i); + currentEnemies.Add(CreateEnemies(enemy, i)); + } } @@ -93,19 +107,24 @@ public class Session : MonoBehaviour { onVictory?.Invoke(); } - - public void EnemyDeath() + public void Defeat() + { + onDefeat?.Invoke(); + } + public void EnemyDeath(int index) { quantityEnemies--; - if(quantityEnemies == 0) + currentEnemies[index] = null; + if (quantityEnemies == 0) { + StartCoroutine(ChekingCoroutine()); } } IEnumerator ChekingCoroutine() { - yield return new WaitForSeconds(1.0f); + yield return new WaitForSeconds(0.5f); if (numberPhase == 1 && battleConfig.battleCharacteristics.SecondPhase) { numberPhase++; @@ -136,24 +155,33 @@ public class Session : MonoBehaviour return _enemyConfigs[_numberEnemy]; } - public void CreateEnemies(EnemyConfig _config, int _position) + public GameObject CreateEnemies(EnemyConfig _config, int _position) { + Enemy _enemy = enemies[_position].GetComponent(); enemies[_position].SetActive(true); - enemies[_position].GetComponent().enemyPosition = enemyPositions[_position]; - enemies[_position].GetComponent().enemyConfig = _config; - enemies[_position].GetComponent().NewInformation(); - + _enemy.enemyPosition = enemyPositions[_position]; + _enemy.enemyConfig = _config; + _enemy.NewInformation(); + _enemy.index = _position; + return (enemies[_position]); } public void CreatePlayer() { - SpriteRenderer _sprRend = playerPosition.GetComponent(); - var _character = playerConfig.characterCharacteristics; - _sprRend.sprite = _character.sprite; - playerName.text = _character.namePlayer; - playerMaxHp.text = _character.maxHp.ToString(); - playerHp.text = playerMaxHp.text; - playerHealthbar.maxValue = _character.maxHp; - playerHealthbar.value = playerHealthbar.maxValue; + player.GetComponent().playerPosition = playerPosition; + player.GetComponent().playerConfig = playerConfig; + player.GetComponent().NewInformation(); + } + + + public void EnemiesStep() + { + for (int i = 0; i < currentEnemies.Count; i++) + { + if (currentEnemies[i] != null) + { + currentEnemies[i].GetComponent().Turn(); + } + } } } \ No newline at end of file diff --git a/Library/APIUpdater/project-dependencies.graph b/Library/APIUpdater/project-dependencies.graph index ff26b484..cfa66fb5 100644 Binary files a/Library/APIUpdater/project-dependencies.graph and b/Library/APIUpdater/project-dependencies.graph differ diff --git a/Library/AnnotationManager b/Library/AnnotationManager index 21bfc477..51cfa1db 100644 Binary files a/Library/AnnotationManager and b/Library/AnnotationManager differ diff --git a/Library/ArtifactDB b/Library/ArtifactDB index d5cbd845..0a0846ac 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/ArtifactDB-lock b/Library/ArtifactDB-lock index dbe6ef0d..0bc8d913 100644 Binary files a/Library/ArtifactDB-lock and b/Library/ArtifactDB-lock differ diff --git a/Library/Artifacts/00/0026b09c80655731b0fb5c9a43bf6b31 b/Library/Artifacts/00/0026b09c80655731b0fb5c9a43bf6b31 new file mode 100644 index 00000000..323727bc Binary files /dev/null and b/Library/Artifacts/00/0026b09c80655731b0fb5c9a43bf6b31 differ diff --git a/Library/Artifacts/00/0060292fd55122723d56188a195a77b4 b/Library/Artifacts/00/0060292fd55122723d56188a195a77b4 new file mode 100644 index 00000000..b984183a Binary files /dev/null and b/Library/Artifacts/00/0060292fd55122723d56188a195a77b4 differ diff --git a/Library/Artifacts/00/00663f148c9d1983dc66c2c15bbfbfc3 b/Library/Artifacts/00/00663f148c9d1983dc66c2c15bbfbfc3 new file mode 100644 index 00000000..bbde50e2 Binary files /dev/null and b/Library/Artifacts/00/00663f148c9d1983dc66c2c15bbfbfc3 differ diff --git a/Library/Artifacts/00/007413a244018c4b898b7ae3f84de8a1 b/Library/Artifacts/00/007413a244018c4b898b7ae3f84de8a1 new file mode 100644 index 00000000..7540d49a Binary files /dev/null and b/Library/Artifacts/00/007413a244018c4b898b7ae3f84de8a1 differ diff --git a/Library/Artifacts/00/0075979eab511652181844956eadbc7b b/Library/Artifacts/00/0075979eab511652181844956eadbc7b new file mode 100644 index 00000000..f282ae31 Binary files /dev/null and b/Library/Artifacts/00/0075979eab511652181844956eadbc7b differ diff --git a/Library/Artifacts/00/00a231115d63b6daf90bacda97a29b5b b/Library/Artifacts/00/00a231115d63b6daf90bacda97a29b5b new file mode 100644 index 00000000..0a6aba2f Binary files /dev/null and b/Library/Artifacts/00/00a231115d63b6daf90bacda97a29b5b differ diff --git a/Library/Artifacts/00/00fa43209f0fd01c7f8663aae457fccf b/Library/Artifacts/00/00fa43209f0fd01c7f8663aae457fccf new file mode 100644 index 00000000..3b2b78cf Binary files /dev/null and b/Library/Artifacts/00/00fa43209f0fd01c7f8663aae457fccf differ diff --git a/Library/Artifacts/01/012e62aa5d8e4ec9c2b62b05333307b7 b/Library/Artifacts/01/012e62aa5d8e4ec9c2b62b05333307b7 new file mode 100644 index 00000000..e4b2a150 Binary files /dev/null and b/Library/Artifacts/01/012e62aa5d8e4ec9c2b62b05333307b7 differ diff --git a/Library/Artifacts/01/01d5b5230d6ecba16b46d16a8896c010 b/Library/Artifacts/01/01d5b5230d6ecba16b46d16a8896c010 new file mode 100644 index 00000000..7c8ca0f5 Binary files /dev/null and b/Library/Artifacts/01/01d5b5230d6ecba16b46d16a8896c010 differ diff --git a/Library/Artifacts/02/022eab08ef899199cf175aa4d09d3665 b/Library/Artifacts/02/022eab08ef899199cf175aa4d09d3665 new file mode 100644 index 00000000..723999ac Binary files /dev/null and b/Library/Artifacts/02/022eab08ef899199cf175aa4d09d3665 differ diff --git a/Library/Artifacts/02/0253a489cc8de22b5bd1f3d7f6daed23 b/Library/Artifacts/02/0253a489cc8de22b5bd1f3d7f6daed23 new file mode 100644 index 00000000..53817494 Binary files /dev/null and b/Library/Artifacts/02/0253a489cc8de22b5bd1f3d7f6daed23 differ diff --git a/Library/Artifacts/02/029afc0afaf4abe2b6a29da2fc976580 b/Library/Artifacts/02/029afc0afaf4abe2b6a29da2fc976580 new file mode 100644 index 00000000..bfae2fcf Binary files /dev/null and b/Library/Artifacts/02/029afc0afaf4abe2b6a29da2fc976580 differ diff --git a/Library/Artifacts/02/02db369e8afb38e744bd65172da730a7 b/Library/Artifacts/02/02db369e8afb38e744bd65172da730a7 new file mode 100644 index 00000000..a8928427 Binary files /dev/null and b/Library/Artifacts/02/02db369e8afb38e744bd65172da730a7 differ diff --git a/Library/Artifacts/02/02f8ab0d08cba7619b2e3662b5419855 b/Library/Artifacts/02/02f8ab0d08cba7619b2e3662b5419855 new file mode 100644 index 00000000..f1897b0e Binary files /dev/null and b/Library/Artifacts/02/02f8ab0d08cba7619b2e3662b5419855 differ diff --git a/Library/Artifacts/04/049cad35369526079d86b7242f2b910b b/Library/Artifacts/04/049cad35369526079d86b7242f2b910b new file mode 100644 index 00000000..83ba7b6f Binary files /dev/null and b/Library/Artifacts/04/049cad35369526079d86b7242f2b910b differ diff --git a/Library/Artifacts/05/054c2e08f15b3ad876ad5c7592ef5a07 b/Library/Artifacts/05/054c2e08f15b3ad876ad5c7592ef5a07 new file mode 100644 index 00000000..769241eb Binary files /dev/null and b/Library/Artifacts/05/054c2e08f15b3ad876ad5c7592ef5a07 differ diff --git a/Library/Artifacts/06/0634e5d85a51eab98cd2ac4d8c44b43f b/Library/Artifacts/06/0634e5d85a51eab98cd2ac4d8c44b43f new file mode 100644 index 00000000..bd27e1cc Binary files /dev/null and b/Library/Artifacts/06/0634e5d85a51eab98cd2ac4d8c44b43f differ diff --git a/Library/Artifacts/06/068009ec1f92a3ea2f2b5e8e977f64aa b/Library/Artifacts/06/068009ec1f92a3ea2f2b5e8e977f64aa new file mode 100644 index 00000000..d220db3f Binary files /dev/null and b/Library/Artifacts/06/068009ec1f92a3ea2f2b5e8e977f64aa differ diff --git a/Library/Artifacts/07/0731d7bcbce98f6742ce9ecad0c89c13 b/Library/Artifacts/07/0731d7bcbce98f6742ce9ecad0c89c13 new file mode 100644 index 00000000..5dae6614 Binary files /dev/null and b/Library/Artifacts/07/0731d7bcbce98f6742ce9ecad0c89c13 differ diff --git a/Library/Artifacts/07/075f8f733963868f0c0afdc134411410 b/Library/Artifacts/07/075f8f733963868f0c0afdc134411410 new file mode 100644 index 00000000..c106ded9 Binary files /dev/null and b/Library/Artifacts/07/075f8f733963868f0c0afdc134411410 differ diff --git a/Library/Artifacts/07/0769a135865d4146dfa1c008191c7bdc b/Library/Artifacts/07/0769a135865d4146dfa1c008191c7bdc new file mode 100644 index 00000000..800c1808 Binary files /dev/null and b/Library/Artifacts/07/0769a135865d4146dfa1c008191c7bdc differ diff --git a/Library/Artifacts/07/078dfecd13f95679186f8c6433f4a4b4 b/Library/Artifacts/07/078dfecd13f95679186f8c6433f4a4b4 new file mode 100644 index 00000000..7327902c Binary files /dev/null and b/Library/Artifacts/07/078dfecd13f95679186f8c6433f4a4b4 differ diff --git a/Library/Artifacts/08/080e6106c6207795a5d9e098c6147a12 b/Library/Artifacts/08/080e6106c6207795a5d9e098c6147a12 new file mode 100644 index 00000000..f3e8a7df Binary files /dev/null and b/Library/Artifacts/08/080e6106c6207795a5d9e098c6147a12 differ diff --git a/Library/Artifacts/08/0811c52324b4fba8b2d898e081fc969d b/Library/Artifacts/08/0811c52324b4fba8b2d898e081fc969d new file mode 100644 index 00000000..c917cfd3 Binary files /dev/null and b/Library/Artifacts/08/0811c52324b4fba8b2d898e081fc969d differ diff --git a/Library/Artifacts/08/088e63f0614046c82c2a10ba715174e4 b/Library/Artifacts/08/088e63f0614046c82c2a10ba715174e4 new file mode 100644 index 00000000..61bdc7b8 Binary files /dev/null and b/Library/Artifacts/08/088e63f0614046c82c2a10ba715174e4 differ diff --git a/Library/Artifacts/09/09a4a2f5c5ebb012726924058f5760d5 b/Library/Artifacts/09/09a4a2f5c5ebb012726924058f5760d5 new file mode 100644 index 00000000..0299f065 Binary files /dev/null and b/Library/Artifacts/09/09a4a2f5c5ebb012726924058f5760d5 differ diff --git a/Library/Artifacts/0a/0a24af289d9d63d1fe6de22f2c726298 b/Library/Artifacts/0a/0a24af289d9d63d1fe6de22f2c726298 new file mode 100644 index 00000000..1cc0fa46 Binary files /dev/null and b/Library/Artifacts/0a/0a24af289d9d63d1fe6de22f2c726298 differ diff --git a/Library/Artifacts/0a/0af78650f11b7051bae0eb263e07d8f3 b/Library/Artifacts/0a/0af78650f11b7051bae0eb263e07d8f3 new file mode 100644 index 00000000..e31c6005 Binary files /dev/null and b/Library/Artifacts/0a/0af78650f11b7051bae0eb263e07d8f3 differ diff --git a/Library/Artifacts/0b/0b55154049a137ebb840862a110270d9 b/Library/Artifacts/0b/0b55154049a137ebb840862a110270d9 new file mode 100644 index 00000000..3d4fdf52 Binary files /dev/null and b/Library/Artifacts/0b/0b55154049a137ebb840862a110270d9 differ diff --git a/Library/Artifacts/0b/0b99c97450c9655754a8df263ded998b b/Library/Artifacts/0b/0b99c97450c9655754a8df263ded998b new file mode 100644 index 00000000..17970cf5 Binary files /dev/null and b/Library/Artifacts/0b/0b99c97450c9655754a8df263ded998b differ diff --git a/Library/Artifacts/0b/0bd1b4a6c93ea9c3bb3b3769b9318d3b b/Library/Artifacts/0b/0bd1b4a6c93ea9c3bb3b3769b9318d3b new file mode 100644 index 00000000..a547aeb9 Binary files /dev/null and b/Library/Artifacts/0b/0bd1b4a6c93ea9c3bb3b3769b9318d3b differ diff --git a/Library/Artifacts/0c/0cb71c3e9ceb03be1f4ccaea2b0787d8 b/Library/Artifacts/0c/0cb71c3e9ceb03be1f4ccaea2b0787d8 new file mode 100644 index 00000000..86789d53 Binary files /dev/null and b/Library/Artifacts/0c/0cb71c3e9ceb03be1f4ccaea2b0787d8 differ diff --git a/Library/Artifacts/0d/0d39c372c428f8fef7cfcc8b95f287f3 b/Library/Artifacts/0d/0d39c372c428f8fef7cfcc8b95f287f3 new file mode 100644 index 00000000..2356b2b9 Binary files /dev/null and b/Library/Artifacts/0d/0d39c372c428f8fef7cfcc8b95f287f3 differ diff --git a/Library/Artifacts/0d/0de6414dc778a221d699584e6e0621ee b/Library/Artifacts/0d/0de6414dc778a221d699584e6e0621ee new file mode 100644 index 00000000..163b730c Binary files /dev/null and b/Library/Artifacts/0d/0de6414dc778a221d699584e6e0621ee differ diff --git a/Library/Artifacts/0e/0e2f08cf3930b8dad1f87f03a4a95e43 b/Library/Artifacts/0e/0e2f08cf3930b8dad1f87f03a4a95e43 new file mode 100644 index 00000000..c6f38cca Binary files /dev/null and b/Library/Artifacts/0e/0e2f08cf3930b8dad1f87f03a4a95e43 differ diff --git a/Library/Artifacts/0e/0e5079351739f659f68bbca8a1dcd27c b/Library/Artifacts/0e/0e5079351739f659f68bbca8a1dcd27c new file mode 100644 index 00000000..db180c0b Binary files /dev/null and b/Library/Artifacts/0e/0e5079351739f659f68bbca8a1dcd27c differ diff --git a/Library/Artifacts/0e/0e7e30c208f5b274a6692f00eb5d4561 b/Library/Artifacts/0e/0e7e30c208f5b274a6692f00eb5d4561 new file mode 100644 index 00000000..6ee9d845 Binary files /dev/null and b/Library/Artifacts/0e/0e7e30c208f5b274a6692f00eb5d4561 differ diff --git a/Library/Artifacts/0e/0efc39009197c627bb1449c03995a9f2 b/Library/Artifacts/0e/0efc39009197c627bb1449c03995a9f2 new file mode 100644 index 00000000..e0471a14 Binary files /dev/null and b/Library/Artifacts/0e/0efc39009197c627bb1449c03995a9f2 differ diff --git a/Library/Artifacts/0f/0f3e1afa5ee6fa9cd82cbb4f936fda84 b/Library/Artifacts/0f/0f3e1afa5ee6fa9cd82cbb4f936fda84 new file mode 100644 index 00000000..f81b3b2f Binary files /dev/null and b/Library/Artifacts/0f/0f3e1afa5ee6fa9cd82cbb4f936fda84 differ diff --git a/Library/Artifacts/0f/0f722c37e7ea0851b78cac957a2b6663 b/Library/Artifacts/0f/0f722c37e7ea0851b78cac957a2b6663 new file mode 100644 index 00000000..68ba8458 Binary files /dev/null and b/Library/Artifacts/0f/0f722c37e7ea0851b78cac957a2b6663 differ diff --git a/Library/Artifacts/0f/0fdf02babae38a815faeeeebb361cb54 b/Library/Artifacts/0f/0fdf02babae38a815faeeeebb361cb54 new file mode 100644 index 00000000..5d5a4ef0 Binary files /dev/null and b/Library/Artifacts/0f/0fdf02babae38a815faeeeebb361cb54 differ diff --git a/Library/Artifacts/11/111e243110d62f21ae475b85496f24be b/Library/Artifacts/11/111e243110d62f21ae475b85496f24be new file mode 100644 index 00000000..bf189439 Binary files /dev/null and b/Library/Artifacts/11/111e243110d62f21ae475b85496f24be differ diff --git a/Library/Artifacts/11/11386077f0d8998b1c5e735df342b4cb b/Library/Artifacts/11/11386077f0d8998b1c5e735df342b4cb new file mode 100644 index 00000000..d2d5fc3f Binary files /dev/null and b/Library/Artifacts/11/11386077f0d8998b1c5e735df342b4cb differ diff --git a/Library/Artifacts/11/1174540795426b815a293e976f3d124a b/Library/Artifacts/11/1174540795426b815a293e976f3d124a new file mode 100644 index 00000000..43148e5c Binary files /dev/null and b/Library/Artifacts/11/1174540795426b815a293e976f3d124a differ diff --git a/Library/Artifacts/12/1279d0e49e1286fdd51b75e7b9123b0d b/Library/Artifacts/12/1279d0e49e1286fdd51b75e7b9123b0d new file mode 100644 index 00000000..4c2656a3 Binary files /dev/null and b/Library/Artifacts/12/1279d0e49e1286fdd51b75e7b9123b0d differ diff --git a/Library/Artifacts/13/135ad8f0cf1c389da464a239d4668e82 b/Library/Artifacts/13/135ad8f0cf1c389da464a239d4668e82 new file mode 100644 index 00000000..e6e7c7d7 Binary files /dev/null and b/Library/Artifacts/13/135ad8f0cf1c389da464a239d4668e82 differ diff --git a/Library/Artifacts/13/1381d09df8bf209561283991296ff94e b/Library/Artifacts/13/1381d09df8bf209561283991296ff94e new file mode 100644 index 00000000..57762446 Binary files /dev/null and b/Library/Artifacts/13/1381d09df8bf209561283991296ff94e differ diff --git a/Library/Artifacts/13/13a75ed71cf46df6a9352d5daa809e85 b/Library/Artifacts/13/13a75ed71cf46df6a9352d5daa809e85 new file mode 100644 index 00000000..b95e404a Binary files /dev/null and b/Library/Artifacts/13/13a75ed71cf46df6a9352d5daa809e85 differ diff --git a/Library/Artifacts/13/13cf772256cd5eb0d6303a61653ebb38 b/Library/Artifacts/13/13cf772256cd5eb0d6303a61653ebb38 new file mode 100644 index 00000000..40d08ffb Binary files /dev/null and b/Library/Artifacts/13/13cf772256cd5eb0d6303a61653ebb38 differ diff --git a/Library/Artifacts/13/13e2a777581318c2fe9f3c78cb08ea1d b/Library/Artifacts/13/13e2a777581318c2fe9f3c78cb08ea1d new file mode 100644 index 00000000..91e82431 Binary files /dev/null and b/Library/Artifacts/13/13e2a777581318c2fe9f3c78cb08ea1d differ diff --git a/Library/Artifacts/14/1485e3dcf97ab8726a93a412d65c4401 b/Library/Artifacts/14/1485e3dcf97ab8726a93a412d65c4401 new file mode 100644 index 00000000..c6777154 Binary files /dev/null and b/Library/Artifacts/14/1485e3dcf97ab8726a93a412d65c4401 differ diff --git a/Library/Artifacts/14/14a63689226e53675a127dd6a3309e87 b/Library/Artifacts/14/14a63689226e53675a127dd6a3309e87 new file mode 100644 index 00000000..73453ecf Binary files /dev/null and b/Library/Artifacts/14/14a63689226e53675a127dd6a3309e87 differ diff --git a/Library/Artifacts/15/15b61619e5fd69fdfc2fadbebc13e78e b/Library/Artifacts/15/15b61619e5fd69fdfc2fadbebc13e78e new file mode 100644 index 00000000..b60f58c9 Binary files /dev/null and b/Library/Artifacts/15/15b61619e5fd69fdfc2fadbebc13e78e differ diff --git a/Library/Artifacts/16/16182aeae4177ddd6f7fa66f2142bec0 b/Library/Artifacts/16/16182aeae4177ddd6f7fa66f2142bec0 new file mode 100644 index 00000000..dd879705 Binary files /dev/null and b/Library/Artifacts/16/16182aeae4177ddd6f7fa66f2142bec0 differ diff --git a/Library/Artifacts/16/1635da71da32d55b9cac62c4e977323f b/Library/Artifacts/16/1635da71da32d55b9cac62c4e977323f new file mode 100644 index 00000000..f20761d3 Binary files /dev/null and b/Library/Artifacts/16/1635da71da32d55b9cac62c4e977323f differ diff --git a/Library/Artifacts/16/16c173eaf31edab0ce507f466904960b b/Library/Artifacts/16/16c173eaf31edab0ce507f466904960b new file mode 100644 index 00000000..ca085455 Binary files /dev/null and b/Library/Artifacts/16/16c173eaf31edab0ce507f466904960b differ diff --git a/Library/Artifacts/17/17a2bb32d359cb38156cd2c0ad4241d2 b/Library/Artifacts/17/17a2bb32d359cb38156cd2c0ad4241d2 new file mode 100644 index 00000000..d92352a6 Binary files /dev/null and b/Library/Artifacts/17/17a2bb32d359cb38156cd2c0ad4241d2 differ diff --git a/Library/Artifacts/18/18082e0558560c2a3b949b51ced77523 b/Library/Artifacts/18/18082e0558560c2a3b949b51ced77523 new file mode 100644 index 00000000..3773909c Binary files /dev/null and b/Library/Artifacts/18/18082e0558560c2a3b949b51ced77523 differ diff --git a/Library/Artifacts/18/18c4610879b8ba1a8e81778bebb25c87 b/Library/Artifacts/18/18c4610879b8ba1a8e81778bebb25c87 new file mode 100644 index 00000000..f4bd00d8 Binary files /dev/null and b/Library/Artifacts/18/18c4610879b8ba1a8e81778bebb25c87 differ diff --git a/Library/Artifacts/18/18d6ba354decf234b0690810c4f1f7bd b/Library/Artifacts/18/18d6ba354decf234b0690810c4f1f7bd new file mode 100644 index 00000000..bb0f744a Binary files /dev/null and b/Library/Artifacts/18/18d6ba354decf234b0690810c4f1f7bd differ diff --git a/Library/Artifacts/19/19796d1049bd876a01bd2af6e5654687 b/Library/Artifacts/19/19796d1049bd876a01bd2af6e5654687 new file mode 100644 index 00000000..fbde0ab0 Binary files /dev/null and b/Library/Artifacts/19/19796d1049bd876a01bd2af6e5654687 differ diff --git a/Library/Artifacts/19/19c907b5169a6440a5c1ef5849b26f55 b/Library/Artifacts/19/19c907b5169a6440a5c1ef5849b26f55 new file mode 100644 index 00000000..58048312 Binary files /dev/null and b/Library/Artifacts/19/19c907b5169a6440a5c1ef5849b26f55 differ diff --git a/Library/Artifacts/19/19ea6e1d33ba930d7855358d1995fd7d b/Library/Artifacts/19/19ea6e1d33ba930d7855358d1995fd7d new file mode 100644 index 00000000..d019b56c Binary files /dev/null and b/Library/Artifacts/19/19ea6e1d33ba930d7855358d1995fd7d differ diff --git a/Library/Artifacts/1a/1a21085fd2bbbbd7deb44b8a1a5a9cd4 b/Library/Artifacts/1a/1a21085fd2bbbbd7deb44b8a1a5a9cd4 new file mode 100644 index 00000000..843089ca Binary files /dev/null and b/Library/Artifacts/1a/1a21085fd2bbbbd7deb44b8a1a5a9cd4 differ diff --git a/Library/Artifacts/1a/1ac015d9b8c745d679a878152f25ef91 b/Library/Artifacts/1a/1ac015d9b8c745d679a878152f25ef91 new file mode 100644 index 00000000..2f93e157 Binary files /dev/null and b/Library/Artifacts/1a/1ac015d9b8c745d679a878152f25ef91 differ diff --git a/Library/Artifacts/1a/1ac9f1b2b5347cd059116d82105e30b7 b/Library/Artifacts/1a/1ac9f1b2b5347cd059116d82105e30b7 new file mode 100644 index 00000000..02e0b690 Binary files /dev/null and b/Library/Artifacts/1a/1ac9f1b2b5347cd059116d82105e30b7 differ diff --git a/Library/Artifacts/1a/1af3566ded365a3480bf05d5ed0241ef b/Library/Artifacts/1a/1af3566ded365a3480bf05d5ed0241ef new file mode 100644 index 00000000..bb5692d3 Binary files /dev/null and b/Library/Artifacts/1a/1af3566ded365a3480bf05d5ed0241ef differ diff --git a/Library/Artifacts/1c/1c06a5d526b10588257c83b68650866e b/Library/Artifacts/1c/1c06a5d526b10588257c83b68650866e new file mode 100644 index 00000000..54b7bab5 Binary files /dev/null and b/Library/Artifacts/1c/1c06a5d526b10588257c83b68650866e differ diff --git a/Library/Artifacts/1c/1c512933f3f8eff64459bce95634ef49 b/Library/Artifacts/1c/1c512933f3f8eff64459bce95634ef49 new file mode 100644 index 00000000..c878e159 Binary files /dev/null and b/Library/Artifacts/1c/1c512933f3f8eff64459bce95634ef49 differ diff --git a/Library/Artifacts/1c/1cb7fc5cf913381d3b31f7d37117239b b/Library/Artifacts/1c/1cb7fc5cf913381d3b31f7d37117239b new file mode 100644 index 00000000..76549939 Binary files /dev/null and b/Library/Artifacts/1c/1cb7fc5cf913381d3b31f7d37117239b differ diff --git a/Library/Artifacts/1c/1ce227f556669380df1014a8a6534530 b/Library/Artifacts/1c/1ce227f556669380df1014a8a6534530 new file mode 100644 index 00000000..c6bc17bd Binary files /dev/null and b/Library/Artifacts/1c/1ce227f556669380df1014a8a6534530 differ diff --git a/Library/Artifacts/1d/1d218a68ab8e81d96e27afad60819c4f b/Library/Artifacts/1d/1d218a68ab8e81d96e27afad60819c4f new file mode 100644 index 00000000..d293f9c3 Binary files /dev/null and b/Library/Artifacts/1d/1d218a68ab8e81d96e27afad60819c4f differ diff --git a/Library/Artifacts/1e/1e2f4a5eb4416ee8ed359e90fec61c79 b/Library/Artifacts/1e/1e2f4a5eb4416ee8ed359e90fec61c79 new file mode 100644 index 00000000..63d2e906 Binary files /dev/null and b/Library/Artifacts/1e/1e2f4a5eb4416ee8ed359e90fec61c79 differ diff --git a/Library/Artifacts/1e/1e7c4dd20c29dbad9a772da8432887da b/Library/Artifacts/1e/1e7c4dd20c29dbad9a772da8432887da new file mode 100644 index 00000000..70e031f1 Binary files /dev/null and b/Library/Artifacts/1e/1e7c4dd20c29dbad9a772da8432887da differ diff --git a/Library/Artifacts/1e/1ec22bca0ed842004ab9b27d5cd6381f b/Library/Artifacts/1e/1ec22bca0ed842004ab9b27d5cd6381f new file mode 100644 index 00000000..a4bd6a2f Binary files /dev/null and b/Library/Artifacts/1e/1ec22bca0ed842004ab9b27d5cd6381f differ diff --git a/Library/Artifacts/1e/1ed0b267424217641bcd597f139784ce b/Library/Artifacts/1e/1ed0b267424217641bcd597f139784ce new file mode 100644 index 00000000..5711799c Binary files /dev/null and b/Library/Artifacts/1e/1ed0b267424217641bcd597f139784ce differ diff --git a/Library/Artifacts/1e/1eedfac55d9cd564c42b5b5d752b97eb b/Library/Artifacts/1e/1eedfac55d9cd564c42b5b5d752b97eb new file mode 100644 index 00000000..20226a68 Binary files /dev/null and b/Library/Artifacts/1e/1eedfac55d9cd564c42b5b5d752b97eb differ diff --git a/Library/Artifacts/1e/1efe3ace558909a07467a74fc1c81b54 b/Library/Artifacts/1e/1efe3ace558909a07467a74fc1c81b54 new file mode 100644 index 00000000..6910dc31 Binary files /dev/null and b/Library/Artifacts/1e/1efe3ace558909a07467a74fc1c81b54 differ diff --git a/Library/Artifacts/1f/1f5a29cc90f2a6dd4702e2c209783e80 b/Library/Artifacts/1f/1f5a29cc90f2a6dd4702e2c209783e80 new file mode 100644 index 00000000..7fa5569e Binary files /dev/null and b/Library/Artifacts/1f/1f5a29cc90f2a6dd4702e2c209783e80 differ diff --git a/Library/Artifacts/1f/1f70766b2d45a403d38b3198cdc98b6d b/Library/Artifacts/1f/1f70766b2d45a403d38b3198cdc98b6d new file mode 100644 index 00000000..aa7da459 Binary files /dev/null and b/Library/Artifacts/1f/1f70766b2d45a403d38b3198cdc98b6d differ diff --git a/Library/Artifacts/1f/1fe89f4f84ad75db189abbc22e9517b0 b/Library/Artifacts/1f/1fe89f4f84ad75db189abbc22e9517b0 new file mode 100644 index 00000000..265898e4 Binary files /dev/null and b/Library/Artifacts/1f/1fe89f4f84ad75db189abbc22e9517b0 differ diff --git a/Library/Artifacts/20/201fa03a33a52457932529a8ed54ddcb b/Library/Artifacts/20/201fa03a33a52457932529a8ed54ddcb new file mode 100644 index 00000000..bef175a0 Binary files /dev/null and b/Library/Artifacts/20/201fa03a33a52457932529a8ed54ddcb differ diff --git a/Library/Artifacts/20/2058e43b72a1220114ac7ba56b9f2a44 b/Library/Artifacts/20/2058e43b72a1220114ac7ba56b9f2a44 new file mode 100644 index 00000000..3124fa36 Binary files /dev/null and b/Library/Artifacts/20/2058e43b72a1220114ac7ba56b9f2a44 differ diff --git a/Library/Artifacts/20/20d61ecd5c067fe661f8abd55017f874 b/Library/Artifacts/20/20d61ecd5c067fe661f8abd55017f874 new file mode 100644 index 00000000..aed24d47 Binary files /dev/null and b/Library/Artifacts/20/20d61ecd5c067fe661f8abd55017f874 differ diff --git a/Library/Artifacts/21/21aafdfe9d9f0c8b400cc8f09da3ab32 b/Library/Artifacts/21/21aafdfe9d9f0c8b400cc8f09da3ab32 new file mode 100644 index 00000000..7c696127 Binary files /dev/null and b/Library/Artifacts/21/21aafdfe9d9f0c8b400cc8f09da3ab32 differ diff --git a/Library/Artifacts/23/239dc9627ba85daadf3abbb468ba4a44 b/Library/Artifacts/23/239dc9627ba85daadf3abbb468ba4a44 new file mode 100644 index 00000000..0d8ac05d Binary files /dev/null and b/Library/Artifacts/23/239dc9627ba85daadf3abbb468ba4a44 differ diff --git a/Library/Artifacts/24/2409896b419956600f15f861a4213af0 b/Library/Artifacts/24/2409896b419956600f15f861a4213af0 new file mode 100644 index 00000000..559beceb Binary files /dev/null and b/Library/Artifacts/24/2409896b419956600f15f861a4213af0 differ diff --git a/Library/Artifacts/24/244feecd999e9f969428b43949071f90 b/Library/Artifacts/24/244feecd999e9f969428b43949071f90 new file mode 100644 index 00000000..d44782d4 Binary files /dev/null and b/Library/Artifacts/24/244feecd999e9f969428b43949071f90 differ diff --git a/Library/Artifacts/24/247cbf0f10edd3850465a3136b20e550 b/Library/Artifacts/24/247cbf0f10edd3850465a3136b20e550 new file mode 100644 index 00000000..733043d5 Binary files /dev/null and b/Library/Artifacts/24/247cbf0f10edd3850465a3136b20e550 differ diff --git a/Library/Artifacts/24/248fdb3ce3cbf823ad8eee827cb3037b b/Library/Artifacts/24/248fdb3ce3cbf823ad8eee827cb3037b new file mode 100644 index 00000000..16b1c929 Binary files /dev/null and b/Library/Artifacts/24/248fdb3ce3cbf823ad8eee827cb3037b differ diff --git a/Library/Artifacts/24/24c394f1d05319a3a604fa53c023bf70 b/Library/Artifacts/24/24c394f1d05319a3a604fa53c023bf70 new file mode 100644 index 00000000..74d42f40 Binary files /dev/null and b/Library/Artifacts/24/24c394f1d05319a3a604fa53c023bf70 differ diff --git a/Library/Artifacts/24/24fc49b376ff8a9d1ef03eddc8a9338e b/Library/Artifacts/24/24fc49b376ff8a9d1ef03eddc8a9338e new file mode 100644 index 00000000..0b3bd7d2 Binary files /dev/null and b/Library/Artifacts/24/24fc49b376ff8a9d1ef03eddc8a9338e differ diff --git a/Library/Artifacts/25/25012a04f9bfaf324a48bbefc3e2e4e7 b/Library/Artifacts/25/25012a04f9bfaf324a48bbefc3e2e4e7 new file mode 100644 index 00000000..c639603e Binary files /dev/null and b/Library/Artifacts/25/25012a04f9bfaf324a48bbefc3e2e4e7 differ diff --git a/Library/Artifacts/25/25731a4a5b47ddfa024e06deac203d7e b/Library/Artifacts/25/25731a4a5b47ddfa024e06deac203d7e new file mode 100644 index 00000000..102ebe96 Binary files /dev/null and b/Library/Artifacts/25/25731a4a5b47ddfa024e06deac203d7e differ diff --git a/Library/Artifacts/25/25f8d2e488c167801101f134693e4678 b/Library/Artifacts/25/25f8d2e488c167801101f134693e4678 new file mode 100644 index 00000000..2013fb43 Binary files /dev/null and b/Library/Artifacts/25/25f8d2e488c167801101f134693e4678 differ diff --git a/Library/Artifacts/27/2725ceedb94214c76dba7f7480faeda7 b/Library/Artifacts/27/2725ceedb94214c76dba7f7480faeda7 new file mode 100644 index 00000000..1dc1b252 Binary files /dev/null and b/Library/Artifacts/27/2725ceedb94214c76dba7f7480faeda7 differ diff --git a/Library/Artifacts/27/2774998cae9474cbdbf44e4b30fd119f b/Library/Artifacts/27/2774998cae9474cbdbf44e4b30fd119f new file mode 100644 index 00000000..b68f0a03 Binary files /dev/null and b/Library/Artifacts/27/2774998cae9474cbdbf44e4b30fd119f differ diff --git a/Library/Artifacts/28/282ff7b781456ae35585bfffefefafbc b/Library/Artifacts/28/282ff7b781456ae35585bfffefefafbc new file mode 100644 index 00000000..514151aa Binary files /dev/null and b/Library/Artifacts/28/282ff7b781456ae35585bfffefefafbc differ diff --git a/Library/Artifacts/28/2846268c153fe2848e19351db96e8528 b/Library/Artifacts/28/2846268c153fe2848e19351db96e8528 new file mode 100644 index 00000000..dc8a40a1 Binary files /dev/null and b/Library/Artifacts/28/2846268c153fe2848e19351db96e8528 differ diff --git a/Library/Artifacts/28/284910bb0762bc17f445939605f00d7b b/Library/Artifacts/28/284910bb0762bc17f445939605f00d7b new file mode 100644 index 00000000..08003105 Binary files /dev/null and b/Library/Artifacts/28/284910bb0762bc17f445939605f00d7b differ diff --git a/Library/Artifacts/28/285dc0534e832ba1fb2a57565ff61f0f b/Library/Artifacts/28/285dc0534e832ba1fb2a57565ff61f0f new file mode 100644 index 00000000..8db4c1ea Binary files /dev/null and b/Library/Artifacts/28/285dc0534e832ba1fb2a57565ff61f0f differ diff --git a/Library/Artifacts/28/28b0622a85bd6377fcafa3413476f074 b/Library/Artifacts/28/28b0622a85bd6377fcafa3413476f074 new file mode 100644 index 00000000..633ba775 Binary files /dev/null and b/Library/Artifacts/28/28b0622a85bd6377fcafa3413476f074 differ diff --git a/Library/Artifacts/28/28d50350e948169b2b5ca3f5c3e6d03d b/Library/Artifacts/28/28d50350e948169b2b5ca3f5c3e6d03d new file mode 100644 index 00000000..7d3f28e7 Binary files /dev/null and b/Library/Artifacts/28/28d50350e948169b2b5ca3f5c3e6d03d differ diff --git a/Library/Artifacts/29/29880d5211e96f1832a4a7ecaaeefd62 b/Library/Artifacts/29/29880d5211e96f1832a4a7ecaaeefd62 new file mode 100644 index 00000000..1695844f Binary files /dev/null and b/Library/Artifacts/29/29880d5211e96f1832a4a7ecaaeefd62 differ diff --git a/Library/Artifacts/29/29dc57dff1e90cccd11ec3979bac05d2 b/Library/Artifacts/29/29dc57dff1e90cccd11ec3979bac05d2 new file mode 100644 index 00000000..91b2c90f Binary files /dev/null and b/Library/Artifacts/29/29dc57dff1e90cccd11ec3979bac05d2 differ diff --git a/Library/Artifacts/2a/2a19a07c8cc353c3ae60e9f7eef119d0 b/Library/Artifacts/2a/2a19a07c8cc353c3ae60e9f7eef119d0 new file mode 100644 index 00000000..9720e04f Binary files /dev/null and b/Library/Artifacts/2a/2a19a07c8cc353c3ae60e9f7eef119d0 differ diff --git a/Library/Artifacts/2a/2a6d9c83f25523798c81cfdfb4cbb3a2 b/Library/Artifacts/2a/2a6d9c83f25523798c81cfdfb4cbb3a2 new file mode 100644 index 00000000..0de40e69 Binary files /dev/null and b/Library/Artifacts/2a/2a6d9c83f25523798c81cfdfb4cbb3a2 differ diff --git a/Library/Artifacts/2a/2a6dfcc38b5c5f5736385712d020d214 b/Library/Artifacts/2a/2a6dfcc38b5c5f5736385712d020d214 new file mode 100644 index 00000000..c2157ec0 Binary files /dev/null and b/Library/Artifacts/2a/2a6dfcc38b5c5f5736385712d020d214 differ diff --git a/Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef b/Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f similarity index 98% rename from Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef rename to Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f index 89ce9519..72dbbd82 100644 Binary files a/Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef and b/Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f differ diff --git a/Library/Artifacts/2a/2adc8566f64f3f5d5d0fe9228b3c70cb b/Library/Artifacts/2a/2adc8566f64f3f5d5d0fe9228b3c70cb new file mode 100644 index 00000000..76385dcc Binary files /dev/null and b/Library/Artifacts/2a/2adc8566f64f3f5d5d0fe9228b3c70cb differ diff --git a/Library/Artifacts/2b/2bffa8a51fc111a0e6ab4426ec09c968 b/Library/Artifacts/2b/2bffa8a51fc111a0e6ab4426ec09c968 new file mode 100644 index 00000000..ffa6aa16 Binary files /dev/null and b/Library/Artifacts/2b/2bffa8a51fc111a0e6ab4426ec09c968 differ diff --git a/Library/Artifacts/2c/2cc330ac1dde69cc76458f0696355951 b/Library/Artifacts/2c/2cc330ac1dde69cc76458f0696355951 new file mode 100644 index 00000000..a0ccfaaa Binary files /dev/null and b/Library/Artifacts/2c/2cc330ac1dde69cc76458f0696355951 differ diff --git a/Library/Artifacts/2d/2d3c97d9050e34bd6ed6693122e73195 b/Library/Artifacts/2d/2d3c97d9050e34bd6ed6693122e73195 new file mode 100644 index 00000000..0c80fa20 Binary files /dev/null and b/Library/Artifacts/2d/2d3c97d9050e34bd6ed6693122e73195 differ diff --git a/Library/Artifacts/2d/2d3ff9aba5c33a1d84ff1cb3ae7dc001 b/Library/Artifacts/2d/2d3ff9aba5c33a1d84ff1cb3ae7dc001 new file mode 100644 index 00000000..a91d1033 Binary files /dev/null and b/Library/Artifacts/2d/2d3ff9aba5c33a1d84ff1cb3ae7dc001 differ diff --git a/Library/Artifacts/2d/2d5f238a96b9710af33bfecc807b4cb4 b/Library/Artifacts/2d/2d5f238a96b9710af33bfecc807b4cb4 new file mode 100644 index 00000000..9c4f266a Binary files /dev/null and b/Library/Artifacts/2d/2d5f238a96b9710af33bfecc807b4cb4 differ diff --git a/Library/Artifacts/2d/2d7eb8a7f2d02f6bd3ebc7f6dd616847 b/Library/Artifacts/2d/2d7eb8a7f2d02f6bd3ebc7f6dd616847 new file mode 100644 index 00000000..2ff43812 Binary files /dev/null and b/Library/Artifacts/2d/2d7eb8a7f2d02f6bd3ebc7f6dd616847 differ diff --git a/Library/Artifacts/2d/2dbfacd0b5e36c37b7c0b1d0cc68d65d b/Library/Artifacts/2d/2dbfacd0b5e36c37b7c0b1d0cc68d65d new file mode 100644 index 00000000..9829ec42 Binary files /dev/null and b/Library/Artifacts/2d/2dbfacd0b5e36c37b7c0b1d0cc68d65d differ diff --git a/Library/Artifacts/2d/2dcbbfc7b5f0217fa91efc185aa77eed b/Library/Artifacts/2d/2dcbbfc7b5f0217fa91efc185aa77eed new file mode 100644 index 00000000..ae8dc252 Binary files /dev/null and b/Library/Artifacts/2d/2dcbbfc7b5f0217fa91efc185aa77eed differ diff --git a/Library/Artifacts/2e/2e5d163fee25823c4be78b1050651801 b/Library/Artifacts/2e/2e5d163fee25823c4be78b1050651801 new file mode 100644 index 00000000..a81149a5 Binary files /dev/null and b/Library/Artifacts/2e/2e5d163fee25823c4be78b1050651801 differ diff --git a/Library/Artifacts/2e/2e94dac7e73ac6d44f651ec149a23fad b/Library/Artifacts/2e/2e94dac7e73ac6d44f651ec149a23fad new file mode 100644 index 00000000..2ca2a3e2 Binary files /dev/null and b/Library/Artifacts/2e/2e94dac7e73ac6d44f651ec149a23fad differ diff --git a/Library/Artifacts/2e/2ecf89cf40ed07d20869c0c6543034e5 b/Library/Artifacts/2e/2ecf89cf40ed07d20869c0c6543034e5 new file mode 100644 index 00000000..c3b884c1 Binary files /dev/null and b/Library/Artifacts/2e/2ecf89cf40ed07d20869c0c6543034e5 differ diff --git a/Library/Artifacts/2f/2feddf5c769543cd3b8c790c7a289248 b/Library/Artifacts/2f/2feddf5c769543cd3b8c790c7a289248 new file mode 100644 index 00000000..5d0ac955 Binary files /dev/null and b/Library/Artifacts/2f/2feddf5c769543cd3b8c790c7a289248 differ diff --git a/Library/Artifacts/31/31140cb6b66015ecc566571fe1e98763 b/Library/Artifacts/31/31140cb6b66015ecc566571fe1e98763 new file mode 100644 index 00000000..e7385b39 Binary files /dev/null and b/Library/Artifacts/31/31140cb6b66015ecc566571fe1e98763 differ diff --git a/Library/Artifacts/32/32386d187702f15d3528a83c7f5a3a54 b/Library/Artifacts/32/32386d187702f15d3528a83c7f5a3a54 new file mode 100644 index 00000000..8e446d38 Binary files /dev/null and b/Library/Artifacts/32/32386d187702f15d3528a83c7f5a3a54 differ diff --git a/Library/Artifacts/32/3260a65f29e87060c298a8ad0a424217 b/Library/Artifacts/32/3260a65f29e87060c298a8ad0a424217 new file mode 100644 index 00000000..a0d07126 Binary files /dev/null and b/Library/Artifacts/32/3260a65f29e87060c298a8ad0a424217 differ diff --git a/Library/Artifacts/33/33571cc05c2cbde6733c61931108af37 b/Library/Artifacts/33/33571cc05c2cbde6733c61931108af37 new file mode 100644 index 00000000..d6b84978 Binary files /dev/null and b/Library/Artifacts/33/33571cc05c2cbde6733c61931108af37 differ diff --git a/Library/Artifacts/33/338ce7fbdcfe933b574b4185e5fee549 b/Library/Artifacts/33/338ce7fbdcfe933b574b4185e5fee549 new file mode 100644 index 00000000..270314aa Binary files /dev/null and b/Library/Artifacts/33/338ce7fbdcfe933b574b4185e5fee549 differ diff --git a/Library/Artifacts/33/33dd17dc46e32222dad785b6707cdc19 b/Library/Artifacts/33/33dd17dc46e32222dad785b6707cdc19 new file mode 100644 index 00000000..13dd92ad Binary files /dev/null and b/Library/Artifacts/33/33dd17dc46e32222dad785b6707cdc19 differ diff --git a/Library/Artifacts/33/33fe1a0f32a2ca636ded3af34c405f21 b/Library/Artifacts/33/33fe1a0f32a2ca636ded3af34c405f21 new file mode 100644 index 00000000..cfe48233 Binary files /dev/null and b/Library/Artifacts/33/33fe1a0f32a2ca636ded3af34c405f21 differ diff --git a/Library/Artifacts/34/343b4f88e16f420e5c1daffa5602134d b/Library/Artifacts/34/343b4f88e16f420e5c1daffa5602134d new file mode 100644 index 00000000..7889cd01 Binary files /dev/null and b/Library/Artifacts/34/343b4f88e16f420e5c1daffa5602134d differ diff --git a/Library/Artifacts/35/3527007d5bf58aa37d9c8095f052caf4 b/Library/Artifacts/35/3527007d5bf58aa37d9c8095f052caf4 new file mode 100644 index 00000000..c602b755 Binary files /dev/null and b/Library/Artifacts/35/3527007d5bf58aa37d9c8095f052caf4 differ diff --git a/Library/Artifacts/35/357714aa5f17b72ea47bd4f96a1065e5 b/Library/Artifacts/35/357714aa5f17b72ea47bd4f96a1065e5 new file mode 100644 index 00000000..63068b1e Binary files /dev/null and b/Library/Artifacts/35/357714aa5f17b72ea47bd4f96a1065e5 differ diff --git a/Library/Artifacts/35/359f538eb7f4a4560552bbbd1b352d17 b/Library/Artifacts/35/359f538eb7f4a4560552bbbd1b352d17 new file mode 100644 index 00000000..06bde959 Binary files /dev/null and b/Library/Artifacts/35/359f538eb7f4a4560552bbbd1b352d17 differ diff --git a/Library/Artifacts/36/364174f875234d1c8faf331cfada66d1 b/Library/Artifacts/36/364174f875234d1c8faf331cfada66d1 new file mode 100644 index 00000000..d4fcd8e9 Binary files /dev/null and b/Library/Artifacts/36/364174f875234d1c8faf331cfada66d1 differ diff --git a/Library/Artifacts/36/365b23dd2832bccf5215d79f2304c1c4 b/Library/Artifacts/36/365b23dd2832bccf5215d79f2304c1c4 new file mode 100644 index 00000000..a7e70d11 Binary files /dev/null and b/Library/Artifacts/36/365b23dd2832bccf5215d79f2304c1c4 differ diff --git a/Library/Artifacts/37/376292464bbc82b0ec2e987fcc68fedc b/Library/Artifacts/37/376292464bbc82b0ec2e987fcc68fedc new file mode 100644 index 00000000..4e21835f Binary files /dev/null and b/Library/Artifacts/37/376292464bbc82b0ec2e987fcc68fedc differ diff --git a/Library/Artifacts/37/37d211eebea4bec52fe1ccbe4baba348 b/Library/Artifacts/37/37d211eebea4bec52fe1ccbe4baba348 new file mode 100644 index 00000000..9e49bed9 Binary files /dev/null and b/Library/Artifacts/37/37d211eebea4bec52fe1ccbe4baba348 differ diff --git a/Library/Artifacts/37/37d79d472849cbb49fd2829f2fe1ee8b b/Library/Artifacts/37/37d79d472849cbb49fd2829f2fe1ee8b new file mode 100644 index 00000000..ae91f152 Binary files /dev/null and b/Library/Artifacts/37/37d79d472849cbb49fd2829f2fe1ee8b differ diff --git a/Library/Artifacts/38/3803d96923c689c0831f59ded316d8bd b/Library/Artifacts/38/3803d96923c689c0831f59ded316d8bd new file mode 100644 index 00000000..fd218224 Binary files /dev/null and b/Library/Artifacts/38/3803d96923c689c0831f59ded316d8bd differ diff --git a/Library/Artifacts/39/391fde5838765ac607709e7435f50b0e b/Library/Artifacts/39/391fde5838765ac607709e7435f50b0e new file mode 100644 index 00000000..0fcef95f Binary files /dev/null and b/Library/Artifacts/39/391fde5838765ac607709e7435f50b0e differ diff --git a/Library/Artifacts/39/39356458d1c25db44f95c2bf56db28ce b/Library/Artifacts/39/39356458d1c25db44f95c2bf56db28ce new file mode 100644 index 00000000..ba648f73 Binary files /dev/null and b/Library/Artifacts/39/39356458d1c25db44f95c2bf56db28ce differ diff --git a/Library/Artifacts/3a/3aaf0b9064097d8f39e3bca1fa42611d b/Library/Artifacts/3a/3aaf0b9064097d8f39e3bca1fa42611d new file mode 100644 index 00000000..5204f998 Binary files /dev/null and b/Library/Artifacts/3a/3aaf0b9064097d8f39e3bca1fa42611d differ diff --git a/Library/Artifacts/3a/3ac26e344c18cc3d0c6b97363a323faa b/Library/Artifacts/3a/3ac26e344c18cc3d0c6b97363a323faa new file mode 100644 index 00000000..9b9a97d7 Binary files /dev/null and b/Library/Artifacts/3a/3ac26e344c18cc3d0c6b97363a323faa differ diff --git a/Library/Artifacts/3a/3ad90a4286b3cd91fec49c5484bffaa2 b/Library/Artifacts/3a/3ad90a4286b3cd91fec49c5484bffaa2 new file mode 100644 index 00000000..a1d274e0 Binary files /dev/null and b/Library/Artifacts/3a/3ad90a4286b3cd91fec49c5484bffaa2 differ diff --git a/Library/Artifacts/3b/3b4ad4a0212ed4c5d9ecdcecea6b78b3 b/Library/Artifacts/3b/3b4ad4a0212ed4c5d9ecdcecea6b78b3 new file mode 100644 index 00000000..da575c33 Binary files /dev/null and b/Library/Artifacts/3b/3b4ad4a0212ed4c5d9ecdcecea6b78b3 differ diff --git a/Library/Artifacts/3b/3b94691a66b47397f648bf89f4702e59 b/Library/Artifacts/3b/3b94691a66b47397f648bf89f4702e59 new file mode 100644 index 00000000..9e3539ae Binary files /dev/null and b/Library/Artifacts/3b/3b94691a66b47397f648bf89f4702e59 differ diff --git a/Library/Artifacts/3c/3c14cebf91e4286e9bc9229ddacc5531 b/Library/Artifacts/3c/3c14cebf91e4286e9bc9229ddacc5531 new file mode 100644 index 00000000..5d90f664 Binary files /dev/null and b/Library/Artifacts/3c/3c14cebf91e4286e9bc9229ddacc5531 differ diff --git a/Library/Artifacts/3d/3d8da0618a1584c8a09fde59b36c165f b/Library/Artifacts/3d/3d8da0618a1584c8a09fde59b36c165f new file mode 100644 index 00000000..5ef88099 Binary files /dev/null and b/Library/Artifacts/3d/3d8da0618a1584c8a09fde59b36c165f differ diff --git a/Library/Artifacts/3d/3da13cc54c390983d67ca040a0316217 b/Library/Artifacts/3d/3da13cc54c390983d67ca040a0316217 new file mode 100644 index 00000000..e0b7b21d Binary files /dev/null and b/Library/Artifacts/3d/3da13cc54c390983d67ca040a0316217 differ diff --git a/Library/Artifacts/3e/3e355cc26840a4edaa763fb74ae7441b b/Library/Artifacts/3e/3e355cc26840a4edaa763fb74ae7441b new file mode 100644 index 00000000..13470e08 Binary files /dev/null and b/Library/Artifacts/3e/3e355cc26840a4edaa763fb74ae7441b differ diff --git a/Library/Artifacts/3e/3ebd4b5d5abcf42bab9418b7d2815046 b/Library/Artifacts/3e/3ebd4b5d5abcf42bab9418b7d2815046 new file mode 100644 index 00000000..70bb16d6 Binary files /dev/null and b/Library/Artifacts/3e/3ebd4b5d5abcf42bab9418b7d2815046 differ diff --git a/Library/Artifacts/3e/3edf2c812e9a4028ec1d8c0f5b5902fb b/Library/Artifacts/3e/3edf2c812e9a4028ec1d8c0f5b5902fb new file mode 100644 index 00000000..4eaf956c Binary files /dev/null and b/Library/Artifacts/3e/3edf2c812e9a4028ec1d8c0f5b5902fb differ diff --git a/Library/Artifacts/3e/3ee69b6abbc4115375dab2fc29bd6571 b/Library/Artifacts/3e/3ee69b6abbc4115375dab2fc29bd6571 new file mode 100644 index 00000000..3c542425 Binary files /dev/null and b/Library/Artifacts/3e/3ee69b6abbc4115375dab2fc29bd6571 differ diff --git a/Library/Artifacts/3f/3f2d453c823d774730aa704c871d8d26 b/Library/Artifacts/3f/3f2d453c823d774730aa704c871d8d26 new file mode 100644 index 00000000..a43ec239 Binary files /dev/null and b/Library/Artifacts/3f/3f2d453c823d774730aa704c871d8d26 differ diff --git a/Library/Artifacts/3f/3f960bba145b01e5ac4dc2df2eacb40b b/Library/Artifacts/3f/3f960bba145b01e5ac4dc2df2eacb40b new file mode 100644 index 00000000..f5e8c194 Binary files /dev/null and b/Library/Artifacts/3f/3f960bba145b01e5ac4dc2df2eacb40b differ diff --git a/Library/Artifacts/3f/3fc5c088bfed7400af953d8499fc86f6 b/Library/Artifacts/3f/3fc5c088bfed7400af953d8499fc86f6 new file mode 100644 index 00000000..b54b5b8c Binary files /dev/null and b/Library/Artifacts/3f/3fc5c088bfed7400af953d8499fc86f6 differ diff --git a/Library/Artifacts/40/407fe1322c2f7116542f8b04220f4869 b/Library/Artifacts/40/407fe1322c2f7116542f8b04220f4869 new file mode 100644 index 00000000..6fd9d3da Binary files /dev/null and b/Library/Artifacts/40/407fe1322c2f7116542f8b04220f4869 differ diff --git a/Library/Artifacts/40/409f29d769b594972ac0acb919ecc0c1 b/Library/Artifacts/40/409f29d769b594972ac0acb919ecc0c1 new file mode 100644 index 00000000..50c57cd0 Binary files /dev/null and b/Library/Artifacts/40/409f29d769b594972ac0acb919ecc0c1 differ diff --git a/Library/Artifacts/40/40b4c67e7732d17c0cff7cfb924d5c29 b/Library/Artifacts/40/40b4c67e7732d17c0cff7cfb924d5c29 new file mode 100644 index 00000000..e35ebd25 Binary files /dev/null and b/Library/Artifacts/40/40b4c67e7732d17c0cff7cfb924d5c29 differ diff --git a/Library/Artifacts/40/40e5ef65c42de6d98de111d13a8b0380 b/Library/Artifacts/40/40e5ef65c42de6d98de111d13a8b0380 new file mode 100644 index 00000000..f7ffa510 Binary files /dev/null and b/Library/Artifacts/40/40e5ef65c42de6d98de111d13a8b0380 differ diff --git a/Library/Artifacts/41/413e2ddedf262f0e75b47c997c2205c6 b/Library/Artifacts/41/413e2ddedf262f0e75b47c997c2205c6 new file mode 100644 index 00000000..39e0b411 Binary files /dev/null and b/Library/Artifacts/41/413e2ddedf262f0e75b47c997c2205c6 differ diff --git a/Library/Artifacts/41/414dd705d3c0cf1efe1fa740bc0aabac b/Library/Artifacts/41/414dd705d3c0cf1efe1fa740bc0aabac new file mode 100644 index 00000000..b7cbf323 Binary files /dev/null and b/Library/Artifacts/41/414dd705d3c0cf1efe1fa740bc0aabac differ diff --git a/Library/Artifacts/42/425aaeb92dd08dcb8d1e1a227b8a907d b/Library/Artifacts/42/425aaeb92dd08dcb8d1e1a227b8a907d new file mode 100644 index 00000000..72b9baa1 Binary files /dev/null and b/Library/Artifacts/42/425aaeb92dd08dcb8d1e1a227b8a907d differ diff --git a/Library/Artifacts/42/42ae5cc2391b10d72c31bc0973ea294c b/Library/Artifacts/42/42ae5cc2391b10d72c31bc0973ea294c new file mode 100644 index 00000000..e6c0a617 Binary files /dev/null and b/Library/Artifacts/42/42ae5cc2391b10d72c31bc0973ea294c differ diff --git a/Library/Artifacts/42/42b72e0ff7475ab24f21d5bd2a655c3d b/Library/Artifacts/42/42b72e0ff7475ab24f21d5bd2a655c3d new file mode 100644 index 00000000..5ac710fa Binary files /dev/null and b/Library/Artifacts/42/42b72e0ff7475ab24f21d5bd2a655c3d differ diff --git a/Library/Artifacts/43/433aa217bf332e5dd7f1642c997439b6 b/Library/Artifacts/43/433aa217bf332e5dd7f1642c997439b6 new file mode 100644 index 00000000..1ae19e42 Binary files /dev/null and b/Library/Artifacts/43/433aa217bf332e5dd7f1642c997439b6 differ diff --git a/Library/Artifacts/43/43a8c4ffd79f7d73aba5263ca182aabd b/Library/Artifacts/43/43a8c4ffd79f7d73aba5263ca182aabd new file mode 100644 index 00000000..3d315637 Binary files /dev/null and b/Library/Artifacts/43/43a8c4ffd79f7d73aba5263ca182aabd differ diff --git a/Library/Artifacts/44/444011a3234b577402e5cec9551e88f9 b/Library/Artifacts/44/444011a3234b577402e5cec9551e88f9 new file mode 100644 index 00000000..15e5dbae Binary files /dev/null and b/Library/Artifacts/44/444011a3234b577402e5cec9551e88f9 differ diff --git a/Library/Artifacts/44/445a46d9202f804cb68bca2ae94ad7b6 b/Library/Artifacts/44/445a46d9202f804cb68bca2ae94ad7b6 new file mode 100644 index 00000000..e8add9fe Binary files /dev/null and b/Library/Artifacts/44/445a46d9202f804cb68bca2ae94ad7b6 differ diff --git a/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 b/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 new file mode 100644 index 00000000..9b9f0f3a Binary files /dev/null and b/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 differ diff --git a/Library/Artifacts/45/4572e622e9a56a8461f01020827b8fe9 b/Library/Artifacts/45/4572e622e9a56a8461f01020827b8fe9 new file mode 100644 index 00000000..d550c4c6 Binary files /dev/null and b/Library/Artifacts/45/4572e622e9a56a8461f01020827b8fe9 differ diff --git a/Library/Artifacts/47/472a5799fe268996ae4e7ce211c2619f b/Library/Artifacts/47/472a5799fe268996ae4e7ce211c2619f new file mode 100644 index 00000000..b48f59f1 Binary files /dev/null and b/Library/Artifacts/47/472a5799fe268996ae4e7ce211c2619f differ diff --git a/Library/Artifacts/47/47b00b8369f2db993fd8512d984d4eb0 b/Library/Artifacts/47/47b00b8369f2db993fd8512d984d4eb0 new file mode 100644 index 00000000..494af82e Binary files /dev/null and b/Library/Artifacts/47/47b00b8369f2db993fd8512d984d4eb0 differ diff --git a/Library/Artifacts/47/47be4ab12b44232aca15354b6a6a713b b/Library/Artifacts/47/47be4ab12b44232aca15354b6a6a713b new file mode 100644 index 00000000..d9f46466 Binary files /dev/null and b/Library/Artifacts/47/47be4ab12b44232aca15354b6a6a713b differ diff --git a/Library/Artifacts/48/483aff24c16225be67d546e89bb79b54 b/Library/Artifacts/48/483aff24c16225be67d546e89bb79b54 new file mode 100644 index 00000000..62ce1922 Binary files /dev/null and b/Library/Artifacts/48/483aff24c16225be67d546e89bb79b54 differ diff --git a/Library/Artifacts/48/4862b38d5121dcc66de0179478c8eed1 b/Library/Artifacts/48/4862b38d5121dcc66de0179478c8eed1 new file mode 100644 index 00000000..49e4d1da Binary files /dev/null and b/Library/Artifacts/48/4862b38d5121dcc66de0179478c8eed1 differ diff --git a/Library/Artifacts/49/4929c98acaf0d4e8ab756c860cd7958c b/Library/Artifacts/49/4929c98acaf0d4e8ab756c860cd7958c new file mode 100644 index 00000000..b4cf3dc5 Binary files /dev/null and b/Library/Artifacts/49/4929c98acaf0d4e8ab756c860cd7958c differ diff --git a/Library/Artifacts/49/493e9fab4e4a8743b0e5f3e565dcfbee b/Library/Artifacts/49/493e9fab4e4a8743b0e5f3e565dcfbee new file mode 100644 index 00000000..5a8fefc6 Binary files /dev/null and b/Library/Artifacts/49/493e9fab4e4a8743b0e5f3e565dcfbee differ diff --git a/Library/Artifacts/49/498e2720e3a4411e2e984ee5a8c61dc9 b/Library/Artifacts/49/498e2720e3a4411e2e984ee5a8c61dc9 new file mode 100644 index 00000000..ba4d6a51 Binary files /dev/null and b/Library/Artifacts/49/498e2720e3a4411e2e984ee5a8c61dc9 differ diff --git a/Library/Artifacts/4a/4a42fd23d6295c8678c1ce623bd5d903 b/Library/Artifacts/4a/4a42fd23d6295c8678c1ce623bd5d903 new file mode 100644 index 00000000..b9e70dd1 Binary files /dev/null and b/Library/Artifacts/4a/4a42fd23d6295c8678c1ce623bd5d903 differ diff --git a/Library/Artifacts/4a/4a43c14e86785d47928e619084f0488a b/Library/Artifacts/4a/4a43c14e86785d47928e619084f0488a new file mode 100644 index 00000000..3c384705 Binary files /dev/null and b/Library/Artifacts/4a/4a43c14e86785d47928e619084f0488a differ diff --git a/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 b/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 new file mode 100644 index 00000000..892f16ef Binary files /dev/null and b/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 differ diff --git a/Library/Artifacts/4b/4b7d2604e585bdfbf360c8abf4b2dd6d b/Library/Artifacts/4b/4b7d2604e585bdfbf360c8abf4b2dd6d new file mode 100644 index 00000000..098a82c9 Binary files /dev/null and b/Library/Artifacts/4b/4b7d2604e585bdfbf360c8abf4b2dd6d differ diff --git a/Library/Artifacts/4b/4bbec1174e153c902efd0c7349e82385 b/Library/Artifacts/4b/4bbec1174e153c902efd0c7349e82385 new file mode 100644 index 00000000..9e2600bb Binary files /dev/null and b/Library/Artifacts/4b/4bbec1174e153c902efd0c7349e82385 differ diff --git a/Library/Artifacts/4b/4bed4991e85fdd93920e742cb612b640 b/Library/Artifacts/4b/4bed4991e85fdd93920e742cb612b640 new file mode 100644 index 00000000..601025c0 Binary files /dev/null and b/Library/Artifacts/4b/4bed4991e85fdd93920e742cb612b640 differ diff --git a/Library/Artifacts/4d/4d31a810ac665f7196736ed403bd98ba b/Library/Artifacts/4d/4d31a810ac665f7196736ed403bd98ba new file mode 100644 index 00000000..3036b0b5 Binary files /dev/null and b/Library/Artifacts/4d/4d31a810ac665f7196736ed403bd98ba differ diff --git a/Library/Artifacts/4d/4dbee271f611de9a39674728e66793c3 b/Library/Artifacts/4d/4dbee271f611de9a39674728e66793c3 new file mode 100644 index 00000000..7e025ca1 Binary files /dev/null and b/Library/Artifacts/4d/4dbee271f611de9a39674728e66793c3 differ diff --git a/Library/Artifacts/4e/4e317309f530e7c131c1b4e52bb334b9 b/Library/Artifacts/4e/4e317309f530e7c131c1b4e52bb334b9 new file mode 100644 index 00000000..e5f9d220 Binary files /dev/null and b/Library/Artifacts/4e/4e317309f530e7c131c1b4e52bb334b9 differ diff --git a/Library/Artifacts/4e/4e40432bb39b13cd78b91f42e7cbb9ca b/Library/Artifacts/4e/4e40432bb39b13cd78b91f42e7cbb9ca new file mode 100644 index 00000000..2e352809 Binary files /dev/null and b/Library/Artifacts/4e/4e40432bb39b13cd78b91f42e7cbb9ca differ diff --git a/Library/Artifacts/4e/4e51dde5b473761581316898b72e11a5 b/Library/Artifacts/4e/4e51dde5b473761581316898b72e11a5 new file mode 100644 index 00000000..300bba0a Binary files /dev/null and b/Library/Artifacts/4e/4e51dde5b473761581316898b72e11a5 differ diff --git a/Library/Artifacts/4f/4ffdf39187d8fd2056852e4d4e6a1696 b/Library/Artifacts/4f/4ffdf39187d8fd2056852e4d4e6a1696 new file mode 100644 index 00000000..7332c61d Binary files /dev/null and b/Library/Artifacts/4f/4ffdf39187d8fd2056852e4d4e6a1696 differ diff --git a/Library/Artifacts/50/506b59bb9240b3ebc323be959ed227ef b/Library/Artifacts/50/506b59bb9240b3ebc323be959ed227ef new file mode 100644 index 00000000..1ca69aaf Binary files /dev/null and b/Library/Artifacts/50/506b59bb9240b3ebc323be959ed227ef differ diff --git a/Library/Artifacts/50/50dde1e4904aec1a1f2015d934f8db5b b/Library/Artifacts/50/50dde1e4904aec1a1f2015d934f8db5b new file mode 100644 index 00000000..10308329 Binary files /dev/null and b/Library/Artifacts/50/50dde1e4904aec1a1f2015d934f8db5b differ diff --git a/Library/Artifacts/51/5104774451b4b8fde2960bafde7ed14c b/Library/Artifacts/51/5104774451b4b8fde2960bafde7ed14c new file mode 100644 index 00000000..d957afc8 Binary files /dev/null and b/Library/Artifacts/51/5104774451b4b8fde2960bafde7ed14c differ diff --git a/Library/Artifacts/51/5146cbd733c372644dc758b16a201f49 b/Library/Artifacts/51/5146cbd733c372644dc758b16a201f49 new file mode 100644 index 00000000..8ff74ce6 Binary files /dev/null and b/Library/Artifacts/51/5146cbd733c372644dc758b16a201f49 differ diff --git a/Library/Artifacts/51/51a1d690cf886d03b909761a6c0e663c b/Library/Artifacts/51/51a1d690cf886d03b909761a6c0e663c new file mode 100644 index 00000000..427963ca Binary files /dev/null and b/Library/Artifacts/51/51a1d690cf886d03b909761a6c0e663c differ diff --git a/Library/Artifacts/51/51c54c312c39eac76a3b24839b6657de b/Library/Artifacts/51/51c54c312c39eac76a3b24839b6657de new file mode 100644 index 00000000..4c169222 Binary files /dev/null and b/Library/Artifacts/51/51c54c312c39eac76a3b24839b6657de differ diff --git a/Library/Artifacts/52/52035a51b985687315a10eea53322564 b/Library/Artifacts/52/52035a51b985687315a10eea53322564 new file mode 100644 index 00000000..2fadc9ad Binary files /dev/null and b/Library/Artifacts/52/52035a51b985687315a10eea53322564 differ diff --git a/Library/Artifacts/52/527aafda2a019fc3f85854462712f942 b/Library/Artifacts/52/527aafda2a019fc3f85854462712f942 new file mode 100644 index 00000000..78732e8f Binary files /dev/null and b/Library/Artifacts/52/527aafda2a019fc3f85854462712f942 differ diff --git a/Library/Artifacts/52/52ad60854469f6b8ea8097573a3ebc8a b/Library/Artifacts/52/52ad60854469f6b8ea8097573a3ebc8a new file mode 100644 index 00000000..1569a1d5 Binary files /dev/null and b/Library/Artifacts/52/52ad60854469f6b8ea8097573a3ebc8a differ diff --git a/Library/Artifacts/52/52daae03db415f4f9525eceffd859298 b/Library/Artifacts/52/52daae03db415f4f9525eceffd859298 new file mode 100644 index 00000000..56d0dc0d Binary files /dev/null and b/Library/Artifacts/52/52daae03db415f4f9525eceffd859298 differ diff --git a/Library/Artifacts/53/5390ccfe9db5dc243fe370612602aa52 b/Library/Artifacts/53/5390ccfe9db5dc243fe370612602aa52 new file mode 100644 index 00000000..033cd000 Binary files /dev/null and b/Library/Artifacts/53/5390ccfe9db5dc243fe370612602aa52 differ diff --git a/Library/Artifacts/53/53d932892a66dca4118630135e5eb2cf b/Library/Artifacts/53/53d932892a66dca4118630135e5eb2cf new file mode 100644 index 00000000..39d6e6eb Binary files /dev/null and b/Library/Artifacts/53/53d932892a66dca4118630135e5eb2cf differ diff --git a/Library/Artifacts/53/53e15a1b9a3571f2429dd6848d501189 b/Library/Artifacts/53/53e15a1b9a3571f2429dd6848d501189 new file mode 100644 index 00000000..98fccbe3 Binary files /dev/null and b/Library/Artifacts/53/53e15a1b9a3571f2429dd6848d501189 differ diff --git a/Library/Artifacts/54/542eb0c63e4223360a2491ee78a3a204 b/Library/Artifacts/54/542eb0c63e4223360a2491ee78a3a204 new file mode 100644 index 00000000..df5b7044 Binary files /dev/null and b/Library/Artifacts/54/542eb0c63e4223360a2491ee78a3a204 differ diff --git a/Library/Artifacts/54/546ec956a43d782492bd124106817955 b/Library/Artifacts/54/546ec956a43d782492bd124106817955 new file mode 100644 index 00000000..52cbeb64 Binary files /dev/null and b/Library/Artifacts/54/546ec956a43d782492bd124106817955 differ diff --git a/Library/Artifacts/54/54717b134ff97a6a23714c33ce2bd884 b/Library/Artifacts/54/54717b134ff97a6a23714c33ce2bd884 new file mode 100644 index 00000000..f77c8a2c Binary files /dev/null and b/Library/Artifacts/54/54717b134ff97a6a23714c33ce2bd884 differ diff --git a/Library/Artifacts/55/55129fe74b87a1a79760974c757eb07c b/Library/Artifacts/55/55129fe74b87a1a79760974c757eb07c new file mode 100644 index 00000000..3f5687d0 Binary files /dev/null and b/Library/Artifacts/55/55129fe74b87a1a79760974c757eb07c differ diff --git a/Library/Artifacts/55/551324e68b210ee3e86c7fad9a7b17fe b/Library/Artifacts/55/551324e68b210ee3e86c7fad9a7b17fe new file mode 100644 index 00000000..23c8f2d1 Binary files /dev/null and b/Library/Artifacts/55/551324e68b210ee3e86c7fad9a7b17fe differ diff --git a/Library/Artifacts/56/561510387c147d31cc451d6708a7765d b/Library/Artifacts/56/561510387c147d31cc451d6708a7765d new file mode 100644 index 00000000..495900fb Binary files /dev/null and b/Library/Artifacts/56/561510387c147d31cc451d6708a7765d differ diff --git a/Library/Artifacts/56/562f637967a2b4218d8652a3a39a5393 b/Library/Artifacts/56/562f637967a2b4218d8652a3a39a5393 new file mode 100644 index 00000000..f4a5099f Binary files /dev/null and b/Library/Artifacts/56/562f637967a2b4218d8652a3a39a5393 differ diff --git a/Library/Artifacts/56/56410605791af40eb13bfc60ae668d11 b/Library/Artifacts/56/56410605791af40eb13bfc60ae668d11 new file mode 100644 index 00000000..45511f7d Binary files /dev/null and b/Library/Artifacts/56/56410605791af40eb13bfc60ae668d11 differ diff --git a/Library/Artifacts/56/56aae3de9c2d9836b4aeb5c384e977d6 b/Library/Artifacts/56/56aae3de9c2d9836b4aeb5c384e977d6 new file mode 100644 index 00000000..2fa40a7f Binary files /dev/null and b/Library/Artifacts/56/56aae3de9c2d9836b4aeb5c384e977d6 differ diff --git a/Library/Artifacts/56/56e088fc3a8dcaeee89f986556024184 b/Library/Artifacts/56/56e088fc3a8dcaeee89f986556024184 new file mode 100644 index 00000000..091466c0 Binary files /dev/null and b/Library/Artifacts/56/56e088fc3a8dcaeee89f986556024184 differ diff --git a/Library/Artifacts/56/56e193430f308b53692b5cc1a87b8c5d b/Library/Artifacts/56/56e193430f308b53692b5cc1a87b8c5d new file mode 100644 index 00000000..826a4244 Binary files /dev/null and b/Library/Artifacts/56/56e193430f308b53692b5cc1a87b8c5d differ diff --git a/Library/Artifacts/57/57f0670df8443b87398864d58a722f81 b/Library/Artifacts/57/57f0670df8443b87398864d58a722f81 new file mode 100644 index 00000000..c2a1e7e5 Binary files /dev/null and b/Library/Artifacts/57/57f0670df8443b87398864d58a722f81 differ diff --git a/Library/Artifacts/58/582912beeb97892e43a741772c5ac0b4 b/Library/Artifacts/58/582912beeb97892e43a741772c5ac0b4 new file mode 100644 index 00000000..36194a99 Binary files /dev/null and b/Library/Artifacts/58/582912beeb97892e43a741772c5ac0b4 differ diff --git a/Library/Artifacts/59/5976bdabc84edecd54604e64b28ac919 b/Library/Artifacts/59/5976bdabc84edecd54604e64b28ac919 new file mode 100644 index 00000000..747ce207 Binary files /dev/null and b/Library/Artifacts/59/5976bdabc84edecd54604e64b28ac919 differ diff --git a/Library/Artifacts/59/59ed1b37ba5a8dc721571239436e3950 b/Library/Artifacts/59/59ed1b37ba5a8dc721571239436e3950 new file mode 100644 index 00000000..2c4303c2 Binary files /dev/null and b/Library/Artifacts/59/59ed1b37ba5a8dc721571239436e3950 differ diff --git a/Library/Artifacts/5a/5a50d207be495d6a0cf553b9c53ce5e5 b/Library/Artifacts/5a/5a50d207be495d6a0cf553b9c53ce5e5 new file mode 100644 index 00000000..eb1cb727 Binary files /dev/null and b/Library/Artifacts/5a/5a50d207be495d6a0cf553b9c53ce5e5 differ diff --git a/Library/Artifacts/5b/5b524cb6dd72e30be1e40a4f34be05cb b/Library/Artifacts/5b/5b524cb6dd72e30be1e40a4f34be05cb new file mode 100644 index 00000000..65471570 Binary files /dev/null and b/Library/Artifacts/5b/5b524cb6dd72e30be1e40a4f34be05cb differ diff --git a/Library/Artifacts/5b/5b78e1275de635273ae04dc1eb10a831 b/Library/Artifacts/5b/5b78e1275de635273ae04dc1eb10a831 new file mode 100644 index 00000000..eb5eab8a Binary files /dev/null and b/Library/Artifacts/5b/5b78e1275de635273ae04dc1eb10a831 differ diff --git a/Library/Artifacts/5b/5be25c1118414b42c7a381ab8ba03ec9 b/Library/Artifacts/5b/5be25c1118414b42c7a381ab8ba03ec9 new file mode 100644 index 00000000..5144aeac Binary files /dev/null and b/Library/Artifacts/5b/5be25c1118414b42c7a381ab8ba03ec9 differ diff --git a/Library/Artifacts/5c/5c2c326e313646593b21b90530dd3296 b/Library/Artifacts/5c/5c2c326e313646593b21b90530dd3296 new file mode 100644 index 00000000..93d9022f Binary files /dev/null and b/Library/Artifacts/5c/5c2c326e313646593b21b90530dd3296 differ diff --git a/Library/Artifacts/5c/5c3b248b729e04999f867bf8dbe831de b/Library/Artifacts/5c/5c3b248b729e04999f867bf8dbe831de new file mode 100644 index 00000000..972aa37d Binary files /dev/null and b/Library/Artifacts/5c/5c3b248b729e04999f867bf8dbe831de differ diff --git a/Library/Artifacts/5c/5c8d10f9ecc0807003ef9277d3a4ca89 b/Library/Artifacts/5c/5c8d10f9ecc0807003ef9277d3a4ca89 new file mode 100644 index 00000000..be057454 Binary files /dev/null and b/Library/Artifacts/5c/5c8d10f9ecc0807003ef9277d3a4ca89 differ diff --git a/Library/Artifacts/5c/5ce69578b486e121754df05dc7537924 b/Library/Artifacts/5c/5ce69578b486e121754df05dc7537924 new file mode 100644 index 00000000..0dc08c8e Binary files /dev/null and b/Library/Artifacts/5c/5ce69578b486e121754df05dc7537924 differ diff --git a/Library/Artifacts/5d/5d8175589478c0a186a1e1fe9e14fe90 b/Library/Artifacts/5d/5d8175589478c0a186a1e1fe9e14fe90 new file mode 100644 index 00000000..20b976e1 Binary files /dev/null and b/Library/Artifacts/5d/5d8175589478c0a186a1e1fe9e14fe90 differ diff --git a/Library/Artifacts/5d/5de1be2a7a6ea1d11774c059543db1f8 b/Library/Artifacts/5d/5de1be2a7a6ea1d11774c059543db1f8 new file mode 100644 index 00000000..8cd1ffb8 Binary files /dev/null and b/Library/Artifacts/5d/5de1be2a7a6ea1d11774c059543db1f8 differ diff --git a/Library/Artifacts/5e/5ea82e28eb4e328beeedde539a67d758 b/Library/Artifacts/5e/5ea82e28eb4e328beeedde539a67d758 new file mode 100644 index 00000000..a8184346 Binary files /dev/null and b/Library/Artifacts/5e/5ea82e28eb4e328beeedde539a67d758 differ diff --git a/Library/Artifacts/5e/5ea9af9fe615b5c5e997aa09bbd21f44 b/Library/Artifacts/5e/5ea9af9fe615b5c5e997aa09bbd21f44 new file mode 100644 index 00000000..40ea6aac Binary files /dev/null and b/Library/Artifacts/5e/5ea9af9fe615b5c5e997aa09bbd21f44 differ diff --git a/Library/Artifacts/5f/5f7b0c82956c5dc7c9e8b8c58a52baf0 b/Library/Artifacts/5f/5f7b0c82956c5dc7c9e8b8c58a52baf0 new file mode 100644 index 00000000..cabe0c4c Binary files /dev/null and b/Library/Artifacts/5f/5f7b0c82956c5dc7c9e8b8c58a52baf0 differ diff --git a/Library/Artifacts/5f/5ffa315db9b8260688ec1f3c0e279dec b/Library/Artifacts/5f/5ffa315db9b8260688ec1f3c0e279dec new file mode 100644 index 00000000..2ce49520 Binary files /dev/null and b/Library/Artifacts/5f/5ffa315db9b8260688ec1f3c0e279dec differ diff --git a/Library/Artifacts/60/602004269f379aeb954d8829e9087b30 b/Library/Artifacts/60/602004269f379aeb954d8829e9087b30 new file mode 100644 index 00000000..5935e6c4 Binary files /dev/null and b/Library/Artifacts/60/602004269f379aeb954d8829e9087b30 differ diff --git a/Library/Artifacts/60/6028e2f4c26a0a07fccc1e183a0fd7c5 b/Library/Artifacts/60/6028e2f4c26a0a07fccc1e183a0fd7c5 new file mode 100644 index 00000000..67c70b52 Binary files /dev/null and b/Library/Artifacts/60/6028e2f4c26a0a07fccc1e183a0fd7c5 differ diff --git a/Library/Artifacts/60/604543ce72b1cdd2d9825d13afd272b0 b/Library/Artifacts/60/604543ce72b1cdd2d9825d13afd272b0 new file mode 100644 index 00000000..b1747baf Binary files /dev/null and b/Library/Artifacts/60/604543ce72b1cdd2d9825d13afd272b0 differ diff --git a/Library/Artifacts/61/61356e639c2f233cd531c7dcd77fcd00 b/Library/Artifacts/61/61356e639c2f233cd531c7dcd77fcd00 new file mode 100644 index 00000000..ba380251 Binary files /dev/null and b/Library/Artifacts/61/61356e639c2f233cd531c7dcd77fcd00 differ diff --git a/Library/Artifacts/61/6156e78b8954669299ddb511af12a5ea b/Library/Artifacts/61/6156e78b8954669299ddb511af12a5ea new file mode 100644 index 00000000..86e5f23a Binary files /dev/null and b/Library/Artifacts/61/6156e78b8954669299ddb511af12a5ea differ diff --git a/Library/Artifacts/61/6174bbb35243d8a460980992c53a6257 b/Library/Artifacts/61/6174bbb35243d8a460980992c53a6257 new file mode 100644 index 00000000..fbc01580 Binary files /dev/null and b/Library/Artifacts/61/6174bbb35243d8a460980992c53a6257 differ diff --git a/Library/Artifacts/61/61dc794e2ae64ed33f8427ab795156a8 b/Library/Artifacts/61/61dc794e2ae64ed33f8427ab795156a8 new file mode 100644 index 00000000..c6a8a867 Binary files /dev/null and b/Library/Artifacts/61/61dc794e2ae64ed33f8427ab795156a8 differ diff --git a/Library/Artifacts/61/61f73a4bc72e3cd7f33012a165d2d486 b/Library/Artifacts/61/61f73a4bc72e3cd7f33012a165d2d486 new file mode 100644 index 00000000..2604a68a Binary files /dev/null and b/Library/Artifacts/61/61f73a4bc72e3cd7f33012a165d2d486 differ diff --git a/Library/Artifacts/62/62446c6832e0e73aea30bdea076325d4 b/Library/Artifacts/62/62446c6832e0e73aea30bdea076325d4 new file mode 100644 index 00000000..c064af76 Binary files /dev/null and b/Library/Artifacts/62/62446c6832e0e73aea30bdea076325d4 differ diff --git a/Library/Artifacts/62/626ccb83d420c2bc24a5c9b75992bf98 b/Library/Artifacts/62/626ccb83d420c2bc24a5c9b75992bf98 new file mode 100644 index 00000000..ae661b07 Binary files /dev/null and b/Library/Artifacts/62/626ccb83d420c2bc24a5c9b75992bf98 differ diff --git a/Library/Artifacts/62/62d39e6b12f9c21cc0a7d447c3de2299 b/Library/Artifacts/62/62d39e6b12f9c21cc0a7d447c3de2299 new file mode 100644 index 00000000..5aecfa88 Binary files /dev/null and b/Library/Artifacts/62/62d39e6b12f9c21cc0a7d447c3de2299 differ diff --git a/Library/Artifacts/63/63d1fa59f44168c3639872192a754333 b/Library/Artifacts/63/63d1fa59f44168c3639872192a754333 new file mode 100644 index 00000000..277288ea Binary files /dev/null and b/Library/Artifacts/63/63d1fa59f44168c3639872192a754333 differ diff --git a/Library/Artifacts/64/6407358b48007ab94c8f2c402ebb43af b/Library/Artifacts/64/6407358b48007ab94c8f2c402ebb43af new file mode 100644 index 00000000..99e6b2bc Binary files /dev/null and b/Library/Artifacts/64/6407358b48007ab94c8f2c402ebb43af differ diff --git a/Library/Artifacts/65/65490401ab59563e4c22cd9fa6ad658f b/Library/Artifacts/65/65490401ab59563e4c22cd9fa6ad658f new file mode 100644 index 00000000..dc930d9a Binary files /dev/null and b/Library/Artifacts/65/65490401ab59563e4c22cd9fa6ad658f differ diff --git a/Library/Artifacts/65/654981d64733fdd31a8f47cac1be4549 b/Library/Artifacts/65/654981d64733fdd31a8f47cac1be4549 new file mode 100644 index 00000000..03b5910f Binary files /dev/null and b/Library/Artifacts/65/654981d64733fdd31a8f47cac1be4549 differ diff --git a/Library/Artifacts/65/6563f440977b31b3e9ed9c8fb7880014 b/Library/Artifacts/65/6563f440977b31b3e9ed9c8fb7880014 new file mode 100644 index 00000000..e8fb817e Binary files /dev/null and b/Library/Artifacts/65/6563f440977b31b3e9ed9c8fb7880014 differ diff --git a/Library/Artifacts/65/65ed6b7ff29b6f4fd2838b4cbaf11758 b/Library/Artifacts/65/65ed6b7ff29b6f4fd2838b4cbaf11758 new file mode 100644 index 00000000..f8883558 Binary files /dev/null and b/Library/Artifacts/65/65ed6b7ff29b6f4fd2838b4cbaf11758 differ diff --git a/Library/Artifacts/66/66c46acb8ea8b5871ab21595b943daba b/Library/Artifacts/66/66c46acb8ea8b5871ab21595b943daba new file mode 100644 index 00000000..dc6e2cdb Binary files /dev/null and b/Library/Artifacts/66/66c46acb8ea8b5871ab21595b943daba differ diff --git a/Library/Artifacts/67/67013ef5ca3ccba04943635b595d0500 b/Library/Artifacts/67/67013ef5ca3ccba04943635b595d0500 new file mode 100644 index 00000000..d8c1ffad Binary files /dev/null and b/Library/Artifacts/67/67013ef5ca3ccba04943635b595d0500 differ diff --git a/Library/Artifacts/67/679f0d70ff5184891ec3a21ef529d070 b/Library/Artifacts/67/679f0d70ff5184891ec3a21ef529d070 new file mode 100644 index 00000000..5c772e8c Binary files /dev/null and b/Library/Artifacts/67/679f0d70ff5184891ec3a21ef529d070 differ diff --git a/Library/Artifacts/68/6805559b4c1f632d105ff9c63eb1249a b/Library/Artifacts/68/6805559b4c1f632d105ff9c63eb1249a new file mode 100644 index 00000000..19ef8b4d Binary files /dev/null and b/Library/Artifacts/68/6805559b4c1f632d105ff9c63eb1249a differ diff --git a/Library/Artifacts/68/68c291652bdf557d714db93f019a7892 b/Library/Artifacts/68/68c291652bdf557d714db93f019a7892 new file mode 100644 index 00000000..71fc4944 Binary files /dev/null and b/Library/Artifacts/68/68c291652bdf557d714db93f019a7892 differ diff --git a/Library/Artifacts/69/694c022479c654bbd8ba4d447e1e5d7a b/Library/Artifacts/69/694c022479c654bbd8ba4d447e1e5d7a new file mode 100644 index 00000000..d89f50fb Binary files /dev/null and b/Library/Artifacts/69/694c022479c654bbd8ba4d447e1e5d7a differ diff --git a/Library/Artifacts/69/6952f694b58bf7df1e50b3b583eac392 b/Library/Artifacts/69/6952f694b58bf7df1e50b3b583eac392 new file mode 100644 index 00000000..160a9b30 Binary files /dev/null and b/Library/Artifacts/69/6952f694b58bf7df1e50b3b583eac392 differ diff --git a/Library/Artifacts/69/69d0accbd0dc4c84b0e7cfc67a9bbb74 b/Library/Artifacts/69/69d0accbd0dc4c84b0e7cfc67a9bbb74 new file mode 100644 index 00000000..4408986d Binary files /dev/null and b/Library/Artifacts/69/69d0accbd0dc4c84b0e7cfc67a9bbb74 differ diff --git a/Library/Artifacts/69/69d2cfec0ee3f85e3a46072b7394cccd b/Library/Artifacts/69/69d2cfec0ee3f85e3a46072b7394cccd new file mode 100644 index 00000000..73591f38 Binary files /dev/null and b/Library/Artifacts/69/69d2cfec0ee3f85e3a46072b7394cccd differ diff --git a/Library/Artifacts/6a/6a4babc0b024c407452906a89dd859e8 b/Library/Artifacts/6a/6a4babc0b024c407452906a89dd859e8 new file mode 100644 index 00000000..0f20042b Binary files /dev/null and b/Library/Artifacts/6a/6a4babc0b024c407452906a89dd859e8 differ diff --git a/Library/Artifacts/6b/6b9524101567b65cae50bf4d3c5cf852 b/Library/Artifacts/6b/6b9524101567b65cae50bf4d3c5cf852 new file mode 100644 index 00000000..6fccaabb Binary files /dev/null and b/Library/Artifacts/6b/6b9524101567b65cae50bf4d3c5cf852 differ diff --git a/Library/Artifacts/6b/6b96b1c7eff068b7f7801633f8827b53 b/Library/Artifacts/6b/6b96b1c7eff068b7f7801633f8827b53 new file mode 100644 index 00000000..348b5182 Binary files /dev/null and b/Library/Artifacts/6b/6b96b1c7eff068b7f7801633f8827b53 differ diff --git a/Library/Artifacts/6c/6cdb275cc5b2ffd1149ed74109ec79b1 b/Library/Artifacts/6c/6cdb275cc5b2ffd1149ed74109ec79b1 new file mode 100644 index 00000000..757b5b00 Binary files /dev/null and b/Library/Artifacts/6c/6cdb275cc5b2ffd1149ed74109ec79b1 differ diff --git a/Library/Artifacts/6d/6d1bf8c31f8d93b3a556065d890928b8 b/Library/Artifacts/6d/6d1bf8c31f8d93b3a556065d890928b8 new file mode 100644 index 00000000..b27cf4c8 Binary files /dev/null and b/Library/Artifacts/6d/6d1bf8c31f8d93b3a556065d890928b8 differ diff --git a/Library/Artifacts/6d/6da2dad52dd20b1f95a5ff7e534582c1 b/Library/Artifacts/6d/6da2dad52dd20b1f95a5ff7e534582c1 new file mode 100644 index 00000000..4e739826 Binary files /dev/null and b/Library/Artifacts/6d/6da2dad52dd20b1f95a5ff7e534582c1 differ diff --git a/Library/Artifacts/70/7056035c97ffc1d20329ef6fdc99a85c b/Library/Artifacts/70/7056035c97ffc1d20329ef6fdc99a85c new file mode 100644 index 00000000..3914ffcf Binary files /dev/null and b/Library/Artifacts/70/7056035c97ffc1d20329ef6fdc99a85c differ diff --git a/Library/Artifacts/71/713bd3febb05b655cb6030f2af71864f b/Library/Artifacts/71/713bd3febb05b655cb6030f2af71864f new file mode 100644 index 00000000..0210289a Binary files /dev/null and b/Library/Artifacts/71/713bd3febb05b655cb6030f2af71864f differ diff --git a/Library/Artifacts/71/717ff2cd9685820d1b74c280de3106bf b/Library/Artifacts/71/717ff2cd9685820d1b74c280de3106bf new file mode 100644 index 00000000..4ea9c69b Binary files /dev/null and b/Library/Artifacts/71/717ff2cd9685820d1b74c280de3106bf differ diff --git a/Library/Artifacts/71/71b7d969031d09f41eca482a4b762bf1 b/Library/Artifacts/71/71b7d969031d09f41eca482a4b762bf1 new file mode 100644 index 00000000..cd664178 Binary files /dev/null and b/Library/Artifacts/71/71b7d969031d09f41eca482a4b762bf1 differ diff --git a/Library/Artifacts/72/72a990e757494bdcc52dc25b6a97927c b/Library/Artifacts/72/72a990e757494bdcc52dc25b6a97927c new file mode 100644 index 00000000..fb1b8408 Binary files /dev/null and b/Library/Artifacts/72/72a990e757494bdcc52dc25b6a97927c differ diff --git a/Library/Artifacts/73/73874f4b30407cef29684088d407ee0e b/Library/Artifacts/73/73874f4b30407cef29684088d407ee0e new file mode 100644 index 00000000..6f424388 Binary files /dev/null and b/Library/Artifacts/73/73874f4b30407cef29684088d407ee0e differ diff --git a/Library/Artifacts/73/7392b93ee801126a31dbda5a620f8d79 b/Library/Artifacts/73/7392b93ee801126a31dbda5a620f8d79 new file mode 100644 index 00000000..033f075a Binary files /dev/null and b/Library/Artifacts/73/7392b93ee801126a31dbda5a620f8d79 differ diff --git a/Library/Artifacts/73/73f86ab1dc2e02942316af4f3dc4328b b/Library/Artifacts/73/73f86ab1dc2e02942316af4f3dc4328b new file mode 100644 index 00000000..d19fe014 Binary files /dev/null and b/Library/Artifacts/73/73f86ab1dc2e02942316af4f3dc4328b differ diff --git a/Library/Artifacts/74/740f94849103f5159007a82e23fb3e53 b/Library/Artifacts/74/740f94849103f5159007a82e23fb3e53 new file mode 100644 index 00000000..7ca1bab6 Binary files /dev/null and b/Library/Artifacts/74/740f94849103f5159007a82e23fb3e53 differ diff --git a/Library/Artifacts/74/7437853350b7eb6aa430b9ab1becb837 b/Library/Artifacts/74/7437853350b7eb6aa430b9ab1becb837 new file mode 100644 index 00000000..ee053f4f Binary files /dev/null and b/Library/Artifacts/74/7437853350b7eb6aa430b9ab1becb837 differ diff --git a/Library/Artifacts/74/74d241266b3d2e180b58c2d817a3207c b/Library/Artifacts/74/74d241266b3d2e180b58c2d817a3207c new file mode 100644 index 00000000..177b2452 Binary files /dev/null and b/Library/Artifacts/74/74d241266b3d2e180b58c2d817a3207c differ diff --git a/Library/Artifacts/75/75549af661f5bd235c833a1b4ac3964d b/Library/Artifacts/75/75549af661f5bd235c833a1b4ac3964d new file mode 100644 index 00000000..0459b102 Binary files /dev/null and b/Library/Artifacts/75/75549af661f5bd235c833a1b4ac3964d differ diff --git a/Library/Artifacts/75/75ae086cd97e46cf9b91f5d8f4355cb8 b/Library/Artifacts/75/75ae086cd97e46cf9b91f5d8f4355cb8 new file mode 100644 index 00000000..73991143 Binary files /dev/null and b/Library/Artifacts/75/75ae086cd97e46cf9b91f5d8f4355cb8 differ diff --git a/Library/Artifacts/75/75ba3ed1c1bda10e046f62ea828fe007 b/Library/Artifacts/75/75ba3ed1c1bda10e046f62ea828fe007 new file mode 100644 index 00000000..8115a62b Binary files /dev/null and b/Library/Artifacts/75/75ba3ed1c1bda10e046f62ea828fe007 differ diff --git a/Library/Artifacts/76/76b4bf536c5e414a947ce1896469f03e b/Library/Artifacts/76/76b4bf536c5e414a947ce1896469f03e new file mode 100644 index 00000000..6bb5061c Binary files /dev/null and b/Library/Artifacts/76/76b4bf536c5e414a947ce1896469f03e differ diff --git a/Library/Artifacts/77/776616a218845c8255dea29e0ac83801 b/Library/Artifacts/77/776616a218845c8255dea29e0ac83801 new file mode 100644 index 00000000..f780e2a1 Binary files /dev/null and b/Library/Artifacts/77/776616a218845c8255dea29e0ac83801 differ diff --git a/Library/Artifacts/77/77b4546c14c586d57a9ba1c9253d3a14 b/Library/Artifacts/77/77b4546c14c586d57a9ba1c9253d3a14 new file mode 100644 index 00000000..1c7be427 Binary files /dev/null and b/Library/Artifacts/77/77b4546c14c586d57a9ba1c9253d3a14 differ diff --git a/Library/Artifacts/77/77e9a3f8740829002a2710ceb1fe741c b/Library/Artifacts/77/77e9a3f8740829002a2710ceb1fe741c new file mode 100644 index 00000000..a6739361 Binary files /dev/null and b/Library/Artifacts/77/77e9a3f8740829002a2710ceb1fe741c differ diff --git a/Library/Artifacts/78/7884323008f5518c21479104289c2903 b/Library/Artifacts/78/7884323008f5518c21479104289c2903 new file mode 100644 index 00000000..3afb41da Binary files /dev/null and b/Library/Artifacts/78/7884323008f5518c21479104289c2903 differ diff --git a/Library/Artifacts/78/78d55ab6d6005408a561a5364a161426 b/Library/Artifacts/78/78d55ab6d6005408a561a5364a161426 new file mode 100644 index 00000000..b9275e1d Binary files /dev/null and b/Library/Artifacts/78/78d55ab6d6005408a561a5364a161426 differ diff --git a/Library/Artifacts/78/78f4da5cc97fd61cdf4d6b8d3445b645 b/Library/Artifacts/78/78f4da5cc97fd61cdf4d6b8d3445b645 new file mode 100644 index 00000000..f4d60bad Binary files /dev/null and b/Library/Artifacts/78/78f4da5cc97fd61cdf4d6b8d3445b645 differ diff --git a/Library/Artifacts/79/79773434b56b76ba98be51444b2168fd b/Library/Artifacts/79/79773434b56b76ba98be51444b2168fd new file mode 100644 index 00000000..cdb4097d Binary files /dev/null and b/Library/Artifacts/79/79773434b56b76ba98be51444b2168fd differ diff --git a/Library/Artifacts/79/79a008c63d5795e1dcf68bbd30a89d8a b/Library/Artifacts/79/79a008c63d5795e1dcf68bbd30a89d8a new file mode 100644 index 00000000..f5e2ab02 Binary files /dev/null and b/Library/Artifacts/79/79a008c63d5795e1dcf68bbd30a89d8a differ diff --git a/Library/Artifacts/79/79c8c5a5a82c89dbdf8f78e4ca46d949 b/Library/Artifacts/79/79c8c5a5a82c89dbdf8f78e4ca46d949 new file mode 100644 index 00000000..5cd582a9 Binary files /dev/null and b/Library/Artifacts/79/79c8c5a5a82c89dbdf8f78e4ca46d949 differ diff --git a/Library/Artifacts/7a/7a3500d7438e5079718cc5b655b2322c b/Library/Artifacts/7a/7a3500d7438e5079718cc5b655b2322c new file mode 100644 index 00000000..f1844c5a Binary files /dev/null and b/Library/Artifacts/7a/7a3500d7438e5079718cc5b655b2322c differ diff --git a/Library/Artifacts/7a/7a64ddbad2727c8fcc0a037e5dfb3903 b/Library/Artifacts/7a/7a64ddbad2727c8fcc0a037e5dfb3903 new file mode 100644 index 00000000..661297c1 Binary files /dev/null and b/Library/Artifacts/7a/7a64ddbad2727c8fcc0a037e5dfb3903 differ diff --git a/Library/Artifacts/7a/7a969819c87cef479a5795bce3488706 b/Library/Artifacts/7a/7a969819c87cef479a5795bce3488706 new file mode 100644 index 00000000..d3366475 Binary files /dev/null and b/Library/Artifacts/7a/7a969819c87cef479a5795bce3488706 differ diff --git a/Library/Artifacts/7b/7b3010d8491874f2a6b63c58daae9db0 b/Library/Artifacts/7b/7b3010d8491874f2a6b63c58daae9db0 new file mode 100644 index 00000000..eb0f2ade Binary files /dev/null and b/Library/Artifacts/7b/7b3010d8491874f2a6b63c58daae9db0 differ diff --git a/Library/Artifacts/7b/7b5c51a87634e56f9dbb6da3842411c8 b/Library/Artifacts/7b/7b5c51a87634e56f9dbb6da3842411c8 new file mode 100644 index 00000000..328f4c1f Binary files /dev/null and b/Library/Artifacts/7b/7b5c51a87634e56f9dbb6da3842411c8 differ diff --git a/Library/Artifacts/7c/7c04a4a8c1a06e197f8f51a7459e0346 b/Library/Artifacts/7c/7c04a4a8c1a06e197f8f51a7459e0346 new file mode 100644 index 00000000..5129b6e5 Binary files /dev/null and b/Library/Artifacts/7c/7c04a4a8c1a06e197f8f51a7459e0346 differ diff --git a/Library/Artifacts/7c/7c190da4ad9b3dcc5060c9abd456f85f b/Library/Artifacts/7c/7c190da4ad9b3dcc5060c9abd456f85f new file mode 100644 index 00000000..98f8a973 Binary files /dev/null and b/Library/Artifacts/7c/7c190da4ad9b3dcc5060c9abd456f85f differ diff --git a/Library/Artifacts/7c/7c26b30314585ebff54112539baee5bb b/Library/Artifacts/7c/7c26b30314585ebff54112539baee5bb new file mode 100644 index 00000000..b9df6796 Binary files /dev/null and b/Library/Artifacts/7c/7c26b30314585ebff54112539baee5bb differ diff --git a/Library/Artifacts/7c/7ca911d165548dca7705a99c27fa3a80 b/Library/Artifacts/7c/7ca911d165548dca7705a99c27fa3a80 new file mode 100644 index 00000000..36e8886d Binary files /dev/null and b/Library/Artifacts/7c/7ca911d165548dca7705a99c27fa3a80 differ diff --git a/Library/Artifacts/7d/7d09d3651df9a2f3b4fdf34d8067f342 b/Library/Artifacts/7d/7d09d3651df9a2f3b4fdf34d8067f342 new file mode 100644 index 00000000..16479136 Binary files /dev/null and b/Library/Artifacts/7d/7d09d3651df9a2f3b4fdf34d8067f342 differ diff --git a/Library/Artifacts/7d/7d0f0717e70735f65d1ad02ba124958d b/Library/Artifacts/7d/7d0f0717e70735f65d1ad02ba124958d new file mode 100644 index 00000000..3b5e92e5 Binary files /dev/null and b/Library/Artifacts/7d/7d0f0717e70735f65d1ad02ba124958d differ diff --git a/Library/Artifacts/7d/7d6edb982cb98e1a37cd2def92aced74 b/Library/Artifacts/7d/7d6edb982cb98e1a37cd2def92aced74 new file mode 100644 index 00000000..ea310ed4 Binary files /dev/null and b/Library/Artifacts/7d/7d6edb982cb98e1a37cd2def92aced74 differ diff --git a/Library/Artifacts/7d/7d99434caa487e270dd3d36abad89e3d b/Library/Artifacts/7d/7d99434caa487e270dd3d36abad89e3d new file mode 100644 index 00000000..2e39836c Binary files /dev/null and b/Library/Artifacts/7d/7d99434caa487e270dd3d36abad89e3d differ diff --git a/Library/Artifacts/7e/7e13e623c46c0669000740809be0a7c0 b/Library/Artifacts/7e/7e13e623c46c0669000740809be0a7c0 new file mode 100644 index 00000000..5c002f4d Binary files /dev/null and b/Library/Artifacts/7e/7e13e623c46c0669000740809be0a7c0 differ diff --git a/Library/Artifacts/7e/7e37423120695a3e97bf6f9d245fb174 b/Library/Artifacts/7e/7e37423120695a3e97bf6f9d245fb174 new file mode 100644 index 00000000..c43eca86 Binary files /dev/null and b/Library/Artifacts/7e/7e37423120695a3e97bf6f9d245fb174 differ diff --git a/Library/Artifacts/7e/7e602dd859e50437246b2e1bbb292a32 b/Library/Artifacts/7e/7e602dd859e50437246b2e1bbb292a32 new file mode 100644 index 00000000..71ee079d Binary files /dev/null and b/Library/Artifacts/7e/7e602dd859e50437246b2e1bbb292a32 differ diff --git a/Library/Artifacts/7e/7e845d961a2ae1bbedc5c91a4e806494 b/Library/Artifacts/7e/7e845d961a2ae1bbedc5c91a4e806494 new file mode 100644 index 00000000..460bb198 Binary files /dev/null and b/Library/Artifacts/7e/7e845d961a2ae1bbedc5c91a4e806494 differ diff --git a/Library/Artifacts/7e/7eace1a7ba834e6ee58a0f858c8fb3ec b/Library/Artifacts/7e/7eace1a7ba834e6ee58a0f858c8fb3ec new file mode 100644 index 00000000..73b4f271 Binary files /dev/null and b/Library/Artifacts/7e/7eace1a7ba834e6ee58a0f858c8fb3ec differ diff --git a/Library/Artifacts/7f/7f8379a43672a9c9b81738b12f8ac007 b/Library/Artifacts/7f/7f8379a43672a9c9b81738b12f8ac007 new file mode 100644 index 00000000..fac4f50d Binary files /dev/null and b/Library/Artifacts/7f/7f8379a43672a9c9b81738b12f8ac007 differ diff --git a/Library/Artifacts/7f/7fae70410be803b741d47e92797271c4 b/Library/Artifacts/7f/7fae70410be803b741d47e92797271c4 new file mode 100644 index 00000000..af3200ec Binary files /dev/null and b/Library/Artifacts/7f/7fae70410be803b741d47e92797271c4 differ diff --git a/Library/Artifacts/7f/7fd68b3fb7b98d6326e945dadb9ecda0 b/Library/Artifacts/7f/7fd68b3fb7b98d6326e945dadb9ecda0 new file mode 100644 index 00000000..e3fe2eff Binary files /dev/null and b/Library/Artifacts/7f/7fd68b3fb7b98d6326e945dadb9ecda0 differ diff --git a/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e b/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e new file mode 100644 index 00000000..ba259e89 Binary files /dev/null and b/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e differ diff --git a/Library/Artifacts/80/8084531b69d46b4e23be245fe26dce8d b/Library/Artifacts/80/8084531b69d46b4e23be245fe26dce8d new file mode 100644 index 00000000..b6f4b72f Binary files /dev/null and b/Library/Artifacts/80/8084531b69d46b4e23be245fe26dce8d differ diff --git a/Library/Artifacts/80/808b6d85a64570e5db38dbdf4d86b1b5 b/Library/Artifacts/80/808b6d85a64570e5db38dbdf4d86b1b5 new file mode 100644 index 00000000..f4e53652 Binary files /dev/null and b/Library/Artifacts/80/808b6d85a64570e5db38dbdf4d86b1b5 differ diff --git a/Library/Artifacts/80/80d9f5d953443d6137d4ca4c21ea5984 b/Library/Artifacts/80/80d9f5d953443d6137d4ca4c21ea5984 new file mode 100644 index 00000000..cf54f07f Binary files /dev/null and b/Library/Artifacts/80/80d9f5d953443d6137d4ca4c21ea5984 differ diff --git a/Library/Artifacts/81/8150e652e187b7b6783ada80149f7e5a b/Library/Artifacts/81/8150e652e187b7b6783ada80149f7e5a new file mode 100644 index 00000000..feb22d2d Binary files /dev/null and b/Library/Artifacts/81/8150e652e187b7b6783ada80149f7e5a differ diff --git a/Library/Artifacts/81/81c0cf709002e43f999f01e52f3bb70f b/Library/Artifacts/81/81c0cf709002e43f999f01e52f3bb70f new file mode 100644 index 00000000..04e813f4 Binary files /dev/null and b/Library/Artifacts/81/81c0cf709002e43f999f01e52f3bb70f differ diff --git a/Library/Artifacts/82/8201d41c262ec6ed54c4a9a390031bdb b/Library/Artifacts/82/8201d41c262ec6ed54c4a9a390031bdb new file mode 100644 index 00000000..c6bb92c7 Binary files /dev/null and b/Library/Artifacts/82/8201d41c262ec6ed54c4a9a390031bdb differ diff --git a/Library/Artifacts/82/829efd4d3aefead8363f79bd9e6a1d0f b/Library/Artifacts/82/829efd4d3aefead8363f79bd9e6a1d0f new file mode 100644 index 00000000..dc665e99 Binary files /dev/null and b/Library/Artifacts/82/829efd4d3aefead8363f79bd9e6a1d0f differ diff --git a/Library/Artifacts/82/82d27144e0dc054ea12e6ddba409c5d8 b/Library/Artifacts/82/82d27144e0dc054ea12e6ddba409c5d8 new file mode 100644 index 00000000..ec157a86 Binary files /dev/null and b/Library/Artifacts/82/82d27144e0dc054ea12e6ddba409c5d8 differ diff --git a/Library/Artifacts/83/83a79d5f64859aacbacff61adbfd606f b/Library/Artifacts/83/83a79d5f64859aacbacff61adbfd606f new file mode 100644 index 00000000..83504e82 Binary files /dev/null and b/Library/Artifacts/83/83a79d5f64859aacbacff61adbfd606f differ diff --git a/Library/Artifacts/84/840058baedaee2317ff6cc6dfb5f4957 b/Library/Artifacts/84/840058baedaee2317ff6cc6dfb5f4957 new file mode 100644 index 00000000..53996db4 Binary files /dev/null and b/Library/Artifacts/84/840058baedaee2317ff6cc6dfb5f4957 differ diff --git a/Library/Artifacts/84/843029d9dc341c56c4c8fc7f09f69d17 b/Library/Artifacts/84/843029d9dc341c56c4c8fc7f09f69d17 new file mode 100644 index 00000000..6a058e95 Binary files /dev/null and b/Library/Artifacts/84/843029d9dc341c56c4c8fc7f09f69d17 differ diff --git a/Library/Artifacts/84/84962e9632d19cb90e8937421be6c2cc b/Library/Artifacts/84/84962e9632d19cb90e8937421be6c2cc new file mode 100644 index 00000000..c6460c44 Binary files /dev/null and b/Library/Artifacts/84/84962e9632d19cb90e8937421be6c2cc differ diff --git a/Library/Artifacts/84/849b42bdfe4b8866b436646a963b6017 b/Library/Artifacts/84/849b42bdfe4b8866b436646a963b6017 new file mode 100644 index 00000000..ad2377b6 Binary files /dev/null and b/Library/Artifacts/84/849b42bdfe4b8866b436646a963b6017 differ diff --git a/Library/Artifacts/85/85522c449d0e54e54ed86d87eab11421 b/Library/Artifacts/85/85522c449d0e54e54ed86d87eab11421 new file mode 100644 index 00000000..7f9ff644 Binary files /dev/null and b/Library/Artifacts/85/85522c449d0e54e54ed86d87eab11421 differ diff --git a/Library/Artifacts/85/85a3bd85518ed8a547c8d002364db755 b/Library/Artifacts/85/85a3bd85518ed8a547c8d002364db755 new file mode 100644 index 00000000..5fb3dfb3 Binary files /dev/null and b/Library/Artifacts/85/85a3bd85518ed8a547c8d002364db755 differ diff --git a/Library/Artifacts/85/85b7634ef24a0af296ed02d7b644a64f b/Library/Artifacts/85/85b7634ef24a0af296ed02d7b644a64f new file mode 100644 index 00000000..99b02ef5 Binary files /dev/null and b/Library/Artifacts/85/85b7634ef24a0af296ed02d7b644a64f differ diff --git a/Library/Artifacts/85/85c5a7adec5e604b7b284080f4e647cd b/Library/Artifacts/85/85c5a7adec5e604b7b284080f4e647cd new file mode 100644 index 00000000..3312bdc4 Binary files /dev/null and b/Library/Artifacts/85/85c5a7adec5e604b7b284080f4e647cd differ diff --git a/Library/Artifacts/86/8655643a79f19af868dce95a8d5e469a b/Library/Artifacts/86/8655643a79f19af868dce95a8d5e469a new file mode 100644 index 00000000..f73eba17 Binary files /dev/null and b/Library/Artifacts/86/8655643a79f19af868dce95a8d5e469a differ diff --git a/Library/Artifacts/87/8703b9a8ab491f84bb84743171cd2b08 b/Library/Artifacts/87/8703b9a8ab491f84bb84743171cd2b08 new file mode 100644 index 00000000..c62a5b75 Binary files /dev/null and b/Library/Artifacts/87/8703b9a8ab491f84bb84743171cd2b08 differ diff --git a/Library/Artifacts/87/875401c4880e63df790644b4a9fc2103 b/Library/Artifacts/87/875401c4880e63df790644b4a9fc2103 new file mode 100644 index 00000000..ebbc4a15 Binary files /dev/null and b/Library/Artifacts/87/875401c4880e63df790644b4a9fc2103 differ diff --git a/Library/Artifacts/87/87691c4b584df595b4b3f5320e73ed0b b/Library/Artifacts/87/87691c4b584df595b4b3f5320e73ed0b new file mode 100644 index 00000000..49073c58 Binary files /dev/null and b/Library/Artifacts/87/87691c4b584df595b4b3f5320e73ed0b differ diff --git a/Library/Artifacts/87/87785e00428e876ebe0390df9ad62782 b/Library/Artifacts/87/87785e00428e876ebe0390df9ad62782 new file mode 100644 index 00000000..3e96219a Binary files /dev/null and b/Library/Artifacts/87/87785e00428e876ebe0390df9ad62782 differ diff --git a/Library/Artifacts/87/87d8ea17f1b85c7eb2f0f2a63267800a b/Library/Artifacts/87/87d8ea17f1b85c7eb2f0f2a63267800a new file mode 100644 index 00000000..a72617ed Binary files /dev/null and b/Library/Artifacts/87/87d8ea17f1b85c7eb2f0f2a63267800a differ diff --git a/Library/Artifacts/87/87dd51f56100d5d2a3ef2c8460ed405c b/Library/Artifacts/87/87dd51f56100d5d2a3ef2c8460ed405c new file mode 100644 index 00000000..ef5a7a58 Binary files /dev/null and b/Library/Artifacts/87/87dd51f56100d5d2a3ef2c8460ed405c differ diff --git a/Library/Artifacts/87/87e3ee777c517a1977b0d30ab36caac1 b/Library/Artifacts/87/87e3ee777c517a1977b0d30ab36caac1 new file mode 100644 index 00000000..33b241d9 Binary files /dev/null and b/Library/Artifacts/87/87e3ee777c517a1977b0d30ab36caac1 differ diff --git a/Library/Artifacts/89/89d3bbda645f0be17e23c2e0826ac9f9 b/Library/Artifacts/89/89d3bbda645f0be17e23c2e0826ac9f9 new file mode 100644 index 00000000..cb9b5bb8 Binary files /dev/null and b/Library/Artifacts/89/89d3bbda645f0be17e23c2e0826ac9f9 differ diff --git a/Library/Artifacts/8a/8a579f74266ce9067b91220c014e47e3 b/Library/Artifacts/8a/8a579f74266ce9067b91220c014e47e3 new file mode 100644 index 00000000..483a0f08 Binary files /dev/null and b/Library/Artifacts/8a/8a579f74266ce9067b91220c014e47e3 differ diff --git a/Library/Artifacts/8a/8a81b9f651b59fac95b45248443805cc b/Library/Artifacts/8a/8a81b9f651b59fac95b45248443805cc new file mode 100644 index 00000000..407b3e13 Binary files /dev/null and b/Library/Artifacts/8a/8a81b9f651b59fac95b45248443805cc differ diff --git a/Library/Artifacts/8b/8b8f4aa65d5a7ecab02f91db729fc89e b/Library/Artifacts/8b/8b8f4aa65d5a7ecab02f91db729fc89e new file mode 100644 index 00000000..24f6e282 Binary files /dev/null and b/Library/Artifacts/8b/8b8f4aa65d5a7ecab02f91db729fc89e differ diff --git a/Library/Artifacts/8b/8be375a16337cac5444b2255641e122f b/Library/Artifacts/8b/8be375a16337cac5444b2255641e122f new file mode 100644 index 00000000..844a28db Binary files /dev/null and b/Library/Artifacts/8b/8be375a16337cac5444b2255641e122f differ diff --git a/Library/Artifacts/8b/8bef1086735a2127de36a2b3fd6b9475 b/Library/Artifacts/8b/8bef1086735a2127de36a2b3fd6b9475 new file mode 100644 index 00000000..7bf63ecf Binary files /dev/null and b/Library/Artifacts/8b/8bef1086735a2127de36a2b3fd6b9475 differ diff --git a/Library/Artifacts/8c/8c3676c84f360e99bf1cf199810ae4ca b/Library/Artifacts/8c/8c3676c84f360e99bf1cf199810ae4ca new file mode 100644 index 00000000..4e15507e Binary files /dev/null and b/Library/Artifacts/8c/8c3676c84f360e99bf1cf199810ae4ca differ diff --git a/Library/Artifacts/8c/8ca3ac3de05379801ac21c7ba2495323 b/Library/Artifacts/8c/8ca3ac3de05379801ac21c7ba2495323 new file mode 100644 index 00000000..69a10931 Binary files /dev/null and b/Library/Artifacts/8c/8ca3ac3de05379801ac21c7ba2495323 differ diff --git a/Library/Artifacts/8c/8cb5a081846acb103607767f57e666a5 b/Library/Artifacts/8c/8cb5a081846acb103607767f57e666a5 new file mode 100644 index 00000000..76e9d0f7 Binary files /dev/null and b/Library/Artifacts/8c/8cb5a081846acb103607767f57e666a5 differ diff --git a/Library/Artifacts/8c/8cf4b27624968c679716179cdf5e6a45 b/Library/Artifacts/8c/8cf4b27624968c679716179cdf5e6a45 new file mode 100644 index 00000000..4f785199 Binary files /dev/null and b/Library/Artifacts/8c/8cf4b27624968c679716179cdf5e6a45 differ diff --git a/Library/Artifacts/8d/8d4ac9cca6a7f37f1a4d365245817329 b/Library/Artifacts/8d/8d4ac9cca6a7f37f1a4d365245817329 new file mode 100644 index 00000000..7665ff77 Binary files /dev/null and b/Library/Artifacts/8d/8d4ac9cca6a7f37f1a4d365245817329 differ diff --git a/Library/Artifacts/8d/8d4d650a9cbff4889944dbf871b20d91 b/Library/Artifacts/8d/8d4d650a9cbff4889944dbf871b20d91 new file mode 100644 index 00000000..3529be19 Binary files /dev/null and b/Library/Artifacts/8d/8d4d650a9cbff4889944dbf871b20d91 differ diff --git a/Library/Artifacts/8d/8da2e9f31923471666c09f66938c80a4 b/Library/Artifacts/8d/8da2e9f31923471666c09f66938c80a4 new file mode 100644 index 00000000..aee3102f Binary files /dev/null and b/Library/Artifacts/8d/8da2e9f31923471666c09f66938c80a4 differ diff --git a/Library/Artifacts/8e/8eb4cd8b0426bac3938481fe64886bd2 b/Library/Artifacts/8e/8eb4cd8b0426bac3938481fe64886bd2 new file mode 100644 index 00000000..de81e608 Binary files /dev/null and b/Library/Artifacts/8e/8eb4cd8b0426bac3938481fe64886bd2 differ diff --git a/Library/Artifacts/90/90bbcacb8ee891a485938a9e0ce1ecf1 b/Library/Artifacts/90/90bbcacb8ee891a485938a9e0ce1ecf1 new file mode 100644 index 00000000..9a6f3c28 Binary files /dev/null and b/Library/Artifacts/90/90bbcacb8ee891a485938a9e0ce1ecf1 differ diff --git a/Library/Artifacts/91/9133dd272f43864b7650863bb2c3a5d3 b/Library/Artifacts/91/9133dd272f43864b7650863bb2c3a5d3 new file mode 100644 index 00000000..7f640003 Binary files /dev/null and b/Library/Artifacts/91/9133dd272f43864b7650863bb2c3a5d3 differ diff --git a/Library/Artifacts/91/917be24304516316e19b34e5ad65378d b/Library/Artifacts/91/917be24304516316e19b34e5ad65378d new file mode 100644 index 00000000..c392a1d5 Binary files /dev/null and b/Library/Artifacts/91/917be24304516316e19b34e5ad65378d differ diff --git a/Library/Artifacts/92/920bf7b77adfe662fe616720257cc31d b/Library/Artifacts/92/920bf7b77adfe662fe616720257cc31d new file mode 100644 index 00000000..92e7d179 Binary files /dev/null and b/Library/Artifacts/92/920bf7b77adfe662fe616720257cc31d differ diff --git a/Library/Artifacts/92/923749d03c5d2dd9ec8903d8bbfc4e45 b/Library/Artifacts/92/923749d03c5d2dd9ec8903d8bbfc4e45 new file mode 100644 index 00000000..8406f4c8 Binary files /dev/null and b/Library/Artifacts/92/923749d03c5d2dd9ec8903d8bbfc4e45 differ diff --git a/Library/Artifacts/92/9239b5b168db45dc03f53bb3ff1bf075 b/Library/Artifacts/92/9239b5b168db45dc03f53bb3ff1bf075 new file mode 100644 index 00000000..4b32d76f Binary files /dev/null and b/Library/Artifacts/92/9239b5b168db45dc03f53bb3ff1bf075 differ diff --git a/Library/Artifacts/92/9254ea0947ba26b20fbfa607e451dfdb b/Library/Artifacts/92/9254ea0947ba26b20fbfa607e451dfdb new file mode 100644 index 00000000..d5c3402b Binary files /dev/null and b/Library/Artifacts/92/9254ea0947ba26b20fbfa607e451dfdb differ diff --git a/Library/Artifacts/92/9276c8051bb498494adca2482e3247b9 b/Library/Artifacts/92/9276c8051bb498494adca2482e3247b9 new file mode 100644 index 00000000..aba3cb3f Binary files /dev/null and b/Library/Artifacts/92/9276c8051bb498494adca2482e3247b9 differ diff --git a/Library/Artifacts/92/92f8b874c29d85be76b14950a538b6a5 b/Library/Artifacts/92/92f8b874c29d85be76b14950a538b6a5 new file mode 100644 index 00000000..66fe45a7 Binary files /dev/null and b/Library/Artifacts/92/92f8b874c29d85be76b14950a538b6a5 differ diff --git a/Library/Artifacts/93/934eedbee36d1c697a9e0f8196d6923c b/Library/Artifacts/93/934eedbee36d1c697a9e0f8196d6923c new file mode 100644 index 00000000..23688406 Binary files /dev/null and b/Library/Artifacts/93/934eedbee36d1c697a9e0f8196d6923c differ diff --git a/Library/Artifacts/93/938b36aa2be9640efc77cf8f8113d911 b/Library/Artifacts/93/938b36aa2be9640efc77cf8f8113d911 new file mode 100644 index 00000000..aa78662a Binary files /dev/null and b/Library/Artifacts/93/938b36aa2be9640efc77cf8f8113d911 differ diff --git a/Library/Artifacts/93/93ba082b8cf768ff5206629227126899 b/Library/Artifacts/93/93ba082b8cf768ff5206629227126899 new file mode 100644 index 00000000..7f0de5c3 Binary files /dev/null and b/Library/Artifacts/93/93ba082b8cf768ff5206629227126899 differ diff --git a/Library/Artifacts/93/93fa561c9281117c06d4fe543f65b091 b/Library/Artifacts/93/93fa561c9281117c06d4fe543f65b091 new file mode 100644 index 00000000..e4c363a2 Binary files /dev/null and b/Library/Artifacts/93/93fa561c9281117c06d4fe543f65b091 differ diff --git a/Library/Artifacts/94/94ed6a4acdd85b17d9724eb490c42163 b/Library/Artifacts/94/94ed6a4acdd85b17d9724eb490c42163 new file mode 100644 index 00000000..949c9efd Binary files /dev/null and b/Library/Artifacts/94/94ed6a4acdd85b17d9724eb490c42163 differ diff --git a/Library/Artifacts/95/9551d413e29750431333e7d1bcbd2dec b/Library/Artifacts/95/9551d413e29750431333e7d1bcbd2dec new file mode 100644 index 00000000..f1b21ca8 Binary files /dev/null and b/Library/Artifacts/95/9551d413e29750431333e7d1bcbd2dec differ diff --git a/Library/Artifacts/95/9579e16a8d3c87a7e249592f64e27192 b/Library/Artifacts/95/9579e16a8d3c87a7e249592f64e27192 new file mode 100644 index 00000000..4fe1745a Binary files /dev/null and b/Library/Artifacts/95/9579e16a8d3c87a7e249592f64e27192 differ diff --git a/Library/Artifacts/95/95ebe8ed7acaa385a78a2f0b14cdd3c4 b/Library/Artifacts/95/95ebe8ed7acaa385a78a2f0b14cdd3c4 new file mode 100644 index 00000000..688cb285 Binary files /dev/null and b/Library/Artifacts/95/95ebe8ed7acaa385a78a2f0b14cdd3c4 differ diff --git a/Library/Artifacts/96/9616e7b3ffd2be27cc7269d70b1178b4 b/Library/Artifacts/96/9616e7b3ffd2be27cc7269d70b1178b4 new file mode 100644 index 00000000..4c7b7459 Binary files /dev/null and b/Library/Artifacts/96/9616e7b3ffd2be27cc7269d70b1178b4 differ diff --git a/Library/Artifacts/96/965d25df6c7fab80dd09e7280f8f2352 b/Library/Artifacts/96/965d25df6c7fab80dd09e7280f8f2352 new file mode 100644 index 00000000..00f5d3cc Binary files /dev/null and b/Library/Artifacts/96/965d25df6c7fab80dd09e7280f8f2352 differ diff --git a/Library/Artifacts/96/96cf9788b262a40009afd3bddee44621 b/Library/Artifacts/96/96cf9788b262a40009afd3bddee44621 new file mode 100644 index 00000000..21dafe65 Binary files /dev/null and b/Library/Artifacts/96/96cf9788b262a40009afd3bddee44621 differ diff --git a/Library/Artifacts/97/970036a8e91fce54293eb6a136502bcc b/Library/Artifacts/97/970036a8e91fce54293eb6a136502bcc new file mode 100644 index 00000000..ae67de33 Binary files /dev/null and b/Library/Artifacts/97/970036a8e91fce54293eb6a136502bcc differ diff --git a/Library/Artifacts/97/973941337b8aa38975752e1344129ec4 b/Library/Artifacts/97/973941337b8aa38975752e1344129ec4 new file mode 100644 index 00000000..58742403 Binary files /dev/null and b/Library/Artifacts/97/973941337b8aa38975752e1344129ec4 differ diff --git a/Library/Artifacts/97/97d02edf24df8ab08a4ea7a44d4d0ef4 b/Library/Artifacts/97/97d02edf24df8ab08a4ea7a44d4d0ef4 new file mode 100644 index 00000000..efa2adb5 Binary files /dev/null and b/Library/Artifacts/97/97d02edf24df8ab08a4ea7a44d4d0ef4 differ diff --git a/Library/Artifacts/98/986cbd01ddbce61abc9c9a341026de96 b/Library/Artifacts/98/986cbd01ddbce61abc9c9a341026de96 new file mode 100644 index 00000000..de855601 Binary files /dev/null and b/Library/Artifacts/98/986cbd01ddbce61abc9c9a341026de96 differ diff --git a/Library/Artifacts/98/98b954e65a829fa1c3efc51897c8ef53 b/Library/Artifacts/98/98b954e65a829fa1c3efc51897c8ef53 new file mode 100644 index 00000000..45ee33ee Binary files /dev/null and b/Library/Artifacts/98/98b954e65a829fa1c3efc51897c8ef53 differ diff --git a/Library/Artifacts/98/98bf18050a591f9b14089103421a59a1 b/Library/Artifacts/98/98bf18050a591f9b14089103421a59a1 new file mode 100644 index 00000000..ef0bc3b5 Binary files /dev/null and b/Library/Artifacts/98/98bf18050a591f9b14089103421a59a1 differ diff --git a/Library/Artifacts/99/9972ba40d14ce9822e2a70fb87690598 b/Library/Artifacts/99/9972ba40d14ce9822e2a70fb87690598 new file mode 100644 index 00000000..be5f49d5 Binary files /dev/null and b/Library/Artifacts/99/9972ba40d14ce9822e2a70fb87690598 differ diff --git a/Library/Artifacts/9a/9a11871df77e2838d8c43f73cfd5eb39 b/Library/Artifacts/9a/9a11871df77e2838d8c43f73cfd5eb39 new file mode 100644 index 00000000..30a50891 Binary files /dev/null and b/Library/Artifacts/9a/9a11871df77e2838d8c43f73cfd5eb39 differ diff --git a/Library/Artifacts/9a/9a157623b238150c3e152185b8279e62 b/Library/Artifacts/9a/9a157623b238150c3e152185b8279e62 new file mode 100644 index 00000000..e440c7f0 Binary files /dev/null and b/Library/Artifacts/9a/9a157623b238150c3e152185b8279e62 differ diff --git a/Library/Artifacts/9a/9a72eef651b99950787dd9f259f78709 b/Library/Artifacts/9a/9a72eef651b99950787dd9f259f78709 new file mode 100644 index 00000000..c681cc57 Binary files /dev/null and b/Library/Artifacts/9a/9a72eef651b99950787dd9f259f78709 differ diff --git a/Library/Artifacts/9b/9bd336d92ab1b019585d330494e93a0b b/Library/Artifacts/9b/9bd336d92ab1b019585d330494e93a0b new file mode 100644 index 00000000..ee7ab46b Binary files /dev/null and b/Library/Artifacts/9b/9bd336d92ab1b019585d330494e93a0b differ diff --git a/Library/Artifacts/9c/9c0da304b11476a988a9021483392aaf b/Library/Artifacts/9c/9c0da304b11476a988a9021483392aaf new file mode 100644 index 00000000..ef2ce87f Binary files /dev/null and b/Library/Artifacts/9c/9c0da304b11476a988a9021483392aaf differ diff --git a/Library/Artifacts/9c/9c3fde7afdf16f0fb4fa02fe178481e4 b/Library/Artifacts/9c/9c3fde7afdf16f0fb4fa02fe178481e4 new file mode 100644 index 00000000..4c131c31 Binary files /dev/null and b/Library/Artifacts/9c/9c3fde7afdf16f0fb4fa02fe178481e4 differ diff --git a/Library/Artifacts/9f/9f2c2fb58a06a3cb7515a4582a74af8d b/Library/Artifacts/9f/9f2c2fb58a06a3cb7515a4582a74af8d new file mode 100644 index 00000000..91e19efd Binary files /dev/null and b/Library/Artifacts/9f/9f2c2fb58a06a3cb7515a4582a74af8d differ diff --git a/Library/Artifacts/9f/9f3c436b34ff2a72a748f3111d9d4748 b/Library/Artifacts/9f/9f3c436b34ff2a72a748f3111d9d4748 new file mode 100644 index 00000000..38b5d347 Binary files /dev/null and b/Library/Artifacts/9f/9f3c436b34ff2a72a748f3111d9d4748 differ diff --git a/Library/Artifacts/9f/9fb9d5e03afabc989f9ef9cd804b6f32 b/Library/Artifacts/9f/9fb9d5e03afabc989f9ef9cd804b6f32 new file mode 100644 index 00000000..6193fa46 Binary files /dev/null and b/Library/Artifacts/9f/9fb9d5e03afabc989f9ef9cd804b6f32 differ diff --git a/Library/Artifacts/9f/9fc4715ba59d14f44c7292702a84d720 b/Library/Artifacts/9f/9fc4715ba59d14f44c7292702a84d720 new file mode 100644 index 00000000..59e31a37 Binary files /dev/null and b/Library/Artifacts/9f/9fc4715ba59d14f44c7292702a84d720 differ diff --git a/Library/Artifacts/a0/a01098adf3298edd7913623af9cc2dda b/Library/Artifacts/a0/a01098adf3298edd7913623af9cc2dda new file mode 100644 index 00000000..d813f687 Binary files /dev/null and b/Library/Artifacts/a0/a01098adf3298edd7913623af9cc2dda differ diff --git a/Library/Artifacts/a0/a0d97f8a51fb494a9dab2e609939b98e b/Library/Artifacts/a0/a0d97f8a51fb494a9dab2e609939b98e new file mode 100644 index 00000000..1bf37a06 Binary files /dev/null and b/Library/Artifacts/a0/a0d97f8a51fb494a9dab2e609939b98e differ diff --git a/Library/Artifacts/55/551f82a394284ce4444b79f47d90b590 b/Library/Artifacts/a0/a0ebc6d056617a4fd8fdc521b1110982 similarity index 98% rename from Library/Artifacts/55/551f82a394284ce4444b79f47d90b590 rename to Library/Artifacts/a0/a0ebc6d056617a4fd8fdc521b1110982 index 9ac3621f..63e616c5 100644 Binary files a/Library/Artifacts/55/551f82a394284ce4444b79f47d90b590 and b/Library/Artifacts/a0/a0ebc6d056617a4fd8fdc521b1110982 differ diff --git a/Library/Artifacts/a1/a118d238d56efdeb5446939e54b8ca47 b/Library/Artifacts/a1/a118d238d56efdeb5446939e54b8ca47 new file mode 100644 index 00000000..bf857c1c Binary files /dev/null and b/Library/Artifacts/a1/a118d238d56efdeb5446939e54b8ca47 differ diff --git a/Library/Artifacts/a1/a13b4c42c465a2be000891ae3164f7b9 b/Library/Artifacts/a1/a13b4c42c465a2be000891ae3164f7b9 new file mode 100644 index 00000000..3b5cdca2 Binary files /dev/null and b/Library/Artifacts/a1/a13b4c42c465a2be000891ae3164f7b9 differ diff --git a/Library/Artifacts/a2/a2270a7efae7b433aa572e1eedc5bef4 b/Library/Artifacts/a2/a2270a7efae7b433aa572e1eedc5bef4 new file mode 100644 index 00000000..99e79dd7 Binary files /dev/null and b/Library/Artifacts/a2/a2270a7efae7b433aa572e1eedc5bef4 differ diff --git a/Library/Artifacts/a2/a260a791ef387169e0e55c9887d14a78 b/Library/Artifacts/a2/a260a791ef387169e0e55c9887d14a78 new file mode 100644 index 00000000..7ad42088 Binary files /dev/null and b/Library/Artifacts/a2/a260a791ef387169e0e55c9887d14a78 differ diff --git a/Library/Artifacts/a2/a2f76b9b3d39550148cefb68dd9acf51 b/Library/Artifacts/a2/a2f76b9b3d39550148cefb68dd9acf51 new file mode 100644 index 00000000..3a86a73f Binary files /dev/null and b/Library/Artifacts/a2/a2f76b9b3d39550148cefb68dd9acf51 differ diff --git a/Library/Artifacts/a3/a3882fb9fca7c78f20513da5c4d64edd b/Library/Artifacts/a3/a3882fb9fca7c78f20513da5c4d64edd new file mode 100644 index 00000000..d95167c2 Binary files /dev/null and b/Library/Artifacts/a3/a3882fb9fca7c78f20513da5c4d64edd differ diff --git a/Library/Artifacts/a3/a38cb6a069b65f9406c4f8c4b130de76 b/Library/Artifacts/a3/a38cb6a069b65f9406c4f8c4b130de76 new file mode 100644 index 00000000..100511ed Binary files /dev/null and b/Library/Artifacts/a3/a38cb6a069b65f9406c4f8c4b130de76 differ diff --git a/Library/Artifacts/a3/a39e7eb3b2bb4b03ff377f584626b2cb b/Library/Artifacts/a3/a39e7eb3b2bb4b03ff377f584626b2cb new file mode 100644 index 00000000..4fad41c3 Binary files /dev/null and b/Library/Artifacts/a3/a39e7eb3b2bb4b03ff377f584626b2cb differ diff --git a/Library/Artifacts/a4/a420657f9786e78f7e0d16b1791a9658 b/Library/Artifacts/a4/a420657f9786e78f7e0d16b1791a9658 new file mode 100644 index 00000000..7d8a5a95 Binary files /dev/null and b/Library/Artifacts/a4/a420657f9786e78f7e0d16b1791a9658 differ diff --git a/Library/Artifacts/a4/a45e3d9486d0a0453a11c0d7f531f4a2 b/Library/Artifacts/a4/a45e3d9486d0a0453a11c0d7f531f4a2 new file mode 100644 index 00000000..ac66853c Binary files /dev/null and b/Library/Artifacts/a4/a45e3d9486d0a0453a11c0d7f531f4a2 differ diff --git a/Library/Artifacts/a4/a4b02f0fc7a38ffe5c9877f90267bacc b/Library/Artifacts/a4/a4b02f0fc7a38ffe5c9877f90267bacc new file mode 100644 index 00000000..7f8a8cf2 Binary files /dev/null and b/Library/Artifacts/a4/a4b02f0fc7a38ffe5c9877f90267bacc differ diff --git a/Library/Artifacts/a4/a4cecc1a295da0e63a9d3da7b6b4db50 b/Library/Artifacts/a4/a4cecc1a295da0e63a9d3da7b6b4db50 new file mode 100644 index 00000000..d1a90957 Binary files /dev/null and b/Library/Artifacts/a4/a4cecc1a295da0e63a9d3da7b6b4db50 differ diff --git a/Library/Artifacts/a5/a50e94c09c834206a5ae4b9908a216cc b/Library/Artifacts/a5/a50e94c09c834206a5ae4b9908a216cc new file mode 100644 index 00000000..c28b8377 Binary files /dev/null and b/Library/Artifacts/a5/a50e94c09c834206a5ae4b9908a216cc differ diff --git a/Library/Artifacts/a6/a6a9997ae41a3277b6b7c18e90659640 b/Library/Artifacts/a6/a6a9997ae41a3277b6b7c18e90659640 new file mode 100644 index 00000000..5353b199 Binary files /dev/null and b/Library/Artifacts/a6/a6a9997ae41a3277b6b7c18e90659640 differ diff --git a/Library/Artifacts/a6/a6df53c29064504739bcd9793a50e69a b/Library/Artifacts/a6/a6df53c29064504739bcd9793a50e69a new file mode 100644 index 00000000..0fd486ea Binary files /dev/null and b/Library/Artifacts/a6/a6df53c29064504739bcd9793a50e69a differ diff --git a/Library/Artifacts/a6/a6f49f0200da3ffe0abfafdab7c81d87 b/Library/Artifacts/a6/a6f49f0200da3ffe0abfafdab7c81d87 new file mode 100644 index 00000000..e745c21c Binary files /dev/null and b/Library/Artifacts/a6/a6f49f0200da3ffe0abfafdab7c81d87 differ diff --git a/Library/Artifacts/a7/a71f611618aabdb155f78b41e41aa563 b/Library/Artifacts/a7/a71f611618aabdb155f78b41e41aa563 new file mode 100644 index 00000000..70534270 Binary files /dev/null and b/Library/Artifacts/a7/a71f611618aabdb155f78b41e41aa563 differ diff --git a/Library/Artifacts/a7/a7270e348ea91a28fef981a49985693d b/Library/Artifacts/a7/a7270e348ea91a28fef981a49985693d new file mode 100644 index 00000000..6a1c393f Binary files /dev/null and b/Library/Artifacts/a7/a7270e348ea91a28fef981a49985693d differ diff --git a/Library/Artifacts/a7/a729852311a25ef19851508a94bd9f0b b/Library/Artifacts/a7/a729852311a25ef19851508a94bd9f0b new file mode 100644 index 00000000..d0a07131 Binary files /dev/null and b/Library/Artifacts/a7/a729852311a25ef19851508a94bd9f0b differ diff --git a/Library/Artifacts/a7/a761c20934ad12cedb46ced35b37ed84 b/Library/Artifacts/a7/a761c20934ad12cedb46ced35b37ed84 new file mode 100644 index 00000000..d1476eb0 Binary files /dev/null and b/Library/Artifacts/a7/a761c20934ad12cedb46ced35b37ed84 differ diff --git a/Library/Artifacts/a7/a7f9b1c5ff4d69b3776490f2ce4a9a9d b/Library/Artifacts/a7/a7f9b1c5ff4d69b3776490f2ce4a9a9d new file mode 100644 index 00000000..cccbe658 Binary files /dev/null and b/Library/Artifacts/a7/a7f9b1c5ff4d69b3776490f2ce4a9a9d differ diff --git a/Library/Artifacts/a8/a86ea89d6c7980ab0bd50b35d3dce477 b/Library/Artifacts/a8/a86ea89d6c7980ab0bd50b35d3dce477 new file mode 100644 index 00000000..2000d73f Binary files /dev/null and b/Library/Artifacts/a8/a86ea89d6c7980ab0bd50b35d3dce477 differ diff --git a/Library/Artifacts/a8/a8b99774a64d93874ceac42eaf438478 b/Library/Artifacts/a8/a8b99774a64d93874ceac42eaf438478 new file mode 100644 index 00000000..e00e7647 Binary files /dev/null and b/Library/Artifacts/a8/a8b99774a64d93874ceac42eaf438478 differ diff --git a/Library/Artifacts/a9/a9bff64ff890762c8ccb7f4009453c36 b/Library/Artifacts/a9/a9bff64ff890762c8ccb7f4009453c36 new file mode 100644 index 00000000..8f0f877e Binary files /dev/null and b/Library/Artifacts/a9/a9bff64ff890762c8ccb7f4009453c36 differ diff --git a/Library/Artifacts/a9/a9c83e53c7a0c70f45954f09fc6515ea b/Library/Artifacts/a9/a9c83e53c7a0c70f45954f09fc6515ea new file mode 100644 index 00000000..22721fcf Binary files /dev/null and b/Library/Artifacts/a9/a9c83e53c7a0c70f45954f09fc6515ea differ diff --git a/Library/Artifacts/aa/aaa7c96334651a1121e14e63c009aec5 b/Library/Artifacts/aa/aaa7c96334651a1121e14e63c009aec5 new file mode 100644 index 00000000..76a6f7da Binary files /dev/null and b/Library/Artifacts/aa/aaa7c96334651a1121e14e63c009aec5 differ diff --git a/Library/Artifacts/aa/aacd71d5c4487f212312659fdbdb9d66 b/Library/Artifacts/aa/aacd71d5c4487f212312659fdbdb9d66 new file mode 100644 index 00000000..e7842d62 Binary files /dev/null and b/Library/Artifacts/aa/aacd71d5c4487f212312659fdbdb9d66 differ diff --git a/Library/Artifacts/ab/ab04fde7591b688d2117b1f46a7065d0 b/Library/Artifacts/ab/ab04fde7591b688d2117b1f46a7065d0 new file mode 100644 index 00000000..467861a7 Binary files /dev/null and b/Library/Artifacts/ab/ab04fde7591b688d2117b1f46a7065d0 differ diff --git a/Library/Artifacts/ab/ab1758d545dda09537f1ff3d1f7fd978 b/Library/Artifacts/ab/ab1758d545dda09537f1ff3d1f7fd978 new file mode 100644 index 00000000..1ec553a1 Binary files /dev/null and b/Library/Artifacts/ab/ab1758d545dda09537f1ff3d1f7fd978 differ diff --git a/Library/Artifacts/ab/abd9f0a37d22bbd8b2ee0e7123dbac08 b/Library/Artifacts/ab/abd9f0a37d22bbd8b2ee0e7123dbac08 new file mode 100644 index 00000000..9d4cae78 Binary files /dev/null and b/Library/Artifacts/ab/abd9f0a37d22bbd8b2ee0e7123dbac08 differ diff --git a/Library/Artifacts/ac/ac45dc01329ecc90379984ca24f095ad b/Library/Artifacts/ac/ac45dc01329ecc90379984ca24f095ad new file mode 100644 index 00000000..252fb475 Binary files /dev/null and b/Library/Artifacts/ac/ac45dc01329ecc90379984ca24f095ad differ diff --git a/Library/Artifacts/ad/ad2b0f5e4f1e152d03014978728e2d61 b/Library/Artifacts/ad/ad2b0f5e4f1e152d03014978728e2d61 new file mode 100644 index 00000000..8b9e470e Binary files /dev/null and b/Library/Artifacts/ad/ad2b0f5e4f1e152d03014978728e2d61 differ diff --git a/Library/Artifacts/ae/ae204855395f129899a6099c221cd662 b/Library/Artifacts/ae/ae204855395f129899a6099c221cd662 new file mode 100644 index 00000000..f2aa0fad Binary files /dev/null and b/Library/Artifacts/ae/ae204855395f129899a6099c221cd662 differ diff --git a/Library/Artifacts/ae/ae63e729d18502dbf1ae9b7fc0671e44 b/Library/Artifacts/ae/ae63e729d18502dbf1ae9b7fc0671e44 new file mode 100644 index 00000000..b4686953 Binary files /dev/null and b/Library/Artifacts/ae/ae63e729d18502dbf1ae9b7fc0671e44 differ diff --git a/Library/Artifacts/ae/aefede7184ed76503e8d72293b65d729 b/Library/Artifacts/ae/aefede7184ed76503e8d72293b65d729 new file mode 100644 index 00000000..d368c65b Binary files /dev/null and b/Library/Artifacts/ae/aefede7184ed76503e8d72293b65d729 differ diff --git a/Library/Artifacts/af/af70cb8bd5bc79df304e99031436785c b/Library/Artifacts/af/af70cb8bd5bc79df304e99031436785c new file mode 100644 index 00000000..654d0fdc Binary files /dev/null and b/Library/Artifacts/af/af70cb8bd5bc79df304e99031436785c differ diff --git a/Library/Artifacts/af/afa5cd873084f6da8aa5f18f5a272b7d b/Library/Artifacts/af/afa5cd873084f6da8aa5f18f5a272b7d new file mode 100644 index 00000000..2e600da8 Binary files /dev/null and b/Library/Artifacts/af/afa5cd873084f6da8aa5f18f5a272b7d differ diff --git a/Library/Artifacts/b0/b0262b76ed6ef049fc4c1408a7c80818 b/Library/Artifacts/b0/b0262b76ed6ef049fc4c1408a7c80818 new file mode 100644 index 00000000..26ead0ae Binary files /dev/null and b/Library/Artifacts/b0/b0262b76ed6ef049fc4c1408a7c80818 differ diff --git a/Library/Artifacts/b0/b0555a1eddf7029a7ec2fb86e67c2dbf b/Library/Artifacts/b0/b0555a1eddf7029a7ec2fb86e67c2dbf new file mode 100644 index 00000000..dfef3d07 Binary files /dev/null and b/Library/Artifacts/b0/b0555a1eddf7029a7ec2fb86e67c2dbf differ diff --git a/Library/Artifacts/b0/b0672d568ddae164d897828135502dd6 b/Library/Artifacts/b0/b0672d568ddae164d897828135502dd6 new file mode 100644 index 00000000..4b8ed76a Binary files /dev/null and b/Library/Artifacts/b0/b0672d568ddae164d897828135502dd6 differ diff --git a/Library/Artifacts/b0/b0a1d67b508f960458476be76c9457d1 b/Library/Artifacts/b0/b0a1d67b508f960458476be76c9457d1 new file mode 100644 index 00000000..51560fdb Binary files /dev/null and b/Library/Artifacts/b0/b0a1d67b508f960458476be76c9457d1 differ diff --git a/Library/Artifacts/b0/b0ade6bb0d4df38aa77e2a0c504d840f b/Library/Artifacts/b0/b0ade6bb0d4df38aa77e2a0c504d840f new file mode 100644 index 00000000..cdc35cc2 Binary files /dev/null and b/Library/Artifacts/b0/b0ade6bb0d4df38aa77e2a0c504d840f differ diff --git a/Library/Artifacts/b1/b109f3f4009bff58b05cec34483157f8 b/Library/Artifacts/b1/b109f3f4009bff58b05cec34483157f8 new file mode 100644 index 00000000..cd3d66cc Binary files /dev/null and b/Library/Artifacts/b1/b109f3f4009bff58b05cec34483157f8 differ diff --git a/Library/Artifacts/b1/b154965e992c552ca3909db22b104d45 b/Library/Artifacts/b1/b154965e992c552ca3909db22b104d45 new file mode 100644 index 00000000..9beb8467 Binary files /dev/null and b/Library/Artifacts/b1/b154965e992c552ca3909db22b104d45 differ diff --git a/Library/Artifacts/b1/b1f1aed211914e52328acd53fd867aa3 b/Library/Artifacts/b1/b1f1aed211914e52328acd53fd867aa3 new file mode 100644 index 00000000..9985fca9 Binary files /dev/null and b/Library/Artifacts/b1/b1f1aed211914e52328acd53fd867aa3 differ diff --git a/Library/Artifacts/b2/b28d226729c38f8a27ebbdfbc22ea629 b/Library/Artifacts/b2/b28d226729c38f8a27ebbdfbc22ea629 new file mode 100644 index 00000000..3c6b7469 Binary files /dev/null and b/Library/Artifacts/b2/b28d226729c38f8a27ebbdfbc22ea629 differ diff --git a/Library/Artifacts/b2/b29e7174f99b398378da2b4c5e0efeda b/Library/Artifacts/b2/b29e7174f99b398378da2b4c5e0efeda new file mode 100644 index 00000000..fd777dbd Binary files /dev/null and b/Library/Artifacts/b2/b29e7174f99b398378da2b4c5e0efeda differ diff --git a/Library/Artifacts/b2/b2acc7cbca470adb99203b8a0f5f5073 b/Library/Artifacts/b2/b2acc7cbca470adb99203b8a0f5f5073 new file mode 100644 index 00000000..6529aa07 Binary files /dev/null and b/Library/Artifacts/b2/b2acc7cbca470adb99203b8a0f5f5073 differ diff --git a/Library/Artifacts/b2/b2f1fd993f5669abbb809846de2271a6 b/Library/Artifacts/b2/b2f1fd993f5669abbb809846de2271a6 new file mode 100644 index 00000000..61223fed Binary files /dev/null and b/Library/Artifacts/b2/b2f1fd993f5669abbb809846de2271a6 differ diff --git a/Library/Artifacts/b3/b31be433462b0b0dc5cd92d4cdc3df15 b/Library/Artifacts/b3/b31be433462b0b0dc5cd92d4cdc3df15 new file mode 100644 index 00000000..1211d8c0 Binary files /dev/null and b/Library/Artifacts/b3/b31be433462b0b0dc5cd92d4cdc3df15 differ diff --git a/Library/Artifacts/b3/b354ce67c406165884ef1806b5cbad4e b/Library/Artifacts/b3/b354ce67c406165884ef1806b5cbad4e new file mode 100644 index 00000000..4987099f Binary files /dev/null and b/Library/Artifacts/b3/b354ce67c406165884ef1806b5cbad4e differ diff --git a/Library/Artifacts/b3/b36e7b659440b027a978b6a5a09bec37 b/Library/Artifacts/b3/b36e7b659440b027a978b6a5a09bec37 new file mode 100644 index 00000000..4eb0dd68 Binary files /dev/null and b/Library/Artifacts/b3/b36e7b659440b027a978b6a5a09bec37 differ diff --git a/Library/Artifacts/b3/b3a717ee99f27e6ae704132fa4ce7827 b/Library/Artifacts/b3/b3a717ee99f27e6ae704132fa4ce7827 new file mode 100644 index 00000000..0506e155 Binary files /dev/null and b/Library/Artifacts/b3/b3a717ee99f27e6ae704132fa4ce7827 differ diff --git a/Library/Artifacts/b3/b3d1c84fb05d68d58a652f5195754d6e b/Library/Artifacts/b3/b3d1c84fb05d68d58a652f5195754d6e new file mode 100644 index 00000000..925de7ed Binary files /dev/null and b/Library/Artifacts/b3/b3d1c84fb05d68d58a652f5195754d6e differ diff --git a/Library/Artifacts/b4/b42aba8c8423e4d7776780b34f260ec6 b/Library/Artifacts/b4/b42aba8c8423e4d7776780b34f260ec6 new file mode 100644 index 00000000..8c135c1e Binary files /dev/null and b/Library/Artifacts/b4/b42aba8c8423e4d7776780b34f260ec6 differ diff --git a/Library/Artifacts/b4/b44cd8feba6db2750060cbbf0d38bdf4 b/Library/Artifacts/b4/b44cd8feba6db2750060cbbf0d38bdf4 new file mode 100644 index 00000000..c6f9ffe9 Binary files /dev/null and b/Library/Artifacts/b4/b44cd8feba6db2750060cbbf0d38bdf4 differ diff --git a/Library/Artifacts/b4/b461558e2741d7dc9509f98c7288c589 b/Library/Artifacts/b4/b461558e2741d7dc9509f98c7288c589 new file mode 100644 index 00000000..931951a7 Binary files /dev/null and b/Library/Artifacts/b4/b461558e2741d7dc9509f98c7288c589 differ diff --git a/Library/Artifacts/b4/b4c426a7876f409e5fffcc68312b5b28 b/Library/Artifacts/b4/b4c426a7876f409e5fffcc68312b5b28 new file mode 100644 index 00000000..30bd2fba Binary files /dev/null and b/Library/Artifacts/b4/b4c426a7876f409e5fffcc68312b5b28 differ diff --git a/Library/Artifacts/b5/b508ac4a69801b29cf6bb89fb4adbcca b/Library/Artifacts/b5/b508ac4a69801b29cf6bb89fb4adbcca new file mode 100644 index 00000000..42ff4d01 Binary files /dev/null and b/Library/Artifacts/b5/b508ac4a69801b29cf6bb89fb4adbcca differ diff --git a/Library/Artifacts/b5/b5f079756b595655a3b6a73a3828a4d9 b/Library/Artifacts/b5/b5f079756b595655a3b6a73a3828a4d9 new file mode 100644 index 00000000..4b302c3d Binary files /dev/null and b/Library/Artifacts/b5/b5f079756b595655a3b6a73a3828a4d9 differ diff --git a/Library/Artifacts/b7/b742ec3a2c73222910fc9901aea437a8 b/Library/Artifacts/b7/b742ec3a2c73222910fc9901aea437a8 new file mode 100644 index 00000000..73efd0bb Binary files /dev/null and b/Library/Artifacts/b7/b742ec3a2c73222910fc9901aea437a8 differ diff --git a/Library/Artifacts/b7/b74e2c1337857c12daec128296f7d569 b/Library/Artifacts/b7/b74e2c1337857c12daec128296f7d569 new file mode 100644 index 00000000..cfbb55b0 Binary files /dev/null and b/Library/Artifacts/b7/b74e2c1337857c12daec128296f7d569 differ diff --git a/Library/Artifacts/b8/b80b81caddbb4c760b12fd11feb2348e b/Library/Artifacts/b8/b80b81caddbb4c760b12fd11feb2348e new file mode 100644 index 00000000..033f8af0 Binary files /dev/null and b/Library/Artifacts/b8/b80b81caddbb4c760b12fd11feb2348e differ diff --git a/Library/Artifacts/b8/b81d659cae0df4e4ddda634543a54655 b/Library/Artifacts/b8/b81d659cae0df4e4ddda634543a54655 new file mode 100644 index 00000000..a41ab890 Binary files /dev/null and b/Library/Artifacts/b8/b81d659cae0df4e4ddda634543a54655 differ diff --git a/Library/Artifacts/b8/b82e09549f6cf66aee2133f63ebe3bac b/Library/Artifacts/b8/b82e09549f6cf66aee2133f63ebe3bac new file mode 100644 index 00000000..8c66db58 Binary files /dev/null and b/Library/Artifacts/b8/b82e09549f6cf66aee2133f63ebe3bac differ diff --git a/Library/Artifacts/b8/b8642df6b4876550c6577ba8ce4b2641 b/Library/Artifacts/b8/b8642df6b4876550c6577ba8ce4b2641 new file mode 100644 index 00000000..247c35ec Binary files /dev/null and b/Library/Artifacts/b8/b8642df6b4876550c6577ba8ce4b2641 differ diff --git a/Library/Artifacts/b8/b8c3e68adc9b210a620eb0fe9aaa1d69 b/Library/Artifacts/b8/b8c3e68adc9b210a620eb0fe9aaa1d69 new file mode 100644 index 00000000..50788f00 Binary files /dev/null and b/Library/Artifacts/b8/b8c3e68adc9b210a620eb0fe9aaa1d69 differ diff --git a/Library/Artifacts/b8/b8fccada97f47be74096be65c4c62b13 b/Library/Artifacts/b8/b8fccada97f47be74096be65c4c62b13 new file mode 100644 index 00000000..4f2d67a7 Binary files /dev/null and b/Library/Artifacts/b8/b8fccada97f47be74096be65c4c62b13 differ diff --git a/Library/Artifacts/ba/ba53760a9622ba8586f43b7295a768fd b/Library/Artifacts/ba/ba53760a9622ba8586f43b7295a768fd new file mode 100644 index 00000000..9be53a04 Binary files /dev/null and b/Library/Artifacts/ba/ba53760a9622ba8586f43b7295a768fd differ diff --git a/Library/Artifacts/ba/ba593b672b3ba2f8e4b04dd0e43650de b/Library/Artifacts/ba/ba593b672b3ba2f8e4b04dd0e43650de new file mode 100644 index 00000000..eac0b16d Binary files /dev/null and b/Library/Artifacts/ba/ba593b672b3ba2f8e4b04dd0e43650de differ diff --git a/Library/Artifacts/ba/ba5f50c5b1c9eb7a5c83a4c6d8533fee b/Library/Artifacts/ba/ba5f50c5b1c9eb7a5c83a4c6d8533fee new file mode 100644 index 00000000..59769e3c Binary files /dev/null and b/Library/Artifacts/ba/ba5f50c5b1c9eb7a5c83a4c6d8533fee differ diff --git a/Library/Artifacts/bb/bbf59d585f594816ab24f57174ae4f6c b/Library/Artifacts/bb/bbf59d585f594816ab24f57174ae4f6c new file mode 100644 index 00000000..bf4f4b63 Binary files /dev/null and b/Library/Artifacts/bb/bbf59d585f594816ab24f57174ae4f6c differ diff --git a/Library/Artifacts/bc/bc0e481d8813c93aa3050f7033ec67e4 b/Library/Artifacts/bc/bc0e481d8813c93aa3050f7033ec67e4 new file mode 100644 index 00000000..bf591fc1 Binary files /dev/null and b/Library/Artifacts/bc/bc0e481d8813c93aa3050f7033ec67e4 differ diff --git a/Library/Artifacts/bc/bc11c2c530a832e25c4e6f860a75bf26 b/Library/Artifacts/bc/bc11c2c530a832e25c4e6f860a75bf26 new file mode 100644 index 00000000..463f1d51 Binary files /dev/null and b/Library/Artifacts/bc/bc11c2c530a832e25c4e6f860a75bf26 differ diff --git a/Library/Artifacts/bc/bc7cd40f04cddc646d9171422498fde4 b/Library/Artifacts/bc/bc7cd40f04cddc646d9171422498fde4 new file mode 100644 index 00000000..914e11c5 Binary files /dev/null and b/Library/Artifacts/bc/bc7cd40f04cddc646d9171422498fde4 differ diff --git a/Library/Artifacts/bc/bcc43cb91beda2dd2b06b04713229506 b/Library/Artifacts/bc/bcc43cb91beda2dd2b06b04713229506 new file mode 100644 index 00000000..8d4e02ea Binary files /dev/null and b/Library/Artifacts/bc/bcc43cb91beda2dd2b06b04713229506 differ diff --git a/Library/Artifacts/bf/bfbaea33ff6735c20601887da39824df b/Library/Artifacts/bf/bfbaea33ff6735c20601887da39824df new file mode 100644 index 00000000..cf3f115a Binary files /dev/null and b/Library/Artifacts/bf/bfbaea33ff6735c20601887da39824df differ diff --git a/Library/Artifacts/c0/c07f94c35b0bfad6d3030d7cb2145482 b/Library/Artifacts/c0/c07f94c35b0bfad6d3030d7cb2145482 new file mode 100644 index 00000000..61f50176 Binary files /dev/null and b/Library/Artifacts/c0/c07f94c35b0bfad6d3030d7cb2145482 differ diff --git a/Library/Artifacts/c1/c138f9ddea36630ff8d6e21e63aec3dd b/Library/Artifacts/c1/c138f9ddea36630ff8d6e21e63aec3dd new file mode 100644 index 00000000..acb5c2e6 Binary files /dev/null and b/Library/Artifacts/c1/c138f9ddea36630ff8d6e21e63aec3dd differ diff --git a/Library/Artifacts/c1/c15dae3a10ba5f2b6e93433a8beb91b2 b/Library/Artifacts/c1/c15dae3a10ba5f2b6e93433a8beb91b2 new file mode 100644 index 00000000..867c66bf Binary files /dev/null and b/Library/Artifacts/c1/c15dae3a10ba5f2b6e93433a8beb91b2 differ diff --git a/Library/Artifacts/c1/c17729f2810109a4171ac6f247e66de3 b/Library/Artifacts/c1/c17729f2810109a4171ac6f247e66de3 new file mode 100644 index 00000000..efc23797 Binary files /dev/null and b/Library/Artifacts/c1/c17729f2810109a4171ac6f247e66de3 differ diff --git a/Library/Artifacts/c1/c18d5f460ad370a2219303c73f9d1b7a b/Library/Artifacts/c1/c18d5f460ad370a2219303c73f9d1b7a new file mode 100644 index 00000000..3ca6c562 Binary files /dev/null and b/Library/Artifacts/c1/c18d5f460ad370a2219303c73f9d1b7a differ diff --git a/Library/Artifacts/c3/c30e9bde73949d95909875c1782f35f4 b/Library/Artifacts/c3/c30e9bde73949d95909875c1782f35f4 new file mode 100644 index 00000000..c24f1edb Binary files /dev/null and b/Library/Artifacts/c3/c30e9bde73949d95909875c1782f35f4 differ diff --git a/Library/Artifacts/c4/c412380619b8ae37da59c1985f19453c b/Library/Artifacts/c4/c412380619b8ae37da59c1985f19453c new file mode 100644 index 00000000..97ef791f Binary files /dev/null and b/Library/Artifacts/c4/c412380619b8ae37da59c1985f19453c differ diff --git a/Library/Artifacts/c4/c41604045ef4a07cef0578191964d8fe b/Library/Artifacts/c4/c41604045ef4a07cef0578191964d8fe new file mode 100644 index 00000000..4598d616 Binary files /dev/null and b/Library/Artifacts/c4/c41604045ef4a07cef0578191964d8fe differ diff --git a/Library/Artifacts/c4/c4b2460ffcb90a1d6d15169c4ba125f8 b/Library/Artifacts/c4/c4b2460ffcb90a1d6d15169c4ba125f8 new file mode 100644 index 00000000..d22d1bc9 Binary files /dev/null and b/Library/Artifacts/c4/c4b2460ffcb90a1d6d15169c4ba125f8 differ diff --git a/Library/Artifacts/c4/c4bcfa6968c92a3eccfe23ce0887c139 b/Library/Artifacts/c4/c4bcfa6968c92a3eccfe23ce0887c139 new file mode 100644 index 00000000..9ff5d42b Binary files /dev/null and b/Library/Artifacts/c4/c4bcfa6968c92a3eccfe23ce0887c139 differ diff --git a/Library/Artifacts/c4/c4f787f532adea6b7bf5aeea29c76424 b/Library/Artifacts/c4/c4f787f532adea6b7bf5aeea29c76424 new file mode 100644 index 00000000..0f69c8b0 Binary files /dev/null and b/Library/Artifacts/c4/c4f787f532adea6b7bf5aeea29c76424 differ diff --git a/Library/Artifacts/c5/c5c8d202ac1a9220e7c65b575a9897c6 b/Library/Artifacts/c5/c5c8d202ac1a9220e7c65b575a9897c6 new file mode 100644 index 00000000..48ede4c5 Binary files /dev/null and b/Library/Artifacts/c5/c5c8d202ac1a9220e7c65b575a9897c6 differ diff --git a/Library/Artifacts/c5/c5cfa0b3661363f1bbb2426ba6b57662 b/Library/Artifacts/c5/c5cfa0b3661363f1bbb2426ba6b57662 new file mode 100644 index 00000000..0f54d912 Binary files /dev/null and b/Library/Artifacts/c5/c5cfa0b3661363f1bbb2426ba6b57662 differ diff --git a/Library/Artifacts/c5/c5ee09c314f817e7caffc0481fe3adb9 b/Library/Artifacts/c5/c5ee09c314f817e7caffc0481fe3adb9 new file mode 100644 index 00000000..b6fcbafd Binary files /dev/null and b/Library/Artifacts/c5/c5ee09c314f817e7caffc0481fe3adb9 differ diff --git a/Library/Artifacts/c6/c6320decccdac8b6b069c50d8e5a1a05 b/Library/Artifacts/c6/c6320decccdac8b6b069c50d8e5a1a05 new file mode 100644 index 00000000..7f1a9b9e Binary files /dev/null and b/Library/Artifacts/c6/c6320decccdac8b6b069c50d8e5a1a05 differ diff --git a/Library/Artifacts/c6/c64486a85ae2cdfb021963fd2ab1ffe6 b/Library/Artifacts/c6/c64486a85ae2cdfb021963fd2ab1ffe6 new file mode 100644 index 00000000..5539152d Binary files /dev/null and b/Library/Artifacts/c6/c64486a85ae2cdfb021963fd2ab1ffe6 differ diff --git a/Library/Artifacts/c6/c67cce39876249d9179b07e6fe81f1c4 b/Library/Artifacts/c6/c67cce39876249d9179b07e6fe81f1c4 new file mode 100644 index 00000000..d4be4356 Binary files /dev/null and b/Library/Artifacts/c6/c67cce39876249d9179b07e6fe81f1c4 differ diff --git a/Library/Artifacts/c7/c7743227413eeade4208353990bf0f14 b/Library/Artifacts/c7/c7743227413eeade4208353990bf0f14 new file mode 100644 index 00000000..8093f689 Binary files /dev/null and b/Library/Artifacts/c7/c7743227413eeade4208353990bf0f14 differ diff --git a/Library/Artifacts/c7/c7976c15409532a95143cf33bc448bcd b/Library/Artifacts/c7/c7976c15409532a95143cf33bc448bcd new file mode 100644 index 00000000..9564de0e Binary files /dev/null and b/Library/Artifacts/c7/c7976c15409532a95143cf33bc448bcd differ diff --git a/Library/Artifacts/c8/c8444551f248049ba908a5433dcef47c b/Library/Artifacts/c8/c8444551f248049ba908a5433dcef47c new file mode 100644 index 00000000..abd48d0c Binary files /dev/null and b/Library/Artifacts/c8/c8444551f248049ba908a5433dcef47c differ diff --git a/Library/Artifacts/c8/c84b3334842457fbf5cfd90af1d4314a b/Library/Artifacts/c8/c84b3334842457fbf5cfd90af1d4314a new file mode 100644 index 00000000..d6aec87f Binary files /dev/null and b/Library/Artifacts/c8/c84b3334842457fbf5cfd90af1d4314a differ diff --git a/Library/Artifacts/c9/c92c4a634b30beb05e46da876cce5c68 b/Library/Artifacts/c9/c92c4a634b30beb05e46da876cce5c68 new file mode 100644 index 00000000..d3c5874e Binary files /dev/null and b/Library/Artifacts/c9/c92c4a634b30beb05e46da876cce5c68 differ diff --git a/Library/Artifacts/c9/c9913e1a003bbfc374eb794d9245a616 b/Library/Artifacts/c9/c9913e1a003bbfc374eb794d9245a616 new file mode 100644 index 00000000..e1087d60 Binary files /dev/null and b/Library/Artifacts/c9/c9913e1a003bbfc374eb794d9245a616 differ diff --git a/Library/Artifacts/c9/c9db660ae717611d9433b066f41bc6e8 b/Library/Artifacts/c9/c9db660ae717611d9433b066f41bc6e8 new file mode 100644 index 00000000..87da14c3 Binary files /dev/null and b/Library/Artifacts/c9/c9db660ae717611d9433b066f41bc6e8 differ diff --git a/Library/Artifacts/c9/c9dfb7f27a4e6afba8e5d998d103faf9 b/Library/Artifacts/c9/c9dfb7f27a4e6afba8e5d998d103faf9 new file mode 100644 index 00000000..0dfeef6a Binary files /dev/null and b/Library/Artifacts/c9/c9dfb7f27a4e6afba8e5d998d103faf9 differ diff --git a/Library/Artifacts/ca/ca27cd9e0f9236ffda5fd0ea75349dc6 b/Library/Artifacts/ca/ca27cd9e0f9236ffda5fd0ea75349dc6 new file mode 100644 index 00000000..4ba8b20a Binary files /dev/null and b/Library/Artifacts/ca/ca27cd9e0f9236ffda5fd0ea75349dc6 differ diff --git a/Library/Artifacts/ca/caba5f5d94da62a7cba88c6c1e5e7803 b/Library/Artifacts/ca/caba5f5d94da62a7cba88c6c1e5e7803 new file mode 100644 index 00000000..1c901ad6 Binary files /dev/null and b/Library/Artifacts/ca/caba5f5d94da62a7cba88c6c1e5e7803 differ diff --git a/Library/Artifacts/ca/caee48c6fe3cc931db194ddcb1ce1826 b/Library/Artifacts/ca/caee48c6fe3cc931db194ddcb1ce1826 new file mode 100644 index 00000000..0b6e52e7 Binary files /dev/null and b/Library/Artifacts/ca/caee48c6fe3cc931db194ddcb1ce1826 differ diff --git a/Library/Artifacts/cb/cb6c1758ac6c0686b8e0581160d83c6d b/Library/Artifacts/cb/cb6c1758ac6c0686b8e0581160d83c6d new file mode 100644 index 00000000..d24ebe93 Binary files /dev/null and b/Library/Artifacts/cb/cb6c1758ac6c0686b8e0581160d83c6d differ diff --git a/Library/Artifacts/cb/cb95ae4724af28790ed703075fd8c33d b/Library/Artifacts/cb/cb95ae4724af28790ed703075fd8c33d new file mode 100644 index 00000000..032e9965 Binary files /dev/null and b/Library/Artifacts/cb/cb95ae4724af28790ed703075fd8c33d differ diff --git a/Library/Artifacts/cb/cbe3f9fcc5f013612404c2400ccffaa3 b/Library/Artifacts/cb/cbe3f9fcc5f013612404c2400ccffaa3 new file mode 100644 index 00000000..4f7d04f1 Binary files /dev/null and b/Library/Artifacts/cb/cbe3f9fcc5f013612404c2400ccffaa3 differ diff --git a/Library/Artifacts/cc/cc29d043200dbac9f5f1246cc42956d6 b/Library/Artifacts/cc/cc29d043200dbac9f5f1246cc42956d6 new file mode 100644 index 00000000..5f8446c7 Binary files /dev/null and b/Library/Artifacts/cc/cc29d043200dbac9f5f1246cc42956d6 differ diff --git a/Library/Artifacts/cc/cc2cd4fec94c153f833e80fc12c2b91f b/Library/Artifacts/cc/cc2cd4fec94c153f833e80fc12c2b91f new file mode 100644 index 00000000..0ad6b71b Binary files /dev/null and b/Library/Artifacts/cc/cc2cd4fec94c153f833e80fc12c2b91f differ diff --git a/Library/Artifacts/cc/cc6ee7980dd5e6ee590d1a48be11d274 b/Library/Artifacts/cc/cc6ee7980dd5e6ee590d1a48be11d274 new file mode 100644 index 00000000..76923af2 Binary files /dev/null and b/Library/Artifacts/cc/cc6ee7980dd5e6ee590d1a48be11d274 differ diff --git a/Library/Artifacts/cc/ccb6f3d479d7a1805f35fcf5421fb0ed b/Library/Artifacts/cc/ccb6f3d479d7a1805f35fcf5421fb0ed new file mode 100644 index 00000000..f73bcbf0 Binary files /dev/null and b/Library/Artifacts/cc/ccb6f3d479d7a1805f35fcf5421fb0ed differ diff --git a/Library/Artifacts/cc/ccd2a0d18675dbabd9b20e9a9cc52436 b/Library/Artifacts/cc/ccd2a0d18675dbabd9b20e9a9cc52436 new file mode 100644 index 00000000..40c9f1f7 Binary files /dev/null and b/Library/Artifacts/cc/ccd2a0d18675dbabd9b20e9a9cc52436 differ diff --git a/Library/Artifacts/cd/cd0b4c971e9562a05138b42dd827a980 b/Library/Artifacts/cd/cd0b4c971e9562a05138b42dd827a980 new file mode 100644 index 00000000..9e3db1bf Binary files /dev/null and b/Library/Artifacts/cd/cd0b4c971e9562a05138b42dd827a980 differ diff --git a/Library/Artifacts/cd/cd1a6125968174940d285116c10656ed b/Library/Artifacts/cd/cd1a6125968174940d285116c10656ed new file mode 100644 index 00000000..7efe2bc8 Binary files /dev/null and b/Library/Artifacts/cd/cd1a6125968174940d285116c10656ed differ diff --git a/Library/Artifacts/ce/ce6d4d84fb67371d7ce6ecfd906c4575 b/Library/Artifacts/ce/ce6d4d84fb67371d7ce6ecfd906c4575 new file mode 100644 index 00000000..4ab3231c Binary files /dev/null and b/Library/Artifacts/ce/ce6d4d84fb67371d7ce6ecfd906c4575 differ diff --git a/Library/Artifacts/ce/ce7857c7dc7fafca7a4ad5748936ce1a b/Library/Artifacts/ce/ce7857c7dc7fafca7a4ad5748936ce1a new file mode 100644 index 00000000..22ee38ef Binary files /dev/null and b/Library/Artifacts/ce/ce7857c7dc7fafca7a4ad5748936ce1a differ diff --git a/Library/Artifacts/ce/ce7c3ef26e0d2e468504b47636aaa508 b/Library/Artifacts/ce/ce7c3ef26e0d2e468504b47636aaa508 new file mode 100644 index 00000000..c8cf4d4b Binary files /dev/null and b/Library/Artifacts/ce/ce7c3ef26e0d2e468504b47636aaa508 differ diff --git a/Library/Artifacts/ce/ce9ac680ef857d3b9ddeb06564d3d24b b/Library/Artifacts/ce/ce9ac680ef857d3b9ddeb06564d3d24b new file mode 100644 index 00000000..638e1036 Binary files /dev/null and b/Library/Artifacts/ce/ce9ac680ef857d3b9ddeb06564d3d24b differ diff --git a/Library/Artifacts/ce/cebf8f5cde9ed713460279e3fb2f0ac0 b/Library/Artifacts/ce/cebf8f5cde9ed713460279e3fb2f0ac0 new file mode 100644 index 00000000..5837df98 Binary files /dev/null and b/Library/Artifacts/ce/cebf8f5cde9ed713460279e3fb2f0ac0 differ diff --git a/Library/Artifacts/cf/cff6da9376c36db35eeeb665900e2710 b/Library/Artifacts/cf/cff6da9376c36db35eeeb665900e2710 new file mode 100644 index 00000000..811d5326 Binary files /dev/null and b/Library/Artifacts/cf/cff6da9376c36db35eeeb665900e2710 differ diff --git a/Library/Artifacts/d0/d0235e09d275235297d3b7aaf629f49b b/Library/Artifacts/d0/d0235e09d275235297d3b7aaf629f49b new file mode 100644 index 00000000..3915abfb Binary files /dev/null and b/Library/Artifacts/d0/d0235e09d275235297d3b7aaf629f49b differ diff --git a/Library/Artifacts/d0/d0f7e2be08dddb95c0a8df1c085395a0 b/Library/Artifacts/d0/d0f7e2be08dddb95c0a8df1c085395a0 new file mode 100644 index 00000000..d193b2b8 Binary files /dev/null and b/Library/Artifacts/d0/d0f7e2be08dddb95c0a8df1c085395a0 differ diff --git a/Library/Artifacts/d1/d11af44d82f6a3c0710382f07d8d3d1c b/Library/Artifacts/d1/d11af44d82f6a3c0710382f07d8d3d1c new file mode 100644 index 00000000..91a5a286 Binary files /dev/null and b/Library/Artifacts/d1/d11af44d82f6a3c0710382f07d8d3d1c differ diff --git a/Library/Artifacts/d1/d14051f40a2d60f89664eaf0081d4c30 b/Library/Artifacts/d1/d14051f40a2d60f89664eaf0081d4c30 new file mode 100644 index 00000000..eb2d52fc Binary files /dev/null and b/Library/Artifacts/d1/d14051f40a2d60f89664eaf0081d4c30 differ diff --git a/Library/Artifacts/d1/d19f54d3d9e06a9c22df3bdd20a350a5 b/Library/Artifacts/d1/d19f54d3d9e06a9c22df3bdd20a350a5 new file mode 100644 index 00000000..e4a913de Binary files /dev/null and b/Library/Artifacts/d1/d19f54d3d9e06a9c22df3bdd20a350a5 differ diff --git a/Library/Artifacts/d2/d2acaa95f3619f298b684c907c4cef16 b/Library/Artifacts/d2/d2acaa95f3619f298b684c907c4cef16 new file mode 100644 index 00000000..7ac97f0e Binary files /dev/null and b/Library/Artifacts/d2/d2acaa95f3619f298b684c907c4cef16 differ diff --git a/Library/Artifacts/d2/d2e3dd47bb32f393fd9cbd7ffb3ae3b2 b/Library/Artifacts/d2/d2e3dd47bb32f393fd9cbd7ffb3ae3b2 new file mode 100644 index 00000000..e1881a26 Binary files /dev/null and b/Library/Artifacts/d2/d2e3dd47bb32f393fd9cbd7ffb3ae3b2 differ diff --git a/Library/Artifacts/d3/d348980d60bad2d530c789f3a8c4bcd9 b/Library/Artifacts/d3/d348980d60bad2d530c789f3a8c4bcd9 new file mode 100644 index 00000000..28e6bdc6 Binary files /dev/null and b/Library/Artifacts/d3/d348980d60bad2d530c789f3a8c4bcd9 differ diff --git a/Library/Artifacts/d3/d3d4fbd9e7392ac483be20e7c2449443 b/Library/Artifacts/d3/d3d4fbd9e7392ac483be20e7c2449443 new file mode 100644 index 00000000..62eeed61 Binary files /dev/null and b/Library/Artifacts/d3/d3d4fbd9e7392ac483be20e7c2449443 differ diff --git a/Library/Artifacts/d3/d3de4506b393aabfd4bed40853449ba6 b/Library/Artifacts/d3/d3de4506b393aabfd4bed40853449ba6 new file mode 100644 index 00000000..d7d547b0 Binary files /dev/null and b/Library/Artifacts/d3/d3de4506b393aabfd4bed40853449ba6 differ diff --git a/Library/Artifacts/d4/d43de10c98eb2bf83e3ef5e312b2d81d b/Library/Artifacts/d4/d43de10c98eb2bf83e3ef5e312b2d81d new file mode 100644 index 00000000..09e8c8bb Binary files /dev/null and b/Library/Artifacts/d4/d43de10c98eb2bf83e3ef5e312b2d81d differ diff --git a/Library/Artifacts/d4/d47f749e9b2d166f23ee5e770ae9487b b/Library/Artifacts/d4/d47f749e9b2d166f23ee5e770ae9487b new file mode 100644 index 00000000..a9ed2d1f Binary files /dev/null and b/Library/Artifacts/d4/d47f749e9b2d166f23ee5e770ae9487b differ diff --git a/Library/Artifacts/d5/d51c4055354c7f08981132d2d5712ace b/Library/Artifacts/d5/d51c4055354c7f08981132d2d5712ace new file mode 100644 index 00000000..5fca815a Binary files /dev/null and b/Library/Artifacts/d5/d51c4055354c7f08981132d2d5712ace differ diff --git a/Library/Artifacts/d5/d53909cacbf5b0653c2eaa29e8f15f10 b/Library/Artifacts/d5/d53909cacbf5b0653c2eaa29e8f15f10 new file mode 100644 index 00000000..3d410574 Binary files /dev/null and b/Library/Artifacts/d5/d53909cacbf5b0653c2eaa29e8f15f10 differ diff --git a/Library/Artifacts/d5/d54bce60d1a9a40bceae9e7a9d7e2dda b/Library/Artifacts/d5/d54bce60d1a9a40bceae9e7a9d7e2dda new file mode 100644 index 00000000..068b5c90 Binary files /dev/null and b/Library/Artifacts/d5/d54bce60d1a9a40bceae9e7a9d7e2dda differ diff --git a/Library/Artifacts/d5/d54d6ae898ba83ee8772a3a7d2b52f43 b/Library/Artifacts/d5/d54d6ae898ba83ee8772a3a7d2b52f43 new file mode 100644 index 00000000..348de732 Binary files /dev/null and b/Library/Artifacts/d5/d54d6ae898ba83ee8772a3a7d2b52f43 differ diff --git a/Library/Artifacts/d5/d5555b75d7f0d5d551121802f7725b29 b/Library/Artifacts/d5/d5555b75d7f0d5d551121802f7725b29 new file mode 100644 index 00000000..7cf5e92f Binary files /dev/null and b/Library/Artifacts/d5/d5555b75d7f0d5d551121802f7725b29 differ diff --git a/Library/Artifacts/d5/d5f5cc9e8e91f3d509a82a69eb8a4f05 b/Library/Artifacts/d5/d5f5cc9e8e91f3d509a82a69eb8a4f05 new file mode 100644 index 00000000..fdb7228c Binary files /dev/null and b/Library/Artifacts/d5/d5f5cc9e8e91f3d509a82a69eb8a4f05 differ diff --git a/Library/Artifacts/d6/d6717ef04cc20bd88e8abede0c99e81b b/Library/Artifacts/d6/d6717ef04cc20bd88e8abede0c99e81b new file mode 100644 index 00000000..187d39a8 Binary files /dev/null and b/Library/Artifacts/d6/d6717ef04cc20bd88e8abede0c99e81b differ diff --git a/Library/Artifacts/d7/d77aaffa591a42c11022ac58ddc66a35 b/Library/Artifacts/d7/d77aaffa591a42c11022ac58ddc66a35 new file mode 100644 index 00000000..57cc0604 Binary files /dev/null and b/Library/Artifacts/d7/d77aaffa591a42c11022ac58ddc66a35 differ diff --git a/Library/Artifacts/d7/d7be8b3158aaa5d97416a3ec74fe1423 b/Library/Artifacts/d7/d7be8b3158aaa5d97416a3ec74fe1423 new file mode 100644 index 00000000..1e11aa6a Binary files /dev/null and b/Library/Artifacts/d7/d7be8b3158aaa5d97416a3ec74fe1423 differ diff --git a/Library/Artifacts/d8/d83e1ae06935347f0ffb0a449977f4fd b/Library/Artifacts/d8/d83e1ae06935347f0ffb0a449977f4fd new file mode 100644 index 00000000..63641f0d Binary files /dev/null and b/Library/Artifacts/d8/d83e1ae06935347f0ffb0a449977f4fd differ diff --git a/Library/Artifacts/d8/d8cd1b037c4270d0f42edc5516238b3e b/Library/Artifacts/d8/d8cd1b037c4270d0f42edc5516238b3e new file mode 100644 index 00000000..7c4505d7 Binary files /dev/null and b/Library/Artifacts/d8/d8cd1b037c4270d0f42edc5516238b3e differ diff --git a/Library/Artifacts/d8/d8d3d5f6f12a82e7136e976a69ff1e08 b/Library/Artifacts/d8/d8d3d5f6f12a82e7136e976a69ff1e08 new file mode 100644 index 00000000..eb996a16 Binary files /dev/null and b/Library/Artifacts/d8/d8d3d5f6f12a82e7136e976a69ff1e08 differ diff --git a/Library/Artifacts/d9/d99bcd5f488eca8c61a0b2dad8d45ec8 b/Library/Artifacts/d9/d99bcd5f488eca8c61a0b2dad8d45ec8 new file mode 100644 index 00000000..cd0886f5 Binary files /dev/null and b/Library/Artifacts/d9/d99bcd5f488eca8c61a0b2dad8d45ec8 differ diff --git a/Library/Artifacts/d9/d9baadaeca2a9ace326e038590f352ce b/Library/Artifacts/d9/d9baadaeca2a9ace326e038590f352ce new file mode 100644 index 00000000..87ba28ff Binary files /dev/null and b/Library/Artifacts/d9/d9baadaeca2a9ace326e038590f352ce differ diff --git a/Library/Artifacts/da/da551dba43df7c0adf32a22c83e71a31 b/Library/Artifacts/da/da551dba43df7c0adf32a22c83e71a31 new file mode 100644 index 00000000..8690efb9 Binary files /dev/null and b/Library/Artifacts/da/da551dba43df7c0adf32a22c83e71a31 differ diff --git a/Library/Artifacts/da/da95fa5a9912650a709da15701d15e5b b/Library/Artifacts/da/da95fa5a9912650a709da15701d15e5b new file mode 100644 index 00000000..11876d30 Binary files /dev/null and b/Library/Artifacts/da/da95fa5a9912650a709da15701d15e5b differ diff --git a/Library/Artifacts/db/db61f1699ecc369600b4da5588344117 b/Library/Artifacts/db/db61f1699ecc369600b4da5588344117 new file mode 100644 index 00000000..5af76cb8 Binary files /dev/null and b/Library/Artifacts/db/db61f1699ecc369600b4da5588344117 differ diff --git a/Library/Artifacts/db/db879defd7759767a0a2f1a70a1d9a05 b/Library/Artifacts/db/db879defd7759767a0a2f1a70a1d9a05 new file mode 100644 index 00000000..c2665a53 Binary files /dev/null and b/Library/Artifacts/db/db879defd7759767a0a2f1a70a1d9a05 differ diff --git a/Library/Artifacts/db/dbb388c325a2ac11d180f451e11840e2 b/Library/Artifacts/db/dbb388c325a2ac11d180f451e11840e2 new file mode 100644 index 00000000..a1f31a62 Binary files /dev/null and b/Library/Artifacts/db/dbb388c325a2ac11d180f451e11840e2 differ diff --git a/Library/Artifacts/db/dbea66f90ba80c8e7e13519d1ec06f99 b/Library/Artifacts/db/dbea66f90ba80c8e7e13519d1ec06f99 new file mode 100644 index 00000000..583c1505 Binary files /dev/null and b/Library/Artifacts/db/dbea66f90ba80c8e7e13519d1ec06f99 differ diff --git a/Library/Artifacts/dc/dc11ed5df4488ebec1c985c3ff435cc8 b/Library/Artifacts/dc/dc11ed5df4488ebec1c985c3ff435cc8 new file mode 100644 index 00000000..80046432 Binary files /dev/null and b/Library/Artifacts/dc/dc11ed5df4488ebec1c985c3ff435cc8 differ diff --git a/Library/Artifacts/dc/dc43ec3f4d5c0649a03fedba758f212f b/Library/Artifacts/dc/dc43ec3f4d5c0649a03fedba758f212f new file mode 100644 index 00000000..1281474a Binary files /dev/null and b/Library/Artifacts/dc/dc43ec3f4d5c0649a03fedba758f212f differ diff --git a/Library/Artifacts/de/de6cd9edf42636b357c6de302178054c b/Library/Artifacts/de/de6cd9edf42636b357c6de302178054c new file mode 100644 index 00000000..abd1e94c Binary files /dev/null and b/Library/Artifacts/de/de6cd9edf42636b357c6de302178054c differ diff --git a/Library/Artifacts/de/deada9f5fe23f7bc3fcae9e9b751d0d7 b/Library/Artifacts/de/deada9f5fe23f7bc3fcae9e9b751d0d7 new file mode 100644 index 00000000..158e7ee3 Binary files /dev/null and b/Library/Artifacts/de/deada9f5fe23f7bc3fcae9e9b751d0d7 differ diff --git a/Library/Artifacts/df/df4225329e37dccc7ad9145ba7a61f47 b/Library/Artifacts/df/df4225329e37dccc7ad9145ba7a61f47 new file mode 100644 index 00000000..366c50ac Binary files /dev/null and b/Library/Artifacts/df/df4225329e37dccc7ad9145ba7a61f47 differ diff --git a/Library/Artifacts/df/dfd6ce75aa874e6124b5e23c3c772230 b/Library/Artifacts/df/dfd6ce75aa874e6124b5e23c3c772230 new file mode 100644 index 00000000..c0d5fb2f Binary files /dev/null and b/Library/Artifacts/df/dfd6ce75aa874e6124b5e23c3c772230 differ diff --git a/Library/Artifacts/e0/e02b4dc9825959b1ebcc5097750a2220 b/Library/Artifacts/e0/e02b4dc9825959b1ebcc5097750a2220 new file mode 100644 index 00000000..2cc72e6c Binary files /dev/null and b/Library/Artifacts/e0/e02b4dc9825959b1ebcc5097750a2220 differ diff --git a/Library/Artifacts/e0/e04561e68abd1b74dc05139f24179751 b/Library/Artifacts/e0/e04561e68abd1b74dc05139f24179751 new file mode 100644 index 00000000..a4f5c8bd Binary files /dev/null and b/Library/Artifacts/e0/e04561e68abd1b74dc05139f24179751 differ diff --git a/Library/Artifacts/e1/e18eeaef100821307f71a4b48d03eb87 b/Library/Artifacts/e1/e18eeaef100821307f71a4b48d03eb87 new file mode 100644 index 00000000..7d3b0b2c Binary files /dev/null and b/Library/Artifacts/e1/e18eeaef100821307f71a4b48d03eb87 differ diff --git a/Library/Artifacts/e2/e2314d7bcb43cba8732206c087dafe87 b/Library/Artifacts/e2/e2314d7bcb43cba8732206c087dafe87 new file mode 100644 index 00000000..eeb344fd Binary files /dev/null and b/Library/Artifacts/e2/e2314d7bcb43cba8732206c087dafe87 differ diff --git a/Library/Artifacts/e2/e2decec96f0f02c1cb1f94c3a526d915 b/Library/Artifacts/e2/e2decec96f0f02c1cb1f94c3a526d915 new file mode 100644 index 00000000..7e73f4c8 Binary files /dev/null and b/Library/Artifacts/e2/e2decec96f0f02c1cb1f94c3a526d915 differ diff --git a/Library/Artifacts/e2/e2e81793529dcb3a6d8a8cc796ae62d4 b/Library/Artifacts/e2/e2e81793529dcb3a6d8a8cc796ae62d4 new file mode 100644 index 00000000..eadff269 Binary files /dev/null and b/Library/Artifacts/e2/e2e81793529dcb3a6d8a8cc796ae62d4 differ diff --git a/Library/Artifacts/e3/e35f628b2b6772c5b08e7b9c77d8d436 b/Library/Artifacts/e3/e35f628b2b6772c5b08e7b9c77d8d436 new file mode 100644 index 00000000..46159e53 Binary files /dev/null and b/Library/Artifacts/e3/e35f628b2b6772c5b08e7b9c77d8d436 differ diff --git a/Library/Artifacts/e5/e534233e1c5f1a090eaa96855a360fd2 b/Library/Artifacts/e5/e534233e1c5f1a090eaa96855a360fd2 new file mode 100644 index 00000000..09f60d29 Binary files /dev/null and b/Library/Artifacts/e5/e534233e1c5f1a090eaa96855a360fd2 differ diff --git a/Library/Artifacts/e5/e5b98c2ec0347a9b1d2ae5645a411d45 b/Library/Artifacts/e5/e5b98c2ec0347a9b1d2ae5645a411d45 new file mode 100644 index 00000000..a65b0079 Binary files /dev/null and b/Library/Artifacts/e5/e5b98c2ec0347a9b1d2ae5645a411d45 differ diff --git a/Library/Artifacts/e6/e60136e843963cdb5e61f26b94ee2ac4 b/Library/Artifacts/e6/e60136e843963cdb5e61f26b94ee2ac4 new file mode 100644 index 00000000..6d17bdcb Binary files /dev/null and b/Library/Artifacts/e6/e60136e843963cdb5e61f26b94ee2ac4 differ diff --git a/Library/Artifacts/e6/e68f63d4921486accf7259c902f2ca49 b/Library/Artifacts/e6/e68f63d4921486accf7259c902f2ca49 new file mode 100644 index 00000000..8adac376 Binary files /dev/null and b/Library/Artifacts/e6/e68f63d4921486accf7259c902f2ca49 differ diff --git a/Library/Artifacts/e6/e69286e1d69d012a49497aa98454888c b/Library/Artifacts/e6/e69286e1d69d012a49497aa98454888c new file mode 100644 index 00000000..7ee46ea4 Binary files /dev/null and b/Library/Artifacts/e6/e69286e1d69d012a49497aa98454888c differ diff --git a/Library/Artifacts/e6/e6d7e5e06a33e5265e368138f296ab94 b/Library/Artifacts/e6/e6d7e5e06a33e5265e368138f296ab94 new file mode 100644 index 00000000..ef0f3838 Binary files /dev/null and b/Library/Artifacts/e6/e6d7e5e06a33e5265e368138f296ab94 differ diff --git a/Library/Artifacts/e7/e72b95fad1b53a8456e1e72936586b99 b/Library/Artifacts/e7/e72b95fad1b53a8456e1e72936586b99 new file mode 100644 index 00000000..04456b96 Binary files /dev/null and b/Library/Artifacts/e7/e72b95fad1b53a8456e1e72936586b99 differ diff --git a/Library/Artifacts/e7/e75b42d487c8ca8eaeb7b2af49de3931 b/Library/Artifacts/e7/e75b42d487c8ca8eaeb7b2af49de3931 new file mode 100644 index 00000000..f41f07ce Binary files /dev/null and b/Library/Artifacts/e7/e75b42d487c8ca8eaeb7b2af49de3931 differ diff --git a/Library/Artifacts/e8/e81149aeb21d09e1736dacc649efb947 b/Library/Artifacts/e8/e81149aeb21d09e1736dacc649efb947 new file mode 100644 index 00000000..2e0decdc Binary files /dev/null and b/Library/Artifacts/e8/e81149aeb21d09e1736dacc649efb947 differ diff --git a/Library/Artifacts/e8/e819a703491c861c24f14b707ca03c2e b/Library/Artifacts/e8/e819a703491c861c24f14b707ca03c2e new file mode 100644 index 00000000..3fd0dec8 Binary files /dev/null and b/Library/Artifacts/e8/e819a703491c861c24f14b707ca03c2e differ diff --git a/Library/Artifacts/e8/e85d6eaf2be38ae39aed08ded8d97882 b/Library/Artifacts/e8/e85d6eaf2be38ae39aed08ded8d97882 new file mode 100644 index 00000000..de527d97 Binary files /dev/null and b/Library/Artifacts/e8/e85d6eaf2be38ae39aed08ded8d97882 differ diff --git a/Library/Artifacts/e8/e8c450517dcd0103d0fa2311790573c4 b/Library/Artifacts/e8/e8c450517dcd0103d0fa2311790573c4 new file mode 100644 index 00000000..1868f9a1 Binary files /dev/null and b/Library/Artifacts/e8/e8c450517dcd0103d0fa2311790573c4 differ diff --git a/Library/Artifacts/e9/e90ac6d928f42232a08ffe00e38b9437 b/Library/Artifacts/e9/e90ac6d928f42232a08ffe00e38b9437 new file mode 100644 index 00000000..5ec07c56 Binary files /dev/null and b/Library/Artifacts/e9/e90ac6d928f42232a08ffe00e38b9437 differ diff --git a/Library/Artifacts/e9/e95ea8f4f22e4ca0f206db949cf3a5b3 b/Library/Artifacts/e9/e95ea8f4f22e4ca0f206db949cf3a5b3 new file mode 100644 index 00000000..a83d9c1b Binary files /dev/null and b/Library/Artifacts/e9/e95ea8f4f22e4ca0f206db949cf3a5b3 differ diff --git a/Library/Artifacts/e9/e965a8bbffff01ff557c5ca024d61bf7 b/Library/Artifacts/e9/e965a8bbffff01ff557c5ca024d61bf7 new file mode 100644 index 00000000..b721ac00 Binary files /dev/null and b/Library/Artifacts/e9/e965a8bbffff01ff557c5ca024d61bf7 differ diff --git a/Library/Artifacts/e9/e9c64d80e065dca6c15dceed5c0cbaee b/Library/Artifacts/e9/e9c64d80e065dca6c15dceed5c0cbaee new file mode 100644 index 00000000..09d6f837 Binary files /dev/null and b/Library/Artifacts/e9/e9c64d80e065dca6c15dceed5c0cbaee differ diff --git a/Library/Artifacts/ea/eabce4f2d4141938aa3820a6b4832f07 b/Library/Artifacts/ea/eabce4f2d4141938aa3820a6b4832f07 new file mode 100644 index 00000000..c5ac642d Binary files /dev/null and b/Library/Artifacts/ea/eabce4f2d4141938aa3820a6b4832f07 differ diff --git a/Library/Artifacts/eb/eb287fc30d0301c3369f695c02675336 b/Library/Artifacts/eb/eb287fc30d0301c3369f695c02675336 new file mode 100644 index 00000000..0c4dc117 Binary files /dev/null and b/Library/Artifacts/eb/eb287fc30d0301c3369f695c02675336 differ diff --git a/Library/Artifacts/ec/ec3ed08885a976fdbdda7c1fd5261b1f b/Library/Artifacts/ec/ec3ed08885a976fdbdda7c1fd5261b1f new file mode 100644 index 00000000..7ae91bda Binary files /dev/null and b/Library/Artifacts/ec/ec3ed08885a976fdbdda7c1fd5261b1f differ diff --git a/Library/Artifacts/ec/ec659b5888d9f355386d99d9e61e597d b/Library/Artifacts/ec/ec659b5888d9f355386d99d9e61e597d new file mode 100644 index 00000000..56e5db7a Binary files /dev/null and b/Library/Artifacts/ec/ec659b5888d9f355386d99d9e61e597d differ diff --git a/Library/Artifacts/ec/ecd1cd5e7cb8058011f3eda9c61870ef b/Library/Artifacts/ec/ecd1cd5e7cb8058011f3eda9c61870ef new file mode 100644 index 00000000..57869450 Binary files /dev/null and b/Library/Artifacts/ec/ecd1cd5e7cb8058011f3eda9c61870ef differ diff --git a/Library/Artifacts/ec/ecfcbe4a5f691407aae6abe9230335f3 b/Library/Artifacts/ec/ecfcbe4a5f691407aae6abe9230335f3 new file mode 100644 index 00000000..c509b5e0 Binary files /dev/null and b/Library/Artifacts/ec/ecfcbe4a5f691407aae6abe9230335f3 differ diff --git a/Library/Artifacts/ed/edfe7836d34d04df80edf3fdda51adce b/Library/Artifacts/ed/edfe7836d34d04df80edf3fdda51adce new file mode 100644 index 00000000..455ae6ee Binary files /dev/null and b/Library/Artifacts/ed/edfe7836d34d04df80edf3fdda51adce differ diff --git a/Library/Artifacts/ef/ef22b8ee06165280eccf7c7eb4a7bcc0 b/Library/Artifacts/ef/ef22b8ee06165280eccf7c7eb4a7bcc0 new file mode 100644 index 00000000..c688dc4b Binary files /dev/null and b/Library/Artifacts/ef/ef22b8ee06165280eccf7c7eb4a7bcc0 differ diff --git a/Library/Artifacts/ef/efc54a918002b533dabfc424ab7c9b14 b/Library/Artifacts/ef/efc54a918002b533dabfc424ab7c9b14 new file mode 100644 index 00000000..213d3786 Binary files /dev/null and b/Library/Artifacts/ef/efc54a918002b533dabfc424ab7c9b14 differ diff --git a/Library/Artifacts/ef/efe47fbfe788dbd86471f1cf9722fd48 b/Library/Artifacts/ef/efe47fbfe788dbd86471f1cf9722fd48 new file mode 100644 index 00000000..995c42f9 Binary files /dev/null and b/Library/Artifacts/ef/efe47fbfe788dbd86471f1cf9722fd48 differ diff --git a/Library/Artifacts/f0/f008993fc15d619130bd5ec7e4873b34 b/Library/Artifacts/f0/f008993fc15d619130bd5ec7e4873b34 new file mode 100644 index 00000000..328c6d72 Binary files /dev/null and b/Library/Artifacts/f0/f008993fc15d619130bd5ec7e4873b34 differ diff --git a/Library/Artifacts/f0/f00e79dcfcbc6cd6d3ba572eec2e9273 b/Library/Artifacts/f0/f00e79dcfcbc6cd6d3ba572eec2e9273 new file mode 100644 index 00000000..48380927 Binary files /dev/null and b/Library/Artifacts/f0/f00e79dcfcbc6cd6d3ba572eec2e9273 differ diff --git a/Library/Artifacts/f0/f012f2658305749fe1fe19b71d1cd8a2 b/Library/Artifacts/f0/f012f2658305749fe1fe19b71d1cd8a2 new file mode 100644 index 00000000..65efb93e Binary files /dev/null and b/Library/Artifacts/f0/f012f2658305749fe1fe19b71d1cd8a2 differ diff --git a/Library/Artifacts/f0/f0d4573c6068ea10f27c750e4f29a7e8 b/Library/Artifacts/f0/f0d4573c6068ea10f27c750e4f29a7e8 new file mode 100644 index 00000000..41f3b8a1 Binary files /dev/null and b/Library/Artifacts/f0/f0d4573c6068ea10f27c750e4f29a7e8 differ diff --git a/Library/Artifacts/f1/f128c971e646f68c0003db047899f18f b/Library/Artifacts/f1/f128c971e646f68c0003db047899f18f new file mode 100644 index 00000000..eb0ff1ab Binary files /dev/null and b/Library/Artifacts/f1/f128c971e646f68c0003db047899f18f differ diff --git a/Library/Artifacts/f1/f158efa556cfd32cf285e84b292fb150 b/Library/Artifacts/f1/f158efa556cfd32cf285e84b292fb150 new file mode 100644 index 00000000..a94138dc Binary files /dev/null and b/Library/Artifacts/f1/f158efa556cfd32cf285e84b292fb150 differ diff --git a/Library/Artifacts/f1/f1b3f319e33d8498569d132a5339c268 b/Library/Artifacts/f1/f1b3f319e33d8498569d132a5339c268 new file mode 100644 index 00000000..846ec6bd Binary files /dev/null and b/Library/Artifacts/f1/f1b3f319e33d8498569d132a5339c268 differ diff --git a/Library/Artifacts/f1/f1ea3a9b9828b1e0c1cf1e293a82325a b/Library/Artifacts/f1/f1ea3a9b9828b1e0c1cf1e293a82325a new file mode 100644 index 00000000..cf50ae04 Binary files /dev/null and b/Library/Artifacts/f1/f1ea3a9b9828b1e0c1cf1e293a82325a differ diff --git a/Library/Artifacts/f2/f28a6d60b29c8b058d0302bbf1644683 b/Library/Artifacts/f2/f28a6d60b29c8b058d0302bbf1644683 new file mode 100644 index 00000000..e941c283 Binary files /dev/null and b/Library/Artifacts/f2/f28a6d60b29c8b058d0302bbf1644683 differ diff --git a/Library/Artifacts/f3/f3112f8248ac948692d4b5d0c7cfcc79 b/Library/Artifacts/f3/f3112f8248ac948692d4b5d0c7cfcc79 new file mode 100644 index 00000000..7ad4778c Binary files /dev/null and b/Library/Artifacts/f3/f3112f8248ac948692d4b5d0c7cfcc79 differ diff --git a/Library/Artifacts/f3/f3330f7ec9e09ee00e9a2418a91560e6 b/Library/Artifacts/f3/f3330f7ec9e09ee00e9a2418a91560e6 new file mode 100644 index 00000000..56cc6a33 Binary files /dev/null and b/Library/Artifacts/f3/f3330f7ec9e09ee00e9a2418a91560e6 differ diff --git a/Library/Artifacts/f3/f385dfce6723fa79b85c401e8a65a966 b/Library/Artifacts/f3/f385dfce6723fa79b85c401e8a65a966 new file mode 100644 index 00000000..4f71aadf Binary files /dev/null and b/Library/Artifacts/f3/f385dfce6723fa79b85c401e8a65a966 differ diff --git a/Library/Artifacts/f4/f446182350336de5bf63e18999c4052a b/Library/Artifacts/f4/f446182350336de5bf63e18999c4052a new file mode 100644 index 00000000..c07c3b19 Binary files /dev/null and b/Library/Artifacts/f4/f446182350336de5bf63e18999c4052a differ diff --git a/Library/Artifacts/f4/f45fa1c88a5d19584ba60347ae191239 b/Library/Artifacts/f4/f45fa1c88a5d19584ba60347ae191239 new file mode 100644 index 00000000..765f2b43 Binary files /dev/null and b/Library/Artifacts/f4/f45fa1c88a5d19584ba60347ae191239 differ diff --git a/Library/Artifacts/f4/f460815cbb31f59340c7fb41c33c3bde b/Library/Artifacts/f4/f460815cbb31f59340c7fb41c33c3bde new file mode 100644 index 00000000..ef432520 Binary files /dev/null and b/Library/Artifacts/f4/f460815cbb31f59340c7fb41c33c3bde differ diff --git a/Library/Artifacts/f4/f4d8f4bc51a46fdb1b1de4fc6c6a1366 b/Library/Artifacts/f4/f4d8f4bc51a46fdb1b1de4fc6c6a1366 new file mode 100644 index 00000000..e6e64a19 Binary files /dev/null and b/Library/Artifacts/f4/f4d8f4bc51a46fdb1b1de4fc6c6a1366 differ diff --git a/Library/Artifacts/f5/f57eb7092a38a5fda77c2d087a78e364 b/Library/Artifacts/f5/f57eb7092a38a5fda77c2d087a78e364 new file mode 100644 index 00000000..0b14e757 Binary files /dev/null and b/Library/Artifacts/f5/f57eb7092a38a5fda77c2d087a78e364 differ diff --git a/Library/Artifacts/f5/f5a7257bdd5c682d53309010ad74ed0a b/Library/Artifacts/f5/f5a7257bdd5c682d53309010ad74ed0a new file mode 100644 index 00000000..48ffcc2a Binary files /dev/null and b/Library/Artifacts/f5/f5a7257bdd5c682d53309010ad74ed0a differ diff --git a/Library/Artifacts/f5/f5b26fde490c1b87a081a5e57bb502e2 b/Library/Artifacts/f5/f5b26fde490c1b87a081a5e57bb502e2 new file mode 100644 index 00000000..1fc7b31e Binary files /dev/null and b/Library/Artifacts/f5/f5b26fde490c1b87a081a5e57bb502e2 differ diff --git a/Library/Artifacts/f6/f63b0a73e8945f5d7cdfce684da079f4 b/Library/Artifacts/f6/f63b0a73e8945f5d7cdfce684da079f4 new file mode 100644 index 00000000..3ebbb95d Binary files /dev/null and b/Library/Artifacts/f6/f63b0a73e8945f5d7cdfce684da079f4 differ diff --git a/Library/Artifacts/f6/f657a1f2b4513558e7e171620a983a96 b/Library/Artifacts/f6/f657a1f2b4513558e7e171620a983a96 new file mode 100644 index 00000000..e222548f Binary files /dev/null and b/Library/Artifacts/f6/f657a1f2b4513558e7e171620a983a96 differ diff --git a/Library/Artifacts/f6/f68d1cc52cbd0137dd17a950d0cebb55 b/Library/Artifacts/f6/f68d1cc52cbd0137dd17a950d0cebb55 new file mode 100644 index 00000000..19b87152 Binary files /dev/null and b/Library/Artifacts/f6/f68d1cc52cbd0137dd17a950d0cebb55 differ diff --git a/Library/Artifacts/f7/f724ca45ecce052bb6d6ca0e4e7138dc b/Library/Artifacts/f7/f724ca45ecce052bb6d6ca0e4e7138dc new file mode 100644 index 00000000..4d246b29 Binary files /dev/null and b/Library/Artifacts/f7/f724ca45ecce052bb6d6ca0e4e7138dc differ diff --git a/Library/Artifacts/f7/f7eccd09d236afc0a8cc3d2b43f0727d b/Library/Artifacts/f7/f7eccd09d236afc0a8cc3d2b43f0727d new file mode 100644 index 00000000..7fc08925 Binary files /dev/null and b/Library/Artifacts/f7/f7eccd09d236afc0a8cc3d2b43f0727d differ diff --git a/Library/Artifacts/f8/f800a1e0c9b78475cd7650ba8cc64e91 b/Library/Artifacts/f8/f800a1e0c9b78475cd7650ba8cc64e91 new file mode 100644 index 00000000..fd63853b Binary files /dev/null and b/Library/Artifacts/f8/f800a1e0c9b78475cd7650ba8cc64e91 differ diff --git a/Library/Artifacts/f8/f854e56cd5d6981a0f5e2dc2a9273ee1 b/Library/Artifacts/f8/f854e56cd5d6981a0f5e2dc2a9273ee1 new file mode 100644 index 00000000..0b77476b Binary files /dev/null and b/Library/Artifacts/f8/f854e56cd5d6981a0f5e2dc2a9273ee1 differ diff --git a/Library/Artifacts/f8/f8b5ee12854301a44989d26564f9cf7c b/Library/Artifacts/f8/f8b5ee12854301a44989d26564f9cf7c new file mode 100644 index 00000000..0892dea6 Binary files /dev/null and b/Library/Artifacts/f8/f8b5ee12854301a44989d26564f9cf7c differ diff --git a/Library/Artifacts/f8/f8dc5fee30920572119b7ff3a7663bda b/Library/Artifacts/f8/f8dc5fee30920572119b7ff3a7663bda new file mode 100644 index 00000000..7a663faf Binary files /dev/null and b/Library/Artifacts/f8/f8dc5fee30920572119b7ff3a7663bda differ diff --git a/Library/Artifacts/f9/f9152744ea5c360f0080c53f42eec16b b/Library/Artifacts/f9/f9152744ea5c360f0080c53f42eec16b new file mode 100644 index 00000000..a8399fc0 Binary files /dev/null and b/Library/Artifacts/f9/f9152744ea5c360f0080c53f42eec16b differ diff --git a/Library/Artifacts/f9/f968537c7dce9a048ab6d40ae33206d1 b/Library/Artifacts/f9/f968537c7dce9a048ab6d40ae33206d1 new file mode 100644 index 00000000..ff222355 Binary files /dev/null and b/Library/Artifacts/f9/f968537c7dce9a048ab6d40ae33206d1 differ diff --git a/Library/Artifacts/f9/f98d9fe93b0c662ee08647105471db4a b/Library/Artifacts/f9/f98d9fe93b0c662ee08647105471db4a new file mode 100644 index 00000000..02b13074 Binary files /dev/null and b/Library/Artifacts/f9/f98d9fe93b0c662ee08647105471db4a differ diff --git a/Library/Artifacts/f9/f9d702293ce0173be58fa1e6be4208b6 b/Library/Artifacts/f9/f9d702293ce0173be58fa1e6be4208b6 new file mode 100644 index 00000000..781e9a72 Binary files /dev/null and b/Library/Artifacts/f9/f9d702293ce0173be58fa1e6be4208b6 differ diff --git a/Library/Artifacts/fb/fbcf6f7ae8bfc42f6d64b1eb822aedc3 b/Library/Artifacts/fb/fbcf6f7ae8bfc42f6d64b1eb822aedc3 new file mode 100644 index 00000000..cc25a9cf Binary files /dev/null and b/Library/Artifacts/fb/fbcf6f7ae8bfc42f6d64b1eb822aedc3 differ diff --git a/Library/Artifacts/fc/fc0cefc77787cccbe226be4fbc7b4129 b/Library/Artifacts/fc/fc0cefc77787cccbe226be4fbc7b4129 new file mode 100644 index 00000000..439dd4e0 Binary files /dev/null and b/Library/Artifacts/fc/fc0cefc77787cccbe226be4fbc7b4129 differ diff --git a/Library/Artifacts/fc/fc706912a3f8883c5693f0084f9ab664 b/Library/Artifacts/fc/fc706912a3f8883c5693f0084f9ab664 new file mode 100644 index 00000000..faafa7f8 Binary files /dev/null and b/Library/Artifacts/fc/fc706912a3f8883c5693f0084f9ab664 differ diff --git a/Library/Artifacts/fc/fcd34286dc474f93480add0d2d6b5a49 b/Library/Artifacts/fc/fcd34286dc474f93480add0d2d6b5a49 new file mode 100644 index 00000000..7805c602 Binary files /dev/null and b/Library/Artifacts/fc/fcd34286dc474f93480add0d2d6b5a49 differ diff --git a/Library/Artifacts/fd/fd61b83bef7ccbf13cd60df563388bde b/Library/Artifacts/fd/fd61b83bef7ccbf13cd60df563388bde new file mode 100644 index 00000000..30e6714b Binary files /dev/null and b/Library/Artifacts/fd/fd61b83bef7ccbf13cd60df563388bde differ diff --git a/Library/Artifacts/fd/fdbfc2579115921ea370614a8d2694f8 b/Library/Artifacts/fd/fdbfc2579115921ea370614a8d2694f8 new file mode 100644 index 00000000..6f126f2a Binary files /dev/null and b/Library/Artifacts/fd/fdbfc2579115921ea370614a8d2694f8 differ diff --git a/Library/Artifacts/fe/fe374fdd39aa22f74e41337267e5fd7e b/Library/Artifacts/fe/fe374fdd39aa22f74e41337267e5fd7e new file mode 100644 index 00000000..a5932b9c Binary files /dev/null and b/Library/Artifacts/fe/fe374fdd39aa22f74e41337267e5fd7e differ diff --git a/Library/Artifacts/fe/fe9200ba6d9da5b53585ac330d192575 b/Library/Artifacts/fe/fe9200ba6d9da5b53585ac330d192575 new file mode 100644 index 00000000..c0880bd2 Binary files /dev/null and b/Library/Artifacts/fe/fe9200ba6d9da5b53585ac330d192575 differ diff --git a/Library/Artifacts/ff/ffa89a612ceff921038dfd4c8e2b7d2c b/Library/Artifacts/ff/ffa89a612ceff921038dfd4c8e2b7d2c new file mode 100644 index 00000000..c74c1e5f Binary files /dev/null and b/Library/Artifacts/ff/ffa89a612ceff921038dfd4c8e2b7d2c differ diff --git a/Library/Artifacts/ff/ffb7496e1f0f2b9b8c18711df6536d10 b/Library/Artifacts/ff/ffb7496e1f0f2b9b8c18711df6536d10 new file mode 100644 index 00000000..6c6253e4 Binary files /dev/null and b/Library/Artifacts/ff/ffb7496e1f0f2b9b8c18711df6536d10 differ diff --git a/Library/Artifacts/ff/ffea5d7d657924067299cb2a428e218b b/Library/Artifacts/ff/ffea5d7d657924067299cb2a428e218b new file mode 100644 index 00000000..d92dc1f2 Binary files /dev/null and b/Library/Artifacts/ff/ffea5d7d657924067299cb2a428e218b differ diff --git a/Library/BuildSettings.asset b/Library/BuildSettings.asset index f8db6300..ff4a6327 100644 Binary files a/Library/BuildSettings.asset and b/Library/BuildSettings.asset differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index 74ab06c9..4f2dd903 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -19,9 +19,9 @@ MonoBehaviour: width: 1536 height: 780.8 m_ShowMode: 4 - m_Title: Project + m_Title: Game m_RootView: {fileID: 2} - m_MinSize: {x: 875, y: 542} + m_MinSize: {x: 875, y: 492} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 @@ -38,15 +38,15 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 3} - - {fileID: 5} - {fileID: 4} + - {fileID: 5} m_Position: serializedVersion: 2 x: 0 y: 0 width: 1536 height: 781 - m_MinSize: {x: 875, y: 542} + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 30 @@ -74,10 +74,37 @@ MonoBehaviour: m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LoadedToolbars: - - {fileID: 25} - m_MainToolbar: {fileID: 25} + - {fileID: 17} + m_MainToolbar: {fileID: 17} m_LastLoadedLayoutName: --- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 6} + - {fileID: 7} + - {fileID: 8} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1536 + height: 731 + m_MinSize: {x: 910, y: 442} + m_MaxSize: {x: 22005, y: 10021} + vertical: 0 + controlID: 59 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -98,30 +125,6 @@ MonoBehaviour: height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &5 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 6} - m_Position: - serializedVersion: 2 - x: 0 - y: 30 - width: 1536 - height: 731 - m_MinSize: {x: 578, y: 471} - m_MaxSize: {x: 14002, y: 14042} - vertical: 1 - controlID: 110 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -135,18 +138,18 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 7} - - {fileID: 12} + - {fileID: 10} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1536 + width: 712 height: 731 - m_MinSize: {x: 578, y: 471} - m_MaxSize: {x: 14002, y: 14042} - vertical: 0 - controlID: 111 + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} + vertical: 1 + controlID: 60 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -156,22 +159,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_Children: - - {fileID: 8} - - {fileID: 11} + m_Children: [] m_Position: serializedVersion: 2 - x: 0 + x: 712 y: 0 - width: 1142 + width: 245.6 height: 731 - m_MinSize: {x: 302, y: 471} - m_MaxSize: {x: 10001, y: 14042} - vertical: 1 - controlID: 69 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 12} + m_Panes: + - {fileID: 12} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -181,22 +185,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_Children: - - {fileID: 9} - - {fileID: 10} + m_Children: [] m_Position: serializedVersion: 2 - x: 0 + x: 957.6 y: 0 - width: 1142 - height: 460 - m_MinSize: {x: 302, y: 200} - m_MaxSize: {x: 8002, y: 4021} - vertical: 0 - controlID: 47 + width: 234.4 + height: 731 + m_MinSize: {x: 232, y: 271} + m_MaxSize: {x: 10002, y: 10021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 @@ -212,15 +217,15 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 0 + x: 1192 y: 0 - width: 250 - height: 460 - m_MinSize: {x: 200, y: 200} + width: 344 + height: 731 + m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 14} + m_ActualView: {fileID: 13} m_Panes: - - {fileID: 14} + - {fileID: 13} m_Selected: 0 m_LastSelected: 0 --- !u!114 &10 @@ -233,24 +238,22 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneView + m_Name: m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 250 + x: 0 y: 0 - width: 892 - height: 460 - m_MinSize: {x: 102, y: 121} - m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 15} + width: 712 + height: 220.8 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 16} m_Panes: - - {fileID: 15} - - {fileID: 13} - {fileID: 16} m_Selected: 0 - m_LastSelected: 1 + m_LastSelected: 0 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -261,144 +264,23 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ProjectBrowser + m_Name: m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 460 - width: 1142 - height: 271 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 17} - m_Panes: - - {fileID: 17} - - {fileID: 18} - - {fileID: 19} - - {fileID: 20} - - {fileID: 21} - m_Selected: 0 - m_LastSelected: 4 ---- !u!114 &12 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: InspectorWindow - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 1142 - y: 0 - width: 394 - height: 731 - m_MinSize: {x: 276, y: 71} + y: 220.8 + width: 712 + height: 510.2 + m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 22} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 22} - - {fileID: 23} - - {fileID: 24} + - {fileID: 15} m_Selected: 0 - m_LastSelected: 1 ---- !u!114 &13 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Game - m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 250.40001 - y: 73.6 - width: 890 - height: 439 - m_ViewDataDictionary: {fileID: 0} - m_SerializedViewNames: [] - m_SerializedViewValues: [] - m_PlayModeViewName: GameView - m_ShowGizmos: 0 - m_TargetDisplay: 0 - m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 2560, y: 1440} - m_TextureFilterMode: 0 - m_TextureHideFlags: 61 - m_RenderIMGUI: 1 - m_MaximizeOnPlay: 0 - m_UseMipMap: 0 - m_VSyncEnabled: 0 - m_Gizmos: 0 - m_Stats: 0 - m_SelectedSizes: 05000000000000000000000006000000000000000000000000000000000000000000000000000000 - m_ZoomArea: - m_HRangeLocked: 0 - m_VRangeLocked: 0 - hZoomLockedByDefault: 0 - vZoomLockedByDefault: 0 - m_HBaseRangeMin: -1024 - m_HBaseRangeMax: 1024 - m_VBaseRangeMin: -576 - m_VBaseRangeMax: 576 - m_HAllowExceedBaseRangeMin: 1 - m_HAllowExceedBaseRangeMax: 1 - m_VAllowExceedBaseRangeMin: 1 - m_VAllowExceedBaseRangeMax: 1 - m_ScaleWithWindow: 0 - m_HSlider: 0 - m_VSlider: 0 - m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 0 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 890 - height: 418 - m_Scale: {x: 0.3628472, y: 0.3628472} - m_Translation: {x: 445, y: 209} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -1226.4115 - y: -576 - width: 2452.823 - height: 1152 - m_MinimalGUI: 1 - m_defaultScale: 0.3628472 - m_LastWindowPixelSize: {x: 1112.5, y: 548.75} - m_ClearInEditMode: 1 - m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000001000000000000 - m_XRRenderMode: 0 - m_RenderTexture: {fileID: 0} ---- !u!114 &14 + m_LastSelected: 0 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -418,17 +300,17 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 + x: 712 y: 73.6 - width: 249 - height: 439 + width: 243.6 + height: 710 m_ViewDataDictionary: {fileID: 0} m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: d60c0000 - m_LastClickedID: 0 - m_ExpandedIDs: 40fbffff + m_SelectedIDs: 8e420000 + m_LastClickedID: 17038 + m_ExpandedIDs: 40fbffff9a4200003e43000070430000d2430000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -444,15 +326,15 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 9} + m_ClientGUIView: {fileID: 7} m_SearchString: m_ExpandedScenes: [] m_CurrenRootInstanceID: 0 m_LockTracker: m_IsLocked: 0 m_CurrentSortingName: TransformSorting - m_WindowGUID: cca3db8dc3c61c14dbce399eeff65eff ---- !u!114 &15 + m_WindowGUID: 9e2b48974dcbc4042a43721353337445 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -460,140 +342,36 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} + m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Scene - m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Inspector + m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 250.40001 + x: 1192 y: 73.6 - width: 890 - height: 439 + width: 343 + height: 710 m_ViewDataDictionary: {fileID: 0} - m_ShowContextualTools: 0 - m_WindowGUID: 00a2c5bd28802784c9b63ed197415aa3 - m_Gizmos: 1 - m_OverrideSceneCullingMask: 6917529027641081856 - m_SceneIsLit: 0 - m_SceneLighting: 1 - m_2DMode: 1 - m_isRotationLocked: 0 - m_PlayAudio: 0 - m_AudioPlay: 0 - m_Position: - m_Target: {x: -3.7004402, y: 1.1114931, z: -0.56951165} - speed: 2 - m_Value: {x: -3.7004402, y: 1.1114931, z: -0.56951165} - m_RenderMode: 0 - m_CameraMode: - drawMode: 0 - name: Shaded - section: Shading Mode - m_ValidateTrueMetals: 0 - m_DoValidateTrueMetals: 0 - m_ExposureSliderValue: 0 - m_SceneViewState: - m_AlwaysRefresh: 0 - showFog: 1 - showSkybox: 0 - showFlares: 1 - showImageEffects: 1 - showParticleSystems: 1 - showVisualEffectGraphs: 1 - m_FxEnabled: 1 - m_Grid: - xGrid: - m_Fade: - m_Target: 0 - speed: 2 - m_Value: 0 - m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} - m_Pivot: {x: 0, y: 0, z: 0} - m_Size: {x: 1, y: 1} - yGrid: - m_Fade: - m_Target: 0 - speed: 2 - m_Value: 0 - m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} - m_Pivot: {x: 0, y: 0, z: 0} - m_Size: {x: 1, y: 1} - zGrid: - m_Fade: - m_Target: 0 - speed: 2 - m_Value: 0 - m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} - m_Pivot: {x: 0, y: 0, z: 0} - m_Size: {x: 1, y: 1} - m_ShowGrid: 0 - m_GridAxis: 1 - m_gridOpacity: 0.5 - m_Rotation: - m_Target: {x: 0, y: 0, z: 0, w: 1} - speed: 2 - m_Value: {x: 0, y: 0, z: 0, w: 1} - m_Size: - m_Target: 7.1426806 - speed: 2 - m_Value: 7.1426806 - m_Ortho: - m_Target: 1 - speed: 2 - m_Value: 1 - m_CameraSettings: - m_Speed: 1 - m_SpeedNormalized: 0.49748743 - m_SpeedMin: 0.01 - m_SpeedMax: 2 - m_EasingEnabled: 1 - m_EasingDuration: 0.4 - m_AccelerationEnabled: 1 - m_FieldOfViewHorizontalOrVertical: 60 - m_NearClip: 0.03 - m_FarClip: 10000 - m_DynamicClip: 1 - m_OcclusionCulling: 0 - m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} - m_LastSceneViewOrtho: 0 - m_ReplacementShader: {fileID: 0} - m_ReplacementString: - m_SceneVisActive: 0 - m_LastLockedObject: {fileID: 0} - m_ViewIsLockedToObject: 0 ---- !u!114 &16 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 400, y: 100} - m_MaxSize: {x: 2048, y: 2048} - m_TitleContent: - m_Text: Asset Store - m_Image: {fileID: -7444545952099596278, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 309 - y: 73 - width: 1100 - height: 655 - m_ViewDataDictionary: {fileID: 0} ---- !u!114 &17 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} +--- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -613,10 +391,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 533.60004 - width: 1141 - height: 250 + x: 957.60004 + y: 73.6 + width: 232.4 + height: 710 m_ViewDataDictionary: {fileID: 0} m_SearchFilter: m_NameFilter: @@ -628,25 +406,25 @@ MonoBehaviour: m_ReferencingInstanceIDs: m_SceneHandles: m_ShowAllHits: 0 - m_SkipHidden: 1 + m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets + - Assets/Scripts/Configs/EnemyConfigs m_Globs: [] m_OriginalText: m_ViewMode: 1 - m_StartGridSize: 64 + m_StartGridSize: 16 m_LastFolders: - - Assets - m_LastFoldersGridSize: -1 + - Assets/Scripts/Configs/EnemyConfigs + m_LastFoldersGridSize: 16 m_LastProjectPath: C:\Users\Dara\Documents\1\PO m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 66450000 - m_LastClickedID: 17766 - m_ExpandedIDs: 000000006645000000ca9a3b + m_SelectedIDs: 78450000 + m_LastClickedID: 17784 + m_ExpandedIDs: 000000005c450000664500006a4500006e45000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -662,7 +440,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 11} + m_ClientGUIView: {fileID: 0} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -674,7 +452,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000066450000 + m_ExpandedIDs: 000000005c450000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -701,24 +479,24 @@ MonoBehaviour: m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 1 - m_ExpandedInstanceIDs: c6230000ee3f00004a5c0000c262000030650000aa420000463800007835000074a700005a370000ee750000182f0100b6a30000eec40000ae76000060380000ac2e0100324c0000c6d3000060690000ba4500004e380000183600003c3700008838000006380000083d0000564b00002c4200002a3b0000643c00006a3b00003c3d0000000000000e380000443a0000263f000026e70000a63f00008a3e0000483b00009e420000a042000052b40000344b0000e8390000 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: EnemyConfigs + m_OriginalName: EnemyConfigs m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 17784 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 11} + m_ClientGUIView: {fileID: 8} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -727,272 +505,10 @@ MonoBehaviour: m_ResourceFile: m_NewAssetIndexInList: -1 m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 64 - m_SkipHiddenPackages: 1 - m_DirectoriesAreaWidth: 208 ---- !u!114 &18 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Animator - m_Image: {fileID: 1711060831702674872, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 749 - width: 1426 - height: 250 - m_ViewDataDictionary: {fileID: 0} - m_ViewTransforms: - m_KeySerializationHelper: - - {fileID: -8822923911470857126, guid: 15d45153b7574434d9cd9af870a27fd5, type: 2} - m_ValueSerializationHelper: - - e00: 1 - e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 - e21: 0 - e22: 1 - e23: 0 - e30: 0 - e31: 0 - e32: 0 - e33: 1 - m_PreviewAnimator: {fileID: 0} - m_AnimatorController: {fileID: 9100000, guid: 15d45153b7574434d9cd9af870a27fd5, type: 2} - m_BreadCrumbs: - - m_Target: {fileID: -8822923911470857126, guid: 15d45153b7574434d9cd9af870a27fd5, type: 2} - m_ScrollPosition: {x: 0, y: 0} - stateMachineGraph: {fileID: 0} - stateMachineGraphGUI: {fileID: 0} - blendTreeGraph: {fileID: 0} - blendTreeGraphGUI: {fileID: 0} - m_AutoLiveLink: 1 - m_MiniTool: 0 - m_LockTracker: - m_IsLocked: 0 - m_CurrentEditor: 0 - m_LayerEditor: - m_SelectedLayerIndex: 0 ---- !u!114 &19 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Animation - m_Image: {fileID: -3237396543322336831, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 749 - width: 1426 - height: 250 - m_ViewDataDictionary: {fileID: 0} - m_LockTracker: - m_IsLocked: 0 - m_LastSelectedObjectID: 14902 ---- !u!114 &20 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12373, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Audio Mixer - m_Image: {fileID: -3283902137440876849, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 0 - y: 749 - width: 1426 - height: 250 - m_ViewDataDictionary: {fileID: 0} - m_MixersTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 14820 - m_ExpandedIDs: 12eb343c - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 0} - m_SearchString: - m_CreateAssetUtility: - m_EndAction: {fileID: 0} - m_InstanceID: 0 - m_Path: - m_Icon: {fileID: 0} - m_ResourceFile: - m_LayoutStripsOnTop: - m_VerticalSplitter: - ID: 0 - splitterInitialOffset: 0 - currentActiveSplitter: -1 - realSizes: - - 65 - - 35 - relativeSizes: - - 0.65 - - 0.35000002 - minSizes: - - 85 - - 105 - maxSizes: - - 0 - - 0 - lastTotalSize: 0 - splitSize: 6 - xOffset: 0 - m_Version: 1 - oldRealSizes: 4100000023000000 - oldMinSizes: 5500000069000000 - oldMaxSizes: 0000000000000000 - oldSplitSize: 6 - m_HorizontalSplitter: - ID: 0 - splitterInitialOffset: 0 - currentActiveSplitter: -1 - realSizes: - - 60 - - 60 - - 60 - - 60 - relativeSizes: - - 0.25 - - 0.25 - - 0.25 - - 0.25 - minSizes: - - 85 - - 85 - - 85 - - 85 - maxSizes: - - 0 - - 0 - - 0 - - 0 - lastTotalSize: 0 - splitSize: 6 - xOffset: 0 - m_Version: 1 - oldRealSizes: 3c0000003c0000003c0000003c000000 - oldMinSizes: 55000000550000005500000055000000 - oldMaxSizes: 00000000000000000000000000000000 - oldSplitSize: 6 - m_LayoutStripsOnRight: - m_VerticalSplitter: - ID: 0 - splitterInitialOffset: 0 - currentActiveSplitter: -1 - realSizes: - - 60 - - 60 - - 60 - - 60 - relativeSizes: - - 0.25 - - 0.25 - - 0.25 - - 0.25 - minSizes: - - 100 - - 85 - - 85 - - 85 - maxSizes: - - 0 - - 0 - - 0 - - 0 - lastTotalSize: 0 - splitSize: 6 - xOffset: 0 - m_Version: 1 - oldRealSizes: 3c0000003c0000003c0000003c000000 - oldMinSizes: 64000000550000005500000055000000 - oldMaxSizes: 00000000000000000000000000000000 - oldSplitSize: 6 - m_HorizontalSplitter: - ID: 1208 - splitterInitialOffset: 0 - currentActiveSplitter: -1 - realSizes: - - 428 - - 998 - relativeSizes: - - 0.3 - - 0.7 - minSizes: - - 160 - - 160 - maxSizes: - - 0 - - 0 - lastTotalSize: 1426 - splitSize: 6 - xOffset: 0 - m_Version: 1 - oldRealSizes: ac010000e6030000 - oldMinSizes: a0000000a0000000 - oldMaxSizes: 0000000000000000 - oldSplitSize: 6 - m_SectionOrder: 00000000030000000100000002000000 - m_LayoutMode: 1 - m_SortGroupsAlphabetically: 0 - m_ShowReferencedBuses: 1 - m_ShowBusConnections: 0 - m_ShowBusConnectionsOfSelection: 0 ---- !u!114 &21 + m_GridSize: 16 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 110 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1001,23 +517,87 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} + m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Console - m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Game + m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 x: 0 - y: 533.60004 - width: 1141 - height: 250 + y: 294.4 + width: 711 + height: 489.2 m_ViewDataDictionary: {fileID: 0} ---- !u!114 &22 + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 1920, y: 1080} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_MaximizeOnPlay: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000006000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -768 + m_HBaseRangeMax: 768 + m_VBaseRangeMin: -432 + m_VBaseRangeMax: 432 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 711 + height: 468.2 + m_Scale: {x: 0.46289062, y: 0.46289062} + m_Translation: {x: 355.5, y: 234.1} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -768 + y: -505.73505 + width: 1536 + height: 1011.4701 + m_MinimalGUI: 1 + m_defaultScale: 0.46289062 + m_LastWindowPixelSize: {x: 888.75, y: 611.5} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 00000000000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1026,89 +606,114 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 275, y: 50} + m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Inspector - m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Scene + m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 1142.4 + x: 0 y: 73.6 - width: 393 - height: 710 + width: 711 + height: 199.8 m_ViewDataDictionary: {fileID: 0} - m_ObjectsLockedBeforeSerialization: [] - m_InstanceIDsLockedBeforeSerialization: - m_PreviewResizer: - m_CachedPref: 227 - m_ControlHash: -371814159 - m_PrefName: Preview_InspectorPreview - m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 0 - m_GlobalObjectId: - m_LockTracker: - m_IsLocked: 0 - m_PreviewWindow: {fileID: 0} ---- !u!114 &23 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12141, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 300, y: 360} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Navigation - m_Image: {fileID: 1087843850482249999, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 1411 - y: 73 - width: 508 - height: 926 - m_ViewDataDictionary: {fileID: 0} ---- !u!114 &24 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 13854, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 300, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Project Settings - m_Image: {fileID: 866346219090771560, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 1411 - y: 73 - width: 508 - height: 926 - m_ViewDataDictionary: {fileID: 0} - m_PosLeft: {x: 0, y: 0} - m_PosRight: {x: 0, y: 314} - m_Scope: 1 - m_SplitterFlex: 0.2 ---- !u!114 &25 + m_ShowContextualTools: 0 + m_WindowGUID: fb2415ee78c1c6440873dec6365fe6db + m_Gizmos: 1 + m_OverrideSceneCullingMask: 6917529027641081856 + m_SceneIsLit: 1 + m_SceneLighting: 1 + m_2DMode: 1 + m_isRotationLocked: 0 + m_PlayAudio: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 960.0001, y: 547.7718, z: 0} + speed: 2 + m_Value: {x: 960.0001, y: 547.7718, z: 0} + m_RenderMode: 0 + m_CameraMode: + drawMode: 0 + name: Shaded + section: Shading Mode + m_ValidateTrueMetals: 0 + m_DoValidateTrueMetals: 0 + m_ExposureSliderValue: 0 + m_SceneViewState: + m_AlwaysRefresh: 0 + showFog: 1 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + showParticleSystems: 1 + showVisualEffectGraphs: 1 + m_FxEnabled: 1 + m_Grid: + xGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + yGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + zGrid: + m_Fade: + m_Target: 1 + speed: 2 + m_Value: 1 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + m_ShowGrid: 1 + m_GridAxis: 1 + m_gridOpacity: 0.5 + m_Rotation: + m_Target: {x: 0, y: 0, z: 0, w: 1} + speed: 2 + m_Value: {x: 0, y: 0, z: 0, w: 1} + m_Size: + m_Target: 479.7339 + speed: 2 + m_Value: 479.7339 + m_Ortho: + m_Target: 1 + speed: 2 + m_Value: 1 + m_CameraSettings: + m_Speed: 1 + m_SpeedNormalized: 0.5 + m_SpeedMin: 0.001 + m_SpeedMax: 2 + m_EasingEnabled: 1 + m_EasingDuration: 0.4 + m_AccelerationEnabled: 1 + m_FieldOfViewHorizontalOrVertical: 60 + m_NearClip: 0.03 + m_FarClip: 10000 + m_DynamicClip: 1 + m_OcclusionCulling: 0 + m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_SceneVisActive: 1 + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} diff --git a/Library/EditorUserBuildSettings.asset b/Library/EditorUserBuildSettings.asset index 074436ec..c1425755 100644 Binary files a/Library/EditorUserBuildSettings.asset and b/Library/EditorUserBuildSettings.asset differ diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 22f7baed..09ed59f7 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/MonoManager.asset b/Library/MonoManager.asset index fc42e23e..fa8d2fb8 100644 Binary files a/Library/MonoManager.asset and b/Library/MonoManager.asset differ diff --git a/Library/PackageManager/ProjectCache b/Library/PackageManager/ProjectCache index c20ddf7c..9f67bb39 100644 --- a/Library/PackageManager/ProjectCache +++ b/Library/PackageManager/ProjectCache @@ -5,7 +5,7 @@ m_ProjectFiles: m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637775693366580527 + ticks: 637775701382787131 m_Hash: 1047088217 m_LockFileStatus: m_FilePath: C:/Users/Dara/Documents/1/PO/Packages/packages-lock.json @@ -13,7 +13,7 @@ m_ProjectFiles: m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637775693366620420 + ticks: 637775804813421276 m_Hash: 1522590259 m_EmbeddedPackageManifests: m_ManifestsStatus: {} diff --git a/Library/PackageManager/ProjectCache.md5 b/Library/PackageManager/ProjectCache.md5 index 1286b667..2b970949 100644 --- a/Library/PackageManager/ProjectCache.md5 +++ b/Library/PackageManager/ProjectCache.md5 @@ -1 +1 @@ -2fcb714a95a75016aff95620d60b750b \ No newline at end of file +b4db11b227f21399b8c465ccc9c9db12 \ No newline at end of file diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 68b50113..45c9023e 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index d3eba787..62029348 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index 42777df2..bb298f24 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/ScriptAssemblies/BuiltinAssemblies.stamp b/Library/ScriptAssemblies/BuiltinAssemblies.stamp new file mode 100644 index 00000000..81c4a6dc --- /dev/null +++ b/Library/ScriptAssemblies/BuiltinAssemblies.stamp @@ -0,0 +1 @@ +08d9793f7ad02e00.08d9793f858ac300 \ No newline at end of file diff --git a/Library/ScriptAssemblies/PsdPlugin.dll b/Library/ScriptAssemblies/PsdPlugin.dll index 5177a754..efe9b3c1 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.dll and b/Library/ScriptAssemblies/PsdPlugin.dll differ diff --git a/Library/ScriptAssemblies/PsdPlugin.pdb b/Library/ScriptAssemblies/PsdPlugin.pdb index e591d8ac..41078b3b 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.pdb and b/Library/ScriptAssemblies/PsdPlugin.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll index d1b65f96..9a9860a0 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb index 89487100..aaf20678 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll index dce33996..0d1e8c7a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb index 28e22128..431430fe 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll index 7108fd9e..cbddc330 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb index 95eedc67..4a3b2ec9 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll index 2e156950..c0a71888 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb index 34d5f592..ed3e42b4 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll index 3ba51668..e537c3f5 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb index 46fd805c..0068b4f6 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll index 5efac1b4..4f51206a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb index 7e99357b..eb9b2b8c 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll index 964286f9..47b8a95f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb index 57f4d8d9..6c66609a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll index 46ae8fda..59b93246 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb index be9f385f..bd38990a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll index 2acf406f..539702b1 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb index d018cdff..d3e739fb 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll index 3ca82282..e34160df 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb index a4a49c34..b36734b9 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll index f3fa31b1..4c7ff78e 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb index b0278687..dda1e006 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index cc27bfe9..986af2b2 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb index 85ec6df1..5551d301 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll index 3ae43608..e13a4767 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb index e7f5671f..31c5057f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll index bda7c25f..4d13137f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb index 465cfda0..a84b8167 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index 85ece6d6..a3d4f97e 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb index 6c630ad9..f1f0272c 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index c67e291e..c351c94d 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb index 06b8d565..77fc49ba 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll index 93d85a91..714428ec 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb index 3cd809c4..657be309 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll index 311fac18..5fd43353 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb index 40ff1661..4d470f11 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll index 3c0b2e9b..d4124b93 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb index 78fe3301..4c81a72b 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.dll b/Library/ScriptAssemblies/Unity.Mathematics.dll index e8009ea3..7be0cbc6 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.dll and b/Library/ScriptAssemblies/Unity.Mathematics.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.pdb b/Library/ScriptAssemblies/Unity.Mathematics.pdb index 3570f43a..b2a27d09 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.pdb differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll index 3807ddaa..0889bb47 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb index ae4f155b..b5cae5d8 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/Library/ScriptAssemblies/Unity.Rider.Editor.dll index e68a4f99..a349f10d 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb index 4141ca24..caa4b7f1 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb and b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll index 3fa769ec..f8ff5c4f 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb index 2f5caf8b..5e1bac6b 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll index 7d58f04a..7bb6cdd8 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb index 7118b647..055d5467 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index cccdbb0d..0cdf1e6f 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb index ba07242d..a39a2c3e 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.dll index fa675458..76563113 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb index 6da96089..db6662f0 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index 025ec972..ee0e0c2c 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb index 5a990e4f..70e6007f 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb and b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.dll b/Library/ScriptAssemblies/Unity.Timeline.dll index b865316f..8ff5034c 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.dll and b/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.pdb b/Library/ScriptAssemblies/Unity.Timeline.pdb index fa17ba00..683fa594 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.pdb and b/Library/ScriptAssemblies/Unity.Timeline.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll index 0f4ed7ab..e6d8f32b 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb index 84a90db1..8f8d2bf6 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index 812af2b6..a0278ea8 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb index 2eadad06..3d4b6ac2 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb and b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll index 56bb9c6f..bb58ff1a 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb index 40627bc5..9e9f81eb 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index edfe1949..813588ed 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb index 518a2e28..ad67e538 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.dll b/Library/ScriptAssemblies/UnityEditor.UI.dll index 6de0eeb0..7bfa46c9 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.dll and b/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.pdb b/Library/ScriptAssemblies/UnityEditor.UI.pdb index f0d1a5b1..161f8d02 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.pdb and b/Library/ScriptAssemblies/UnityEditor.UI.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index 7a7f568f..34f7663c 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb index 6f6e639c..83c0f22c 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.dll b/Library/ScriptAssemblies/UnityEngine.UI.dll index 218d498b..6476367a 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.dll and b/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.pdb b/Library/ScriptAssemblies/UnityEngine.UI.pdb index ac582576..f2c20575 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.pdb and b/Library/ScriptAssemblies/UnityEngine.UI.pdb differ diff --git a/Library/ScriptMapper b/Library/ScriptMapper index 4f999c06..6f378db2 100644 Binary files a/Library/ScriptMapper and b/Library/ScriptMapper differ diff --git a/Library/ShaderCache/0/012eb65ae87bcd61f9ad23f7af8a4d5a.bin b/Library/ShaderCache/0/012eb65ae87bcd61f9ad23f7af8a4d5a.bin new file mode 100644 index 00000000..205d6eb8 Binary files /dev/null and b/Library/ShaderCache/0/012eb65ae87bcd61f9ad23f7af8a4d5a.bin differ diff --git a/Library/ShaderCache/0/034f5d76804b4c886ba8b50b42949639.bin b/Library/ShaderCache/0/034f5d76804b4c886ba8b50b42949639.bin new file mode 100644 index 00000000..433d785d Binary files /dev/null and b/Library/ShaderCache/0/034f5d76804b4c886ba8b50b42949639.bin differ diff --git a/Library/ShaderCache/0/0b48760891d29383251bbe26860ff169.bin b/Library/ShaderCache/0/0b48760891d29383251bbe26860ff169.bin new file mode 100644 index 00000000..beac6ec8 Binary files /dev/null and b/Library/ShaderCache/0/0b48760891d29383251bbe26860ff169.bin differ diff --git a/Library/ShaderCache/0/0be1ff858cbee549f9692d417059c5d3.bin b/Library/ShaderCache/0/0be1ff858cbee549f9692d417059c5d3.bin new file mode 100644 index 00000000..3780faa7 Binary files /dev/null and b/Library/ShaderCache/0/0be1ff858cbee549f9692d417059c5d3.bin differ diff --git a/Library/ShaderCache/0/0d6fe60da2b439a787443abe6d5f9981.bin b/Library/ShaderCache/0/0d6fe60da2b439a787443abe6d5f9981.bin new file mode 100644 index 00000000..ebfd62ef Binary files /dev/null and b/Library/ShaderCache/0/0d6fe60da2b439a787443abe6d5f9981.bin differ diff --git a/Library/ShaderCache/1/140844e81743124694de56174c84f09b.bin b/Library/ShaderCache/1/140844e81743124694de56174c84f09b.bin new file mode 100644 index 00000000..1ee80b50 Binary files /dev/null and b/Library/ShaderCache/1/140844e81743124694de56174c84f09b.bin differ diff --git a/Library/ShaderCache/1/1749faabbcc6f3418a5464184544afe1.bin b/Library/ShaderCache/1/1749faabbcc6f3418a5464184544afe1.bin new file mode 100644 index 00000000..08e9dd59 Binary files /dev/null and b/Library/ShaderCache/1/1749faabbcc6f3418a5464184544afe1.bin differ diff --git a/Library/ShaderCache/2/24585063196f64184e9578c704d3cdce.bin b/Library/ShaderCache/2/24585063196f64184e9578c704d3cdce.bin new file mode 100644 index 00000000..8032dde7 Binary files /dev/null and b/Library/ShaderCache/2/24585063196f64184e9578c704d3cdce.bin differ diff --git a/Library/ShaderCache/2/249f86eb45ae4794b735442ac8afb0e2.bin b/Library/ShaderCache/2/249f86eb45ae4794b735442ac8afb0e2.bin new file mode 100644 index 00000000..433d785d Binary files /dev/null and b/Library/ShaderCache/2/249f86eb45ae4794b735442ac8afb0e2.bin differ diff --git a/Library/ShaderCache/2/2b5928bbc7d08bd8ec22aef1748358fe.bin b/Library/ShaderCache/2/2b5928bbc7d08bd8ec22aef1748358fe.bin new file mode 100644 index 00000000..1e894083 Binary files /dev/null and b/Library/ShaderCache/2/2b5928bbc7d08bd8ec22aef1748358fe.bin differ diff --git a/Library/ShaderCache/3/3381dcb10bcde0f5aeeda5cb440c8f7b.bin b/Library/ShaderCache/3/3381dcb10bcde0f5aeeda5cb440c8f7b.bin new file mode 100644 index 00000000..9d64dda6 Binary files /dev/null and b/Library/ShaderCache/3/3381dcb10bcde0f5aeeda5cb440c8f7b.bin differ diff --git a/Library/ShaderCache/3/3431a8070a6d19f730f523cb66df1f75.bin b/Library/ShaderCache/3/3431a8070a6d19f730f523cb66df1f75.bin new file mode 100644 index 00000000..3780faa7 Binary files /dev/null and b/Library/ShaderCache/3/3431a8070a6d19f730f523cb66df1f75.bin differ diff --git a/Library/ShaderCache/3/356d9549870820fe46459ed23ee64bff.bin b/Library/ShaderCache/3/356d9549870820fe46459ed23ee64bff.bin new file mode 100644 index 00000000..6a2dc69a Binary files /dev/null and b/Library/ShaderCache/3/356d9549870820fe46459ed23ee64bff.bin differ diff --git a/Library/ShaderCache/3/3a7a61ca3856b114f778ad4f7b1ab3c8.bin b/Library/ShaderCache/3/3a7a61ca3856b114f778ad4f7b1ab3c8.bin new file mode 100644 index 00000000..1ee80b50 Binary files /dev/null and b/Library/ShaderCache/3/3a7a61ca3856b114f778ad4f7b1ab3c8.bin differ diff --git a/Library/ShaderCache/3/3e7cfa9d1afad4ad5b6d268d32955c8f.bin b/Library/ShaderCache/3/3e7cfa9d1afad4ad5b6d268d32955c8f.bin new file mode 100644 index 00000000..7cf0ecec Binary files /dev/null and b/Library/ShaderCache/3/3e7cfa9d1afad4ad5b6d268d32955c8f.bin differ diff --git a/Library/ShaderCache/3/3e7fffeea415aa268f30927e07fc8e44.bin b/Library/ShaderCache/3/3e7fffeea415aa268f30927e07fc8e44.bin new file mode 100644 index 00000000..1ee80b50 Binary files /dev/null and b/Library/ShaderCache/3/3e7fffeea415aa268f30927e07fc8e44.bin differ diff --git a/Library/ShaderCache/3/3fba59bda956ef12d56485db99508a17.bin b/Library/ShaderCache/3/3fba59bda956ef12d56485db99508a17.bin new file mode 100644 index 00000000..cf02def3 Binary files /dev/null and b/Library/ShaderCache/3/3fba59bda956ef12d56485db99508a17.bin differ diff --git a/Library/ShaderCache/4/4094da0d3b82cec6ba29e664c6622647.bin b/Library/ShaderCache/4/4094da0d3b82cec6ba29e664c6622647.bin new file mode 100644 index 00000000..205d6eb8 Binary files /dev/null and b/Library/ShaderCache/4/4094da0d3b82cec6ba29e664c6622647.bin differ diff --git a/Library/ShaderCache/4/412b25cb0bdabd8d42cf1a7b253506c0.bin b/Library/ShaderCache/4/412b25cb0bdabd8d42cf1a7b253506c0.bin new file mode 100644 index 00000000..8032dde7 Binary files /dev/null and b/Library/ShaderCache/4/412b25cb0bdabd8d42cf1a7b253506c0.bin differ diff --git a/Library/ShaderCache/4/4589ab55a793f78b924ddcee37870982.bin b/Library/ShaderCache/4/4589ab55a793f78b924ddcee37870982.bin new file mode 100644 index 00000000..343c293e Binary files /dev/null and b/Library/ShaderCache/4/4589ab55a793f78b924ddcee37870982.bin differ diff --git a/Library/ShaderCache/4/4ced24fcd9ebf9554d52eb56af9c6a04.bin b/Library/ShaderCache/4/4ced24fcd9ebf9554d52eb56af9c6a04.bin new file mode 100644 index 00000000..1e894083 Binary files /dev/null and b/Library/ShaderCache/4/4ced24fcd9ebf9554d52eb56af9c6a04.bin differ diff --git a/Library/ShaderCache/5/51326cb234b09321039b60c63d1f4ddc.bin b/Library/ShaderCache/5/51326cb234b09321039b60c63d1f4ddc.bin new file mode 100644 index 00000000..7860ef3d Binary files /dev/null and b/Library/ShaderCache/5/51326cb234b09321039b60c63d1f4ddc.bin differ diff --git a/Library/ShaderCache/5/5985e5d991fb7fa0b147a445d1e41dfb.bin b/Library/ShaderCache/5/5985e5d991fb7fa0b147a445d1e41dfb.bin new file mode 100644 index 00000000..f3d72c5c Binary files /dev/null and b/Library/ShaderCache/5/5985e5d991fb7fa0b147a445d1e41dfb.bin differ diff --git a/Library/ShaderCache/6/61dc282797b078a6d6d84845c67d7d4f.bin b/Library/ShaderCache/6/61dc282797b078a6d6d84845c67d7d4f.bin new file mode 100644 index 00000000..75724f99 Binary files /dev/null and b/Library/ShaderCache/6/61dc282797b078a6d6d84845c67d7d4f.bin differ diff --git a/Library/ShaderCache/6/6357c0452db8979ae0c6a4e1aad75377.bin b/Library/ShaderCache/6/6357c0452db8979ae0c6a4e1aad75377.bin new file mode 100644 index 00000000..3780faa7 Binary files /dev/null and b/Library/ShaderCache/6/6357c0452db8979ae0c6a4e1aad75377.bin differ diff --git a/Library/ShaderCache/6/6369c5c9799dbb77e45735af2c7b8acd.bin b/Library/ShaderCache/6/6369c5c9799dbb77e45735af2c7b8acd.bin new file mode 100644 index 00000000..1ee80b50 Binary files /dev/null and b/Library/ShaderCache/6/6369c5c9799dbb77e45735af2c7b8acd.bin differ diff --git a/Library/ShaderCache/6/65c3cd6f2aa42602cbf160f52b36670b.bin b/Library/ShaderCache/6/65c3cd6f2aa42602cbf160f52b36670b.bin new file mode 100644 index 00000000..a3244494 Binary files /dev/null and b/Library/ShaderCache/6/65c3cd6f2aa42602cbf160f52b36670b.bin differ diff --git a/Library/ShaderCache/6/699d4529319ee46122e08224590ea904.bin b/Library/ShaderCache/6/699d4529319ee46122e08224590ea904.bin new file mode 100644 index 00000000..9d64dda6 Binary files /dev/null and b/Library/ShaderCache/6/699d4529319ee46122e08224590ea904.bin differ diff --git a/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin b/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin new file mode 100644 index 00000000..0e71e148 Binary files /dev/null and b/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin differ diff --git a/Library/ShaderCache/6/6db1432f4567a9339673dc7664377eaa.bin b/Library/ShaderCache/6/6db1432f4567a9339673dc7664377eaa.bin new file mode 100644 index 00000000..b02c59cb Binary files /dev/null and b/Library/ShaderCache/6/6db1432f4567a9339673dc7664377eaa.bin differ diff --git a/Library/ShaderCache/7/7160ba4abc55fbf30c969faaf85a1f51.bin b/Library/ShaderCache/7/7160ba4abc55fbf30c969faaf85a1f51.bin new file mode 100644 index 00000000..9593844c Binary files /dev/null and b/Library/ShaderCache/7/7160ba4abc55fbf30c969faaf85a1f51.bin differ diff --git a/Library/ShaderCache/7/761a5206b9ab8994e499d054d82bef34.bin b/Library/ShaderCache/7/761a5206b9ab8994e499d054d82bef34.bin new file mode 100644 index 00000000..470fc492 Binary files /dev/null and b/Library/ShaderCache/7/761a5206b9ab8994e499d054d82bef34.bin differ diff --git a/Library/ShaderCache/7/76d211e5903f34fb08f0381a01190851.bin b/Library/ShaderCache/7/76d211e5903f34fb08f0381a01190851.bin new file mode 100644 index 00000000..7ee4b1c9 Binary files /dev/null and b/Library/ShaderCache/7/76d211e5903f34fb08f0381a01190851.bin differ diff --git a/Library/ShaderCache/7/784661c219cf49158e9ee5a935b3d0b8.bin b/Library/ShaderCache/7/784661c219cf49158e9ee5a935b3d0b8.bin new file mode 100644 index 00000000..b28b4940 Binary files /dev/null and b/Library/ShaderCache/7/784661c219cf49158e9ee5a935b3d0b8.bin differ diff --git a/Library/ShaderCache/8/804c07bc198e8fee7a1239a6972645b8.bin b/Library/ShaderCache/8/804c07bc198e8fee7a1239a6972645b8.bin new file mode 100644 index 00000000..ebfd62ef Binary files /dev/null and b/Library/ShaderCache/8/804c07bc198e8fee7a1239a6972645b8.bin differ diff --git a/Library/ShaderCache/8/8568e2291d1cd0438f34fba9eadacf5d.bin b/Library/ShaderCache/8/8568e2291d1cd0438f34fba9eadacf5d.bin new file mode 100644 index 00000000..5087b995 Binary files /dev/null and b/Library/ShaderCache/8/8568e2291d1cd0438f34fba9eadacf5d.bin differ diff --git a/Library/ShaderCache/8/8607b8a76998ff987fc910cb4b704236.bin b/Library/ShaderCache/8/8607b8a76998ff987fc910cb4b704236.bin new file mode 100644 index 00000000..9d64dda6 Binary files /dev/null and b/Library/ShaderCache/8/8607b8a76998ff987fc910cb4b704236.bin differ diff --git a/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin b/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin new file mode 100644 index 00000000..8a718977 Binary files /dev/null and b/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin differ diff --git a/Library/ShaderCache/8/895a75ad8fb306dad3c77a21a4e803d5.bin b/Library/ShaderCache/8/895a75ad8fb306dad3c77a21a4e803d5.bin new file mode 100644 index 00000000..cf02def3 Binary files /dev/null and b/Library/ShaderCache/8/895a75ad8fb306dad3c77a21a4e803d5.bin differ diff --git a/Library/ShaderCache/8/898ee2874bc5ddbb090e54679788e9e8.bin b/Library/ShaderCache/8/898ee2874bc5ddbb090e54679788e9e8.bin new file mode 100644 index 00000000..75724f99 Binary files /dev/null and b/Library/ShaderCache/8/898ee2874bc5ddbb090e54679788e9e8.bin differ diff --git a/Library/ShaderCache/8/8cf124df96f9e96815f1cf54eea4e8f2.bin b/Library/ShaderCache/8/8cf124df96f9e96815f1cf54eea4e8f2.bin new file mode 100644 index 00000000..ebfd62ef Binary files /dev/null and b/Library/ShaderCache/8/8cf124df96f9e96815f1cf54eea4e8f2.bin differ diff --git a/Library/ShaderCache/8/8dfbe45cbfef5056392d2e5098b078d7.bin b/Library/ShaderCache/8/8dfbe45cbfef5056392d2e5098b078d7.bin new file mode 100644 index 00000000..223ce514 Binary files /dev/null and b/Library/ShaderCache/8/8dfbe45cbfef5056392d2e5098b078d7.bin differ diff --git a/Library/ShaderCache/9/91b78446221f4148b8be914a910805b1.bin b/Library/ShaderCache/9/91b78446221f4148b8be914a910805b1.bin new file mode 100644 index 00000000..75724f99 Binary files /dev/null and b/Library/ShaderCache/9/91b78446221f4148b8be914a910805b1.bin differ diff --git a/Library/ShaderCache/9/936b8f36d64f7bc551ba748de01f904a.bin b/Library/ShaderCache/9/936b8f36d64f7bc551ba748de01f904a.bin new file mode 100644 index 00000000..a3244494 Binary files /dev/null and b/Library/ShaderCache/9/936b8f36d64f7bc551ba748de01f904a.bin differ diff --git a/Library/ShaderCache/9/975c6678a69d4f5869917996fd75cffb.bin b/Library/ShaderCache/9/975c6678a69d4f5869917996fd75cffb.bin new file mode 100644 index 00000000..2c54cec7 Binary files /dev/null and b/Library/ShaderCache/9/975c6678a69d4f5869917996fd75cffb.bin differ diff --git a/Library/ShaderCache/9/99ca84897e74b553037ed264a7456c2d.bin b/Library/ShaderCache/9/99ca84897e74b553037ed264a7456c2d.bin new file mode 100644 index 00000000..ebfd62ef Binary files /dev/null and b/Library/ShaderCache/9/99ca84897e74b553037ed264a7456c2d.bin differ diff --git a/Library/ShaderCache/9/9be4519fbf0195fa1a92baea0a18856e.bin b/Library/ShaderCache/9/9be4519fbf0195fa1a92baea0a18856e.bin new file mode 100644 index 00000000..8032dde7 Binary files /dev/null and b/Library/ShaderCache/9/9be4519fbf0195fa1a92baea0a18856e.bin differ diff --git a/Library/ShaderCache/9/9c17abb144e38445056934bc5648d59a.bin b/Library/ShaderCache/9/9c17abb144e38445056934bc5648d59a.bin new file mode 100644 index 00000000..be29c706 Binary files /dev/null and b/Library/ShaderCache/9/9c17abb144e38445056934bc5648d59a.bin differ diff --git a/Library/ShaderCache/9/9d5c4b0eb1f6bb9f4d838f0bc26278fb.bin b/Library/ShaderCache/9/9d5c4b0eb1f6bb9f4d838f0bc26278fb.bin new file mode 100644 index 00000000..5087b995 Binary files /dev/null and b/Library/ShaderCache/9/9d5c4b0eb1f6bb9f4d838f0bc26278fb.bin differ diff --git a/Library/ShaderCache/9/9ef357c2a057771d039b97ffa6c5dc60.bin b/Library/ShaderCache/9/9ef357c2a057771d039b97ffa6c5dc60.bin new file mode 100644 index 00000000..895c2655 Binary files /dev/null and b/Library/ShaderCache/9/9ef357c2a057771d039b97ffa6c5dc60.bin differ diff --git a/Library/ShaderCache/EditorEncounteredVariants b/Library/ShaderCache/EditorEncounteredVariants index deb8e29f..93edffc7 100644 Binary files a/Library/ShaderCache/EditorEncounteredVariants and b/Library/ShaderCache/EditorEncounteredVariants differ diff --git a/Library/ShaderCache/a/a1b55df285609f405802f899720dea77.bin b/Library/ShaderCache/a/a1b55df285609f405802f899720dea77.bin new file mode 100644 index 00000000..7ee4b1c9 Binary files /dev/null and b/Library/ShaderCache/a/a1b55df285609f405802f899720dea77.bin differ diff --git a/Library/ShaderCache/a/a49a4d755fdd50954e0482a60a709cdf.bin b/Library/ShaderCache/a/a49a4d755fdd50954e0482a60a709cdf.bin new file mode 100644 index 00000000..1e894083 Binary files /dev/null and b/Library/ShaderCache/a/a49a4d755fdd50954e0482a60a709cdf.bin differ diff --git a/Library/ShaderCache/a/a4be75e39df89e4ed926cc14c9087337.bin b/Library/ShaderCache/a/a4be75e39df89e4ed926cc14c9087337.bin new file mode 100644 index 00000000..75724f99 Binary files /dev/null and b/Library/ShaderCache/a/a4be75e39df89e4ed926cc14c9087337.bin differ diff --git a/Library/ShaderCache/a/a8c1f8b5bfdfed7ff827ddfc6265e60e.bin b/Library/ShaderCache/a/a8c1f8b5bfdfed7ff827ddfc6265e60e.bin new file mode 100644 index 00000000..3e5e09a1 Binary files /dev/null and b/Library/ShaderCache/a/a8c1f8b5bfdfed7ff827ddfc6265e60e.bin differ diff --git a/Library/ShaderCache/a/a9d9cc552676462cccfb323f2d2468d3.bin b/Library/ShaderCache/a/a9d9cc552676462cccfb323f2d2468d3.bin new file mode 100644 index 00000000..7860ef3d Binary files /dev/null and b/Library/ShaderCache/a/a9d9cc552676462cccfb323f2d2468d3.bin differ diff --git a/Library/ShaderCache/a/a9dc152b794a03f10f4b6429a6ea1bb2.bin b/Library/ShaderCache/a/a9dc152b794a03f10f4b6429a6ea1bb2.bin new file mode 100644 index 00000000..b28b4940 Binary files /dev/null and b/Library/ShaderCache/a/a9dc152b794a03f10f4b6429a6ea1bb2.bin differ diff --git a/Library/ShaderCache/a/ae897b1d99ea8e35852b1faa04e1e888.bin b/Library/ShaderCache/a/ae897b1d99ea8e35852b1faa04e1e888.bin new file mode 100644 index 00000000..b28b4940 Binary files /dev/null and b/Library/ShaderCache/a/ae897b1d99ea8e35852b1faa04e1e888.bin differ diff --git a/Library/ShaderCache/b/b3bcd99ae5c97c1595dc474bb71bec33.bin b/Library/ShaderCache/b/b3bcd99ae5c97c1595dc474bb71bec33.bin new file mode 100644 index 00000000..73398dc6 Binary files /dev/null and b/Library/ShaderCache/b/b3bcd99ae5c97c1595dc474bb71bec33.bin differ diff --git a/Library/ShaderCache/b/b8816d694b2e806d9e10b5a0403f4a68.bin b/Library/ShaderCache/b/b8816d694b2e806d9e10b5a0403f4a68.bin new file mode 100644 index 00000000..5087b995 Binary files /dev/null and b/Library/ShaderCache/b/b8816d694b2e806d9e10b5a0403f4a68.bin differ diff --git a/Library/ShaderCache/b/baacaf76c24ddaed453ec6b21660bbfb.bin b/Library/ShaderCache/b/baacaf76c24ddaed453ec6b21660bbfb.bin new file mode 100644 index 00000000..5087b995 Binary files /dev/null and b/Library/ShaderCache/b/baacaf76c24ddaed453ec6b21660bbfb.bin differ diff --git a/Library/ShaderCache/b/bcf49c1abf7fcc4f0447619ac0b15e6f.bin b/Library/ShaderCache/b/bcf49c1abf7fcc4f0447619ac0b15e6f.bin new file mode 100644 index 00000000..cf02def3 Binary files /dev/null and b/Library/ShaderCache/b/bcf49c1abf7fcc4f0447619ac0b15e6f.bin differ diff --git a/Library/ShaderCache/c/c64eb32739d9ca3483f965013bfe2791.bin b/Library/ShaderCache/c/c64eb32739d9ca3483f965013bfe2791.bin new file mode 100644 index 00000000..88499dfe Binary files /dev/null and b/Library/ShaderCache/c/c64eb32739d9ca3483f965013bfe2791.bin differ diff --git a/Library/ShaderCache/c/c794fa8526b3f369b15da2c7bf46ee85.bin b/Library/ShaderCache/c/c794fa8526b3f369b15da2c7bf46ee85.bin new file mode 100644 index 00000000..f83fccdb Binary files /dev/null and b/Library/ShaderCache/c/c794fa8526b3f369b15da2c7bf46ee85.bin differ diff --git a/Library/ShaderCache/d/d75a745d9d6345e45f0cac780dac1386.bin b/Library/ShaderCache/d/d75a745d9d6345e45f0cac780dac1386.bin new file mode 100644 index 00000000..9d64dda6 Binary files /dev/null and b/Library/ShaderCache/d/d75a745d9d6345e45f0cac780dac1386.bin differ diff --git a/Library/ShaderCache/d/d7d0bb4b3b8f47e9800b61111f96d6a9.bin b/Library/ShaderCache/d/d7d0bb4b3b8f47e9800b61111f96d6a9.bin new file mode 100644 index 00000000..8032dde7 Binary files /dev/null and b/Library/ShaderCache/d/d7d0bb4b3b8f47e9800b61111f96d6a9.bin differ diff --git a/Library/ShaderCache/d/ddd0e46f59dbef3cb6b0f9b287eb749f.bin b/Library/ShaderCache/d/ddd0e46f59dbef3cb6b0f9b287eb749f.bin new file mode 100644 index 00000000..b28b4940 Binary files /dev/null and b/Library/ShaderCache/d/ddd0e46f59dbef3cb6b0f9b287eb749f.bin differ diff --git a/Library/ShaderCache/e/e33751c11f03446be1b646f7cd58f07c.bin b/Library/ShaderCache/e/e33751c11f03446be1b646f7cd58f07c.bin new file mode 100644 index 00000000..a3244494 Binary files /dev/null and b/Library/ShaderCache/e/e33751c11f03446be1b646f7cd58f07c.bin differ diff --git a/Library/ShaderCache/e/e61948844ef42abff011b6a55e7accff.bin b/Library/ShaderCache/e/e61948844ef42abff011b6a55e7accff.bin new file mode 100644 index 00000000..3780faa7 Binary files /dev/null and b/Library/ShaderCache/e/e61948844ef42abff011b6a55e7accff.bin differ diff --git a/Library/ShaderCache/e/e927bc10ede2e41ab18e3cb310a018ca.bin b/Library/ShaderCache/e/e927bc10ede2e41ab18e3cb310a018ca.bin new file mode 100644 index 00000000..f83fccdb Binary files /dev/null and b/Library/ShaderCache/e/e927bc10ede2e41ab18e3cb310a018ca.bin differ diff --git a/Library/ShaderCache/f/f2593393d8a647abf90166be847f2cb0.bin b/Library/ShaderCache/f/f2593393d8a647abf90166be847f2cb0.bin new file mode 100644 index 00000000..433d785d Binary files /dev/null and b/Library/ShaderCache/f/f2593393d8a647abf90166be847f2cb0.bin differ diff --git a/Library/ShaderCache/f/fbee830b05e54f8434e9e1872c082244.bin b/Library/ShaderCache/f/fbee830b05e54f8434e9e1872c082244.bin new file mode 100644 index 00000000..a3244494 Binary files /dev/null and b/Library/ShaderCache/f/fbee830b05e54f8434e9e1872c082244.bin differ diff --git a/Library/ShaderCache/f/fcad2a47aecb20ea6f73c8ab5158b80f.bin b/Library/ShaderCache/f/fcad2a47aecb20ea6f73c8ab5158b80f.bin new file mode 100644 index 00000000..cf02def3 Binary files /dev/null and b/Library/ShaderCache/f/fcad2a47aecb20ea6f73c8ab5158b80f.bin differ diff --git a/Library/ShaderCache/f/fd8fc82956fd9df51e48ebe411288201.bin b/Library/ShaderCache/f/fd8fc82956fd9df51e48ebe411288201.bin new file mode 100644 index 00000000..433d785d Binary files /dev/null and b/Library/ShaderCache/f/fd8fc82956fd9df51e48ebe411288201.bin differ diff --git a/Library/ShaderCache/f/fdb28a2101031c72e15b01d7e79708df.bin b/Library/ShaderCache/f/fdb28a2101031c72e15b01d7e79708df.bin new file mode 100644 index 00000000..1e894083 Binary files /dev/null and b/Library/ShaderCache/f/fdb28a2101031c72e15b01d7e79708df.bin differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index 1269392c..578c95c9 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Library/SourceAssetDB-lock b/Library/SourceAssetDB-lock index 1d3c475f..aed7691b 100644 Binary files a/Library/SourceAssetDB-lock and b/Library/SourceAssetDB-lock differ diff --git a/Library/StateCache/Hierarchy/9e2b48-mainStage.json b/Library/StateCache/Hierarchy/9e2b48-mainStage.json new file mode 100644 index 00000000..4461fa5f --- /dev/null +++ b/Library/StateCache/Hierarchy/9e2b48-mainStage.json @@ -0,0 +1 @@ +{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file diff --git a/Library/StateCache/MainStageHierarchy/21/21cdc808b271872e07bcb7ca60ff1025.json b/Library/StateCache/MainStageHierarchy/21/21cdc808b271872e07bcb7ca60ff1025.json new file mode 100644 index 00000000..8ef437d2 --- /dev/null +++ b/Library/StateCache/MainStageHierarchy/21/21cdc808b271872e07bcb7ca60ff1025.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedSceneGameObjectInstanceIDs":[],"m_LastClickedInstanceID":0,"m_OpenSceneGUIDs":[]} \ No newline at end of file diff --git a/Library/StateCache/MainStageHierarchy/d4/d4c9636ad742fe4958d4786bfe24fb78.json b/Library/StateCache/MainStageHierarchy/d4/d4c9636ad742fe4958d4786bfe24fb78.json index 8ef437d2..0739780f 100644 --- a/Library/StateCache/MainStageHierarchy/d4/d4c9636ad742fe4958d4786bfe24fb78.json +++ b/Library/StateCache/MainStageHierarchy/d4/d4c9636ad742fe4958d4786bfe24fb78.json @@ -1 +1 @@ -{"m_ScrollY":0.0,"m_ExpandedSceneGameObjectInstanceIDs":[],"m_LastClickedInstanceID":0,"m_OpenSceneGUIDs":[]} \ No newline at end of file +{"m_ScrollY":0.0,"m_ExpandedSceneGameObjectInstanceIDs":[-1290],"m_LastClickedInstanceID":0,"m_OpenSceneGUIDs":["2cda990e2423bbf4892e6590ba056729"]} \ No newline at end of file diff --git a/Library/StateCache/PrefabStageHierarchy/23/2369041d90848f771f22f1c9df70c7ae.json b/Library/StateCache/PrefabStageHierarchy/23/2369041d90848f771f22f1c9df70c7ae.json new file mode 100644 index 00000000..91ee1b83 --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/23/2369041d90848f771f22f1c9df70c7ae.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[3374814057080039205],"m_LastClickedFileID":3374814057080039205} \ No newline at end of file diff --git a/Library/StateCache/PrefabStageHierarchy/58/58112c0005a23fb441ea5f9385f83f63.json b/Library/StateCache/PrefabStageHierarchy/58/58112c0005a23fb441ea5f9385f83f63.json new file mode 100644 index 00000000..2316811c --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/58/58112c0005a23fb441ea5f9385f83f63.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[6430420715247838375,6430420715689402757],"m_LastClickedFileID":0} \ No newline at end of file diff --git a/Library/StateCache/SceneView/49/49e47f34d5ec2c69aaeffbba8ebcf749.json b/Library/StateCache/SceneView/49/49e47f34d5ec2c69aaeffbba8ebcf749.json new file mode 100644 index 00000000..adcca47f --- /dev/null +++ b/Library/StateCache/SceneView/49/49e47f34d5ec2c69aaeffbba8ebcf749.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":1040.9998779296875,"y":1359.739990234375,"z":0.0},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":183.8906707763672,"orthographic":true} \ No newline at end of file diff --git a/Library/StateCache/SceneView/75/75efcfdb6a9f30ad6369c74984276677.json b/Library/StateCache/SceneView/75/75efcfdb6a9f30ad6369c74984276677.json index 1db6bb73..ccc158b0 100644 --- a/Library/StateCache/SceneView/75/75efcfdb6a9f30ad6369c74984276677.json +++ b/Library/StateCache/SceneView/75/75efcfdb6a9f30ad6369c74984276677.json @@ -1 +1 @@ -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":-3.7004401683807375,"y":1.1114931106567383,"z":-0.5695116519927979},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":7.142680644989014,"orthographic":true} \ No newline at end of file +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":960.0,"y":540.0,"z":0.0},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":1101.45361328125,"orthographic":true} \ No newline at end of file diff --git a/Library/StateCache/SceneView/ab/abedff0ee783d283e8cd9260b9277e24.json b/Library/StateCache/SceneView/ab/abedff0ee783d283e8cd9260b9277e24.json new file mode 100644 index 00000000..4e6ed6e1 --- /dev/null +++ b/Library/StateCache/SceneView/ab/abedff0ee783d283e8cd9260b9277e24.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":389.57501220703127,"y":-184.57997131347657,"z":0.0},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":174.95281982421876,"orthographic":true} \ No newline at end of file diff --git a/Library/StateCache/SceneView/f2/f2c60c05e96b6b709d6ff290917a5477.json b/Library/StateCache/SceneView/f2/f2c60c05e96b6b709d6ff290917a5477.json new file mode 100644 index 00000000..a5aa3079 --- /dev/null +++ b/Library/StateCache/SceneView/f2/f2c60c05e96b6b709d6ff290917a5477.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":960.0001220703125,"y":547.7717895507813,"z":0.0},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":479.73388671875,"orthographic":true} \ No newline at end of file diff --git a/Library/StateCache/SceneView/fb2415-mainStage.json b/Library/StateCache/SceneView/fb2415-mainStage.json new file mode 100644 index 00000000..1d4538c3 --- /dev/null +++ b/Library/StateCache/SceneView/fb2415-mainStage.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":366.2980651855469,"y":290.2071838378906,"z":-33.678253173828128},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":323.7328796386719,"orthographic":true} \ No newline at end of file diff --git a/Library/shadercompiler-UnityShaderCompiler.exe0.log b/Library/shadercompiler-UnityShaderCompiler.exe0.log index a6a64847..76f5459b 100644 --- a/Library/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Library/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,2 +1,50 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: preprocess + insize=2439 outsize=823 ok=1 +Cmd: preprocess + insize=7643 outsize=2454 ok=1 +Cmd: preprocess + insize=3499 outsize=1246 ok=1 +Cmd: preprocess + insize=1633 outsize=547 ok=1 +Cmd: preprocess + insize=12000 outsize=4583 ok=1 +Cmd: preprocess + insize=3524 outsize=2639 ok=1 +Cmd: preprocess + insize=4355 outsize=3655 ok=1 +Cmd: preprocess + insize=3497 outsize=1293 ok=1 +Cmd: preprocess + insize=10600 outsize=3936 ok=1 +Cmd: preprocess + insize=3071 outsize=2724 ok=1 +Cmd: preprocess + insize=4367 outsize=712 ok=1 +Cmd: preprocess + insize=2414 outsize=2035 ok=1 +Cmd: preprocess + insize=7822 outsize=2720 ok=1 +Cmd: preprocess + insize=10585 outsize=3927 ok=1 +Cmd: preprocess + insize=3549 outsize=1653 ok=1 +Cmd: preprocess + insize=2397 outsize=857 ok=1 +Cmd: preprocess + insize=7674 outsize=2466 ok=1 +Cmd: preprocess + insize=2354 outsize=1124 ok=1 +Cmd: compileSnippet + api=4 type=0 insize=5648 outsize=3702 kw=OUTLINE_ON UNDERLAY_ON pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=5648 outsize=934 kw=OUTLINE_ON UNDERLAY_ON pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=5648 outsize=3098 kw=OUTLINE_ON pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=5648 outsize=578 kw=OUTLINE_ON pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=5648 outsize=3098 kw= pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=5648 outsize=498 kw= pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/Library/shadercompiler-UnityShaderCompiler.exe1.log b/Library/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 00000000..a8862ca5 --- /dev/null +++ b/Library/shadercompiler-UnityShaderCompiler.exe1.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=0 insize=2984 outsize=1306 kw= pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/Library/shadercompiler-UnityShaderCompiler.exe2.log b/Library/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 00000000..bd50f9eb --- /dev/null +++ b/Library/shadercompiler-UnityShaderCompiler.exe2.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=1 insize=2984 outsize=470 kw= pd=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_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt new file mode 100644 index 00000000..ecfc41e0 --- /dev/null +++ b/Logs/ApiUpdaterCheck.txt @@ -0,0 +1,220 @@ +[api-updater (non-obsolete-error-filter)] 12.01.2022 18:54:45 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 829,1633ms +moved types parse time: 50ms +candidates parse time : 1ms +C# parse time : 211ms +candidates check time : 41ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:05:00 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 86,767ms +moved types parse time: 43ms +candidates parse time : 1ms +C# parse time : 179ms +candidates check time : 69ms +console write time : 2ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:06:25 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 58,84ms +moved types parse time: 47ms +candidates parse time : 1ms +C# parse time : 164ms +candidates check time : 41ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:06:59 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 55,8508ms +moved types parse time: 47ms +candidates parse time : 1ms +C# parse time : 187ms +candidates check time : 44ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:07:02 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 63,0506ms +moved types parse time: 42ms +candidates parse time : 1ms +C# parse time : 170ms +candidates check time : 44ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:07:14 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 61,8329ms +moved types parse time: 46ms +candidates parse time : 1ms +C# parse time : 158ms +candidates check time : 53ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:39:47 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 91,0776ms +moved types parse time: 43ms +candidates parse time : 1ms +C# parse time : 148ms +candidates check time : 38ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:39:55 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 53,8606ms +moved types parse time: 52ms +candidates parse time : 0ms +C# parse time : 147ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:41:09 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 64,8267ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 144ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 19:41:24 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 56,8788ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 144ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:02:49 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 858,9375ms +moved types parse time: 43ms +candidates parse time : 1ms +C# parse time : 221ms +candidates check time : 75ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:03:06 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 82,845ms +moved types parse time: 50ms +candidates parse time : 1ms +C# parse time : 172ms +candidates check time : 63ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:04:05 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 78,7882ms +moved types parse time: 50ms +candidates parse time : 1ms +C# parse time : 174ms +candidates check time : 74ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:04:24 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 82,778ms +moved types parse time: 50ms +candidates parse time : 1ms +C# parse time : 189ms +candidates check time : 72ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:04:46 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 72,262ms +moved types parse time: 47ms +candidates parse time : 1ms +C# parse time : 165ms +candidates check time : 49ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:04:50 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 75,7983ms +moved types parse time: 43ms +candidates parse time : 1ms +C# parse time : 175ms +candidates check time : 49ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:06:41 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 77,793ms +moved types parse time: 42ms +candidates parse time : 1ms +C# parse time : 148ms +candidates check time : 49ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:06:49 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 70,8432ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 166ms +candidates check time : 50ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:07:00 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 69,817ms +moved types parse time: 47ms +candidates parse time : 1ms +C# parse time : 163ms +candidates check time : 49ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 12.01.2022 23:32:41 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 91,9385ms +moved types parse time: 49ms +candidates parse time : 1ms +C# parse time : 166ms +candidates check time : 36ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 13.01.2022 0:11:31 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 124,2972ms +moved types parse time: 45ms +candidates parse time : 1ms +C# parse time : 156ms +candidates check time : 38ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 13.01.2022 0:26:35 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 114,6947ms +moved types parse time: 47ms +candidates parse time : 1ms +C# parse time : 165ms +candidates check time : 22ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index a3b519b1..8e397408 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -11,19 +11,19 @@ C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -C:/Users/Dara/Documents/Project_omega +C:/Users/Dara/Documents/1/PO -logFile Logs/AssetImportWorker0.log -srvPort -58978 -Successfully changed project path to: C:/Users/Dara/Documents/Project_omega -C:/Users/Dara/Documents/Project_omega +50949 +Successfully changed project path to: C:/Users/Dara/Documents/1/PO +C:/Users/Dara/Documents/1/PO Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 37.87 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 55.89 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path C:/Users/Dara/Documents/Project_omega/Assets +[Subsystems] Discovering subsystems at path C:/Users/Dara/Documents/1/PO/Assets GfxDevice: creating device client; threaded=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -35,82 +35,82 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56924 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56172 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll -Registered in 0.002266 seconds. +Registered in 0.002298 seconds. Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 35.57 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 45.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.140 seconds +- Completed reload, in 3.282 seconds Domain Reload Profiling: - ReloadAssembly (1141ms) - BeginReloadAssembly (44ms) + ReloadAssembly (3282ms) + BeginReloadAssembly (68ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (372ms) - LoadAssemblies (43ms) + EndReloadAssembly (438ms) + LoadAssemblies (66ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (132ms) + SetupTypeCache (162ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (27ms) - SetupLoadedEditorAssemblies (148ms) + RebuildScriptCaches (29ms) + SetupLoadedEditorAssemblies (172ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (36ms) + RefreshPlugins (45ms) BeforeProcessingInitializeOnLoad (14ms) - ProcessInitializeOnLoadAttributes (66ms) - ProcessInitializeOnLoadMethodAttributes (24ms) + ProcessInitializeOnLoadAttributes (79ms) + ProcessInitializeOnLoadMethodAttributes (27ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002475 seconds. +Registered in 0.002437 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 34.47 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 38.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.978 seconds +- Completed reload, in 1.025 seconds Domain Reload Profiling: - ReloadAssembly (979ms) - BeginReloadAssembly (127ms) + ReloadAssembly (1025ms) + BeginReloadAssembly (132ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (20ms) - EndReloadAssembly (797ms) - LoadAssemblies (79ms) + CreateAndSetChildDomain (16ms) + EndReloadAssembly (837ms) + LoadAssemblies (82ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (263ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (303ms) + SetupTypeCache (276ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (323ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (35ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (181ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + RefreshPlugins (38ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (13ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -118,15 +118,15 @@ Domain Reload Profiling: Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2093 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 93.1 MB. -System memory in use after: 93.2 MB. +Unloading 2123 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.7 MB. +System memory in use after: 95.8 MB. -Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2532. -Total: 2.954500 ms (FindLiveObjects: 0.246000 ms CreateObjectMapping: 0.095200 ms MarkObjects: 2.552700 ms DeleteObjects: 0.059700 ms) +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2563. +Total: 3.180500 ms (FindLiveObjects: 0.233600 ms CreateObjectMapping: 0.090200 ms MarkObjects: 2.800400 ms DeleteObjects: 0.055200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -140,145 +140,92 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Prefabs - artifactKey: Guid(3be05d0c81f39e749aa46106193c4b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs using Guid(3be05d0c81f39e749aa46106193c4b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5715128df5d4580993a8173c4112e970') in 0.008705 seconds - Import took 0.012956 seconds . + path: Assets/Prefabs/Cards/SmallHealing.prefab + artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f043e25087a7bec7dac0769741a7a2b') in 0.066269 seconds + Import took 0.070068 seconds . ======================================================================== Received Import Request. - Time since last request: 1.978611 seconds. - path: Assets/Scenes - artifactKey: Guid(86292b13eaf87f14284e767a4e0c0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes using Guid(86292b13eaf87f14284e767a4e0c0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '051619c5a0f7199da45e7420f719593f') in 0.011227 seconds - Import took 0.016570 seconds . + Time since last request: 0.000180 seconds. + path: Assets/Prefabs/Cards/BigHealing.prefab + artifactKey: Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/BigHealing.prefab using Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f928076ea48d09626d9999b58ac5ae6') in 0.013875 seconds + Import took 0.018054 seconds . ======================================================================== Received Import Request. - Time since last request: 2.237694 seconds. - path: Assets/Scripts - artifactKey: Guid(268f4b630bb2a4644835e9eaec8983de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts using Guid(268f4b630bb2a4644835e9eaec8983de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b178e5c4887f41c010862221d8f46596') in 0.008035 seconds - Import took 0.013376 seconds . + Time since last request: 0.000211 seconds. + path: Assets/Prefabs/Cards/SmallDamagePrefab.prefab + artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/SmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e2c9ed9bf4fb26c63477f15cbd2499b') in 0.016423 seconds + Import took 0.023040 seconds . ======================================================================== Received Import Request. - Time since last request: 1.013362 seconds. - path: Assets/Scripts/PlayerManager.cs - artifactKey: Guid(3b2f9550bca82914fbd0921e3d487778) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/PlayerManager.cs using Guid(3b2f9550bca82914fbd0921e3d487778) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f14f8d001d8fc0f0c699d7f5aa64ad4d') in 0.027430 seconds - Import took 0.030849 seconds . + Time since last request: 0.001085 seconds. + path: Assets/Prefabs/Cards/BigDamagePrefab.prefab + artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/BigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d56ee5b9b2ea09508d3df4de3fc252c') in 0.013547 seconds + Import took 0.022113 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000418 seconds. + path: Assets/Prefabs/Cards/Standart/Card.prefab + artifactKey: Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/Standart/Card.prefab using Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72ee2b4d4e79309486a653181ded8872') in 0.019805 seconds + Import took 0.024430 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002838 seconds. +Registered in 0.006848 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.161 seconds +- Completed reload, in 1.089 seconds Domain Reload Profiling: - ReloadAssembly (1162ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (939ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (373ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (287ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (180ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Shader 'TextMeshPro/Distance Field Overlay': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'TextMeshPro/Distance Field SSD': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 94.6 MB. - -Unloading 27 unused Assets to reduce memory usage. Loaded Objects now: 2551. -Total: 3.572600 ms (FindLiveObjects: 0.392300 ms CreateObjectMapping: 0.131900 ms MarkObjects: 2.786800 ms DeleteObjects: 0.258700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003287 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.944 seconds -Domain Reload Profiling: - ReloadAssembly (945ms) - BeginReloadAssembly (109ms) + ReloadAssembly (1090ms) + BeginReloadAssembly (122ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - EndReloadAssembly (775ms) - LoadAssemblies (94ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (898ms) + LoadAssemblies (83ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (267ms) + SetupTypeCache (334ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (276ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (318ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (180ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (204ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (7ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (13ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.2 MB. -System memory in use after: 94.7 MB. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.1 MB. -Unloading 27 unused Assets to reduce memory usage. Loaded Objects now: 2554. -Total: 7.452300 ms (FindLiveObjects: 0.452000 ms CreateObjectMapping: 0.223100 ms MarkObjects: 6.016700 ms DeleteObjects: 0.758800 ms) +Unloading 19 unused Assets to reduce memory usage. Loaded Objects now: 2565. +Total: 3.666000 ms (FindLiveObjects: 0.229700 ms CreateObjectMapping: 0.110000 ms MarkObjects: 3.290600 ms DeleteObjects: 0.034100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -288,6 +235,68 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.461611 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.467 seconds +Domain Reload Profiling: + ReloadAssembly (1468ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1295ms) + LoadAssemblies (410ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (300ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (111ms) + SetupLoadedEditorAssemblies (308ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2567. +Total: 3.126200 ms (FindLiveObjects: 0.228000 ms CreateObjectMapping: 0.130800 ms MarkObjects: 2.745600 ms DeleteObjects: 0.020600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 43531ddc..12812dd0 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ C:/Users/Dara/Documents/1/PO -logFile Logs/AssetImportWorker0.log -srvPort -51111 +62811 Successfully changed project path to: C:/Users/Dara/Documents/1/PO C:/Users/Dara/Documents/1/PO Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 36.94 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 38.65 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems @@ -35,98 +35,98 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56560 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56432 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll -Registered in 0.002269 seconds. +Registered in 0.002212 seconds. Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 36.75 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 39.79 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.046 seconds +- Completed reload, in 1.027 seconds Domain Reload Profiling: - ReloadAssembly (1046ms) - BeginReloadAssembly (44ms) + ReloadAssembly (1027ms) + BeginReloadAssembly (46ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (378ms) - LoadAssemblies (43ms) + EndReloadAssembly (376ms) + LoadAssemblies (45ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (133ms) + SetupTypeCache (132ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (27ms) - SetupLoadedEditorAssemblies (160ms) + SetupLoadedEditorAssemblies (151ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (37ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (76ms) - ProcessInitializeOnLoadMethodAttributes (27ms) + RefreshPlugins (40ms) + BeforeProcessingInitializeOnLoad (14ms) + ProcessInitializeOnLoadAttributes (67ms) + ProcessInitializeOnLoadMethodAttributes (23ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002766 seconds. +Registered in 0.002286 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 66.92 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 36.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.233 seconds +- Completed reload, in 0.950 seconds Domain Reload Profiling: - ReloadAssembly (1234ms) - BeginReloadAssembly (133ms) + ReloadAssembly (951ms) + BeginReloadAssembly (127ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (17ms) - EndReloadAssembly (1033ms) - LoadAssemblies (94ms) + EndReloadAssembly (772ms) + LoadAssemblies (78ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (344ms) + SetupTypeCache (255ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (55ms) - SetupLoadedEditorAssemblies (398ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (290ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (67ms) - BeforeProcessingInitializeOnLoad (106ms) - ProcessInitializeOnLoadAttributes (198ms) - ProcessInitializeOnLoadMethodAttributes (13ms) + RefreshPlugins (37ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (6ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2122 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.7 MB. -System memory in use after: 95.8 MB. +Unloading 2123 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.6 MB. +System memory in use after: 95.7 MB. -Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2562. -Total: 3.216400 ms (FindLiveObjects: 0.213200 ms CreateObjectMapping: 0.093600 ms MarkObjects: 2.837000 ms DeleteObjects: 0.071100 ms) +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2563. +Total: 2.860200 ms (FindLiveObjects: 0.236000 ms CreateObjectMapping: 0.090900 ms MarkObjects: 2.478600 ms DeleteObjects: 0.053800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -140,9 +140,7382 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/Enemy.cs - artifactKey: Guid(587c6949cb7f3474e9ceb46c0268bb12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy.cs using Guid(587c6949cb7f3474e9ceb46c0268bb12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc8a3addb0b60beedcd21d67437ec233') in 0.028946 seconds - Import took 0.033060 seconds . + path: Assets/Scripts/Configs/CardConfig.cs + artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abbc7608c8a43d8487aca7794cfddeaf') in 0.026612 seconds + Import took 0.032709 seconds . -AssetImportWorkerClient::OnTransportError - code=2 error=End of file +======================================================================== +Received Import Request. + Time since last request: 0.000186 seconds. + path: Assets/Scripts/Configs + artifactKey: Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs using Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '713bed461ae6034ae4e6ec70e5ebc847') in 0.005285 seconds + Import took 0.008753 seconds . + +======================================================================== +Received Import Request. + Time since last request: 54.577920 seconds. + path: Assets/Scripts/Card.cs + artifactKey: Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Card.cs using Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b65e3127142612a61b4b326cdedb9b82') in 0.006367 seconds + Import took 0.010473 seconds . + +======================================================================== +Received Import Request. + Time since last request: 176.589747 seconds. + path: Assets/Scripts/Card.cs + artifactKey: Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Card.cs using Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9766d58d69934dd63b60e132b26032e2') in 0.003360 seconds + Import took 0.008604 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003841 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.060 seconds +Domain Reload Profiling: + ReloadAssembly (1060ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (826ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (269ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (283ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 93.9 MB. +System memory in use after: 94.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2565. +Total: 2.921200 ms (FindLiveObjects: 0.196700 ms CreateObjectMapping: 0.085600 ms MarkObjects: 2.623400 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 9.668605 seconds. + path: Assets/Prefabs/Cards + artifactKey: Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards using Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '954b9adfa4c975d84af16527407bb810') in 0.009773 seconds + Import took 0.014136 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.883831 seconds. + path: Assets/Prefabs/Cards/BigDamagePrefab.prefab + artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/BigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ec202cbe30ee9d720f31b781b15eaaa') in 0.049765 seconds + Import took 0.053631 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.406991 seconds. + path: Assets/Prefabs/Cards/BigDamagePrefab.prefab + artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/BigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1093aed0b842ad45217ad1dc928ac02') in 0.011452 seconds + Import took 0.016078 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002908 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.020 seconds +Domain Reload Profiling: + ReloadAssembly (1020ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (838ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (278ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (300ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.1 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2567. +Total: 2.834400 ms (FindLiveObjects: 0.220900 ms CreateObjectMapping: 0.085400 ms MarkObjects: 2.498900 ms DeleteObjects: 0.027600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 50.974921 seconds. + path: Assets/Prefabs/Cards/BigDamagePrefab.prefab + artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/BigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '329ebe30c3f4897da6a92d59d5988ac0') in 0.039657 seconds + Import took 0.043427 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003291 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.014 seconds +Domain Reload Profiling: + ReloadAssembly (1014ms) + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (847ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (303ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.1 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2569. +Total: 2.868800 ms (FindLiveObjects: 0.199700 ms CreateObjectMapping: 0.074100 ms MarkObjects: 2.568200 ms DeleteObjects: 0.025900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003777 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.018 seconds +Domain Reload Profiling: + ReloadAssembly (1018ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (842ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (276ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2571. +Total: 2.542700 ms (FindLiveObjects: 0.194900 ms CreateObjectMapping: 0.077700 ms MarkObjects: 2.254400 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002263 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.094 seconds +Domain Reload Profiling: + ReloadAssembly (1094ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (906ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.0 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2573. +Total: 3.206200 ms (FindLiveObjects: 0.232600 ms CreateObjectMapping: 0.092400 ms MarkObjects: 2.858100 ms DeleteObjects: 0.021500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002374 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.011 seconds +Domain Reload Profiling: + ReloadAssembly (1011ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (826ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2575. +Total: 2.639800 ms (FindLiveObjects: 0.189800 ms CreateObjectMapping: 0.080200 ms MarkObjects: 2.352500 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002380 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.988 seconds +Domain Reload Profiling: + ReloadAssembly (989ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (821ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (260ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2577. +Total: 2.735900 ms (FindLiveObjects: 0.221000 ms CreateObjectMapping: 0.085700 ms MarkObjects: 2.413400 ms DeleteObjects: 0.015100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002343 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.169 seconds +Domain Reload Profiling: + ReloadAssembly (1169ms) + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (889ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (316ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (298ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2579. +Total: 2.745000 ms (FindLiveObjects: 0.240100 ms CreateObjectMapping: 0.113900 ms MarkObjects: 2.374100 ms DeleteObjects: 0.015800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 758.407432 seconds. + path: Assets/Scripts/Configs/EnemyConfigs + artifactKey: Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs using Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4e2ea28d4d88fdc16eb2bc559d03e2c') in 0.011132 seconds + Import took 0.014644 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.729344 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset + artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6bc4f43ad931eae878b0e54bd176a09') in 0.019278 seconds + Import took 0.022523 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003497 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.985 seconds +Domain Reload Profiling: + ReloadAssembly (985ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (806ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (250ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. +Total: 3.240800 ms (FindLiveObjects: 0.208900 ms CreateObjectMapping: 0.076900 ms MarkObjects: 2.935100 ms DeleteObjects: 0.018800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004678 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.049 seconds +Domain Reload Profiling: + ReloadAssembly (1049ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (882ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (278ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 3.905900 ms (FindLiveObjects: 0.331700 ms CreateObjectMapping: 0.137500 ms MarkObjects: 3.410000 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002916 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.981 seconds +Domain Reload Profiling: + ReloadAssembly (982ms) + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (813ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (259ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2104 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. +Total: 2.764200 ms (FindLiveObjects: 0.187300 ms CreateObjectMapping: 0.081000 ms MarkObjects: 2.474900 ms DeleteObjects: 0.020000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1346.806079 seconds. + path: Assets/Scripts/Player.cs + artifactKey: Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Player.cs using Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2d9ea3358b5bb78d6998b3e2d389424') in 0.013365 seconds + Import took 0.019048 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003837 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.237 seconds +Domain Reload Profiling: + ReloadAssembly (1237ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (104ms) + EndReloadAssembly (966ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (337ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. +Total: 2.992000 ms (FindLiveObjects: 0.194800 ms CreateObjectMapping: 0.075200 ms MarkObjects: 2.706400 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002352 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.055 seconds +Domain Reload Profiling: + ReloadAssembly (1055ms) + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (896ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (308ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. +Total: 3.206600 ms (FindLiveObjects: 0.189100 ms CreateObjectMapping: 0.081600 ms MarkObjects: 2.908500 ms DeleteObjects: 0.026200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002643 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.067 seconds +Domain Reload Profiling: + ReloadAssembly (1068ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (883ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. +Total: 5.941100 ms (FindLiveObjects: 0.291300 ms CreateObjectMapping: 0.184700 ms MarkObjects: 5.425500 ms DeleteObjects: 0.037900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 201.563380 seconds. + path: Assets/Scripts/Configs/CardConfigs + artifactKey: Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs using Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d9650170d8ae61c72f00e7938872158') in 0.011616 seconds + Import took 0.015031 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002840 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.077 seconds +Domain Reload Profiling: + ReloadAssembly (1077ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (888ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (303ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.1 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. +Total: 2.592100 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.082500 ms MarkObjects: 2.293300 ms DeleteObjects: 0.015400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 234.155060 seconds. + path: Assets/Prefabs/Enemy_1.prefab + artifactKey: Guid(13ea28222603fbb4997e4f982f2f88b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy_1.prefab using Guid(13ea28222603fbb4997e4f982f2f88b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2ece00df2be267ad715f13238feb253') in 0.056774 seconds + Import took 0.061343 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002491 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.147 seconds +Domain Reload Profiling: + ReloadAssembly (1147ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (940ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (288ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2597. +Total: 3.233700 ms (FindLiveObjects: 0.264400 ms CreateObjectMapping: 0.116600 ms MarkObjects: 2.826500 ms DeleteObjects: 0.025200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003420 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.090 seconds +Domain Reload Profiling: + ReloadAssembly (1090ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (913ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (279ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (298ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. +Total: 2.825200 ms (FindLiveObjects: 0.206000 ms CreateObjectMapping: 0.078100 ms MarkObjects: 2.525100 ms DeleteObjects: 0.015000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002259 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.056 seconds +Domain Reload Profiling: + ReloadAssembly (1057ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (862ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (269ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (272ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. +Total: 2.936300 ms (FindLiveObjects: 0.199600 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.645900 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003184 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.230 seconds +Domain Reload Profiling: + ReloadAssembly (1231ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1043ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (299ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 2.726900 ms (FindLiveObjects: 0.222600 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.401600 ms DeleteObjects: 0.018100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004380 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.279 seconds +Domain Reload Profiling: + ReloadAssembly (1279ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1094ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 4.643900 ms (FindLiveObjects: 0.213400 ms CreateObjectMapping: 0.092300 ms MarkObjects: 4.314100 ms DeleteObjects: 0.022700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002242 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.067 seconds +Domain Reload Profiling: + ReloadAssembly (1068ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (889ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (254ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (295ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 2.731800 ms (FindLiveObjects: 0.209700 ms CreateObjectMapping: 0.078200 ms MarkObjects: 2.426700 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003115 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.083 seconds +Domain Reload Profiling: + ReloadAssembly (1083ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (891ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (270ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (281ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. +Total: 2.829600 ms (FindLiveObjects: 0.252600 ms CreateObjectMapping: 0.092800 ms MarkObjects: 2.468300 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003648 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.090 seconds +Domain Reload Profiling: + ReloadAssembly (1090ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (896ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (173ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. +Total: 2.740100 ms (FindLiveObjects: 0.198500 ms CreateObjectMapping: 0.074100 ms MarkObjects: 2.448600 ms DeleteObjects: 0.018100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.159753 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.131 seconds +Domain Reload Profiling: + ReloadAssembly (2140ms) + BeginReloadAssembly (409ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (60ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (210ms) + EndReloadAssembly (1637ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (500ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (550ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (405ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. +Total: 4.429200 ms (FindLiveObjects: 0.316000 ms CreateObjectMapping: 0.108200 ms MarkObjects: 3.957800 ms DeleteObjects: 0.046100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005718 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.615 seconds +Domain Reload Profiling: + ReloadAssembly (1617ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1369ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2615. +Total: 3.418200 ms (FindLiveObjects: 0.217900 ms CreateObjectMapping: 0.099700 ms MarkObjects: 3.060700 ms DeleteObjects: 0.038900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006365 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.649 seconds +Domain Reload Profiling: + ReloadAssembly (1650ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1360ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (428ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2617. +Total: 5.270100 ms (FindLiveObjects: 0.218400 ms CreateObjectMapping: 0.086900 ms MarkObjects: 4.902900 ms DeleteObjects: 0.060900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005731 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.923 seconds +Domain Reload Profiling: + ReloadAssembly (1923ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1638ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (487ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (491ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (321ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2619. +Total: 4.296000 ms (FindLiveObjects: 0.257100 ms CreateObjectMapping: 0.118900 ms MarkObjects: 3.892300 ms DeleteObjects: 0.026100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003034 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.559 seconds +Domain Reload Profiling: + ReloadAssembly (1559ms) + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1257ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (416ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (271ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2621. +Total: 3.664700 ms (FindLiveObjects: 0.261300 ms CreateObjectMapping: 0.114600 ms MarkObjects: 3.268500 ms DeleteObjects: 0.018700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005356 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.870 seconds +Domain Reload Profiling: + ReloadAssembly (1870ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1597ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (502ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (459ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (301ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. +Total: 4.750300 ms (FindLiveObjects: 0.362300 ms CreateObjectMapping: 0.153500 ms MarkObjects: 4.209600 ms DeleteObjects: 0.023100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004892 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1311ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (415ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (375ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. +Total: 3.964400 ms (FindLiveObjects: 0.292100 ms CreateObjectMapping: 0.086300 ms MarkObjects: 3.566000 ms DeleteObjects: 0.018900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004936 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.583 seconds +Domain Reload Profiling: + ReloadAssembly (1583ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1326ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (423ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 3.783100 ms (FindLiveObjects: 0.207500 ms CreateObjectMapping: 0.090200 ms MarkObjects: 3.440000 ms DeleteObjects: 0.044400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003459 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.548 seconds +Domain Reload Profiling: + ReloadAssembly (1549ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1267ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. +Total: 4.513300 ms (FindLiveObjects: 0.456600 ms CreateObjectMapping: 0.237200 ms MarkObjects: 3.794800 ms DeleteObjects: 0.023300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005897 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.767 seconds +Domain Reload Profiling: + ReloadAssembly (1767ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1490ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (437ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (463ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (310ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2631. +Total: 3.960700 ms (FindLiveObjects: 0.267900 ms CreateObjectMapping: 0.091300 ms MarkObjects: 3.578500 ms DeleteObjects: 0.021600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004897 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.588 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1312ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (381ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (102ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2633. +Total: 4.262000 ms (FindLiveObjects: 0.405700 ms CreateObjectMapping: 0.129000 ms MarkObjects: 3.704300 ms DeleteObjects: 0.021400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004218 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.706 seconds +Domain Reload Profiling: + ReloadAssembly (1707ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1453ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (410ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (455ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (143ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2635. +Total: 4.320200 ms (FindLiveObjects: 0.214400 ms CreateObjectMapping: 0.085600 ms MarkObjects: 3.992100 ms DeleteObjects: 0.027200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004462 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.846 seconds +Domain Reload Profiling: + ReloadAssembly (1846ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1564ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (457ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (467ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (324ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. +Total: 3.751500 ms (FindLiveObjects: 0.237700 ms CreateObjectMapping: 0.111700 ms MarkObjects: 3.360400 ms DeleteObjects: 0.040300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004888 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.720 seconds +Domain Reload Profiling: + ReloadAssembly (1721ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1455ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (449ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (61ms) + SetupLoadedEditorAssemblies (393ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. +Total: 4.712400 ms (FindLiveObjects: 0.438700 ms CreateObjectMapping: 0.161400 ms MarkObjects: 4.068200 ms DeleteObjects: 0.042700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003652 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.720 seconds +Domain Reload Profiling: + ReloadAssembly (1721ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1467ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (429ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (271ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. +Total: 4.625000 ms (FindLiveObjects: 0.228500 ms CreateObjectMapping: 0.091100 ms MarkObjects: 4.247600 ms DeleteObjects: 0.056500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 11928.521880 seconds. + path: Assets/Scripts/Configs/EnemyConfig.cs + artifactKey: Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfig.cs using Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e834bf692c0c4faa36ac900b78fad5e3') in 0.017469 seconds + Import took 0.022132 seconds . + +======================================================================== +Received Import Request. + Time since last request: 28.582040 seconds. + path: Assets/Scripts/Configs/EnemyConfig.cs + artifactKey: Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfig.cs using Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbb8db14fc17940260383a71f803f625') in 0.004934 seconds + Import took 0.009343 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002707 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.132 seconds +Domain Reload Profiling: + ReloadAssembly (1132ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (956ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (257ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. +Total: 3.036400 ms (FindLiveObjects: 0.203900 ms CreateObjectMapping: 0.067900 ms MarkObjects: 2.744900 ms DeleteObjects: 0.018800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003354 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.196 seconds +Domain Reload Profiling: + ReloadAssembly (1197ms) + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1037ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (252ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (102ms) + ProcessInitializeOnLoadAttributes (219ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. +Total: 4.668400 ms (FindLiveObjects: 0.222500 ms CreateObjectMapping: 0.088600 ms MarkObjects: 4.329200 ms DeleteObjects: 0.026600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003583 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.162 seconds +Domain Reload Profiling: + ReloadAssembly (1162ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (976ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. +Total: 3.144600 ms (FindLiveObjects: 0.217500 ms CreateObjectMapping: 0.083700 ms MarkObjects: 2.823600 ms DeleteObjects: 0.018800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003695 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.256 seconds +Domain Reload Profiling: + ReloadAssembly (1257ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1074ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2650. +Total: 3.145600 ms (FindLiveObjects: 0.325500 ms CreateObjectMapping: 0.090900 ms MarkObjects: 2.707300 ms DeleteObjects: 0.020900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003935 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.195 seconds +Domain Reload Profiling: + ReloadAssembly (1195ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1000ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (253ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. +Total: 3.198500 ms (FindLiveObjects: 0.214500 ms CreateObjectMapping: 0.077300 ms MarkObjects: 2.882800 ms DeleteObjects: 0.022700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002895 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.186 seconds +Domain Reload Profiling: + ReloadAssembly (1187ms) + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1016ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (275ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2654. +Total: 3.402000 ms (FindLiveObjects: 0.273900 ms CreateObjectMapping: 0.101700 ms MarkObjects: 3.002300 ms DeleteObjects: 0.023100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003168 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.318 seconds +Domain Reload Profiling: + ReloadAssembly (1318ms) + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1143ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (317ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2656. +Total: 4.675500 ms (FindLiveObjects: 0.258500 ms CreateObjectMapping: 0.095200 ms MarkObjects: 4.297000 ms DeleteObjects: 0.022000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002749 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.169 seconds +Domain Reload Profiling: + ReloadAssembly (1170ms) + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (994ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (274ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (261ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. +Total: 3.234100 ms (FindLiveObjects: 0.315100 ms CreateObjectMapping: 0.089300 ms MarkObjects: 2.809200 ms DeleteObjects: 0.019300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002548 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.209 seconds +Domain Reload Profiling: + ReloadAssembly (1209ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1029ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (252ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2660. +Total: 3.324000 ms (FindLiveObjects: 0.281000 ms CreateObjectMapping: 0.090100 ms MarkObjects: 2.932300 ms DeleteObjects: 0.019500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002494 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.228 seconds +Domain Reload Profiling: + ReloadAssembly (1228ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1046ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. +Total: 3.083600 ms (FindLiveObjects: 0.213100 ms CreateObjectMapping: 0.081400 ms MarkObjects: 2.768900 ms DeleteObjects: 0.019500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002918 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.249 seconds +Domain Reload Profiling: + ReloadAssembly (1249ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1060ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. +Total: 2.842400 ms (FindLiveObjects: 0.216400 ms CreateObjectMapping: 0.074500 ms MarkObjects: 2.524800 ms DeleteObjects: 0.025800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003201 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.220 seconds +Domain Reload Profiling: + ReloadAssembly (1220ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1042ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (246ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (305ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. +Total: 2.855400 ms (FindLiveObjects: 0.213800 ms CreateObjectMapping: 0.076100 ms MarkObjects: 2.549300 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002914 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.334 seconds +Domain Reload Profiling: + ReloadAssembly (1335ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1155ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (333ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (280ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. +Total: 3.308200 ms (FindLiveObjects: 0.215500 ms CreateObjectMapping: 0.089100 ms MarkObjects: 2.981100 ms DeleteObjects: 0.021300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002852 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.214 seconds +Domain Reload Profiling: + ReloadAssembly (1214ms) + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1057ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (305ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. +Total: 3.960200 ms (FindLiveObjects: 0.218800 ms CreateObjectMapping: 0.080600 ms MarkObjects: 3.636200 ms DeleteObjects: 0.023400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003192 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.606 seconds +Domain Reload Profiling: + ReloadAssembly (1607ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1397ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. +Total: 3.260200 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.081400 ms MarkObjects: 2.923700 ms DeleteObjects: 0.025100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003411 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.246 seconds +Domain Reload Profiling: + ReloadAssembly (1247ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1078ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (273ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. +Total: 2.928400 ms (FindLiveObjects: 0.239700 ms CreateObjectMapping: 0.086600 ms MarkObjects: 2.581500 ms DeleteObjects: 0.019700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002490 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.332 seconds +Domain Reload Profiling: + ReloadAssembly (1332ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1139ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (224ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. +Total: 4.380000 ms (FindLiveObjects: 0.441500 ms CreateObjectMapping: 0.159300 ms MarkObjects: 3.751600 ms DeleteObjects: 0.025900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004464 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.228 seconds +Domain Reload Profiling: + ReloadAssembly (1228ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1051ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (264ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. +Total: 3.332600 ms (FindLiveObjects: 0.211400 ms CreateObjectMapping: 0.074000 ms MarkObjects: 3.029400 ms DeleteObjects: 0.016900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003359 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.261 seconds +Domain Reload Profiling: + ReloadAssembly (1261ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1091ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (295ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. +Total: 3.958800 ms (FindLiveObjects: 0.208000 ms CreateObjectMapping: 0.079500 ms MarkObjects: 3.648700 ms DeleteObjects: 0.021600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002459 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.218 seconds +Domain Reload Profiling: + ReloadAssembly (1219ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1063ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (173ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2682. +Total: 3.473400 ms (FindLiveObjects: 0.215000 ms CreateObjectMapping: 0.078100 ms MarkObjects: 3.145000 ms DeleteObjects: 0.033900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002300 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.266 seconds +Domain Reload Profiling: + ReloadAssembly (1267ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1102ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (292ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2684. +Total: 2.942800 ms (FindLiveObjects: 0.213800 ms CreateObjectMapping: 0.089600 ms MarkObjects: 2.619900 ms DeleteObjects: 0.018400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003124 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.297 seconds +Domain Reload Profiling: + ReloadAssembly (1297ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1120ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (257ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2686. +Total: 3.253700 ms (FindLiveObjects: 0.267000 ms CreateObjectMapping: 0.107100 ms MarkObjects: 2.838700 ms DeleteObjects: 0.039300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003598 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.236 seconds +Domain Reload Profiling: + ReloadAssembly (1236ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1066ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (248ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2688. +Total: 3.250800 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.080200 ms MarkObjects: 2.935400 ms DeleteObjects: 0.017800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002430 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.308 seconds +Domain Reload Profiling: + ReloadAssembly (1308ms) + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1136ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (278ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (309ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2690. +Total: 4.232400 ms (FindLiveObjects: 0.212500 ms CreateObjectMapping: 0.083900 ms MarkObjects: 3.907300 ms DeleteObjects: 0.027500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003407 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.283 seconds +Domain Reload Profiling: + ReloadAssembly (1283ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1098ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (269ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (303ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2692. +Total: 3.332800 ms (FindLiveObjects: 0.226600 ms CreateObjectMapping: 0.087300 ms MarkObjects: 2.995500 ms DeleteObjects: 0.022400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003116 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.347 seconds +Domain Reload Profiling: + ReloadAssembly (1347ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1173ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (273ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (209ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2694. +Total: 2.894900 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.077200 ms MarkObjects: 2.575600 ms DeleteObjects: 0.017300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002576 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.258 seconds +Domain Reload Profiling: + ReloadAssembly (1259ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1112ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (280ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2696. +Total: 2.846700 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.089100 ms MarkObjects: 2.519900 ms DeleteObjects: 0.016500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003121 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.384 seconds +Domain Reload Profiling: + ReloadAssembly (1385ms) + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1220ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (320ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (304ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2698. +Total: 3.480400 ms (FindLiveObjects: 0.403900 ms CreateObjectMapping: 0.139100 ms MarkObjects: 2.916000 ms DeleteObjects: 0.019600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002870 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.347 seconds +Domain Reload Profiling: + ReloadAssembly (1347ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1163ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (255ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2700. +Total: 3.056700 ms (FindLiveObjects: 0.213200 ms CreateObjectMapping: 0.072700 ms MarkObjects: 2.749200 ms DeleteObjects: 0.020500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003497 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.311 seconds +Domain Reload Profiling: + ReloadAssembly (1312ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1139ms) + LoadAssemblies (77ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (289ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2702. +Total: 3.115000 ms (FindLiveObjects: 0.222700 ms CreateObjectMapping: 0.074400 ms MarkObjects: 2.800300 ms DeleteObjects: 0.016600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002299 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.326 seconds +Domain Reload Profiling: + ReloadAssembly (1326ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1138ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2704. +Total: 3.186900 ms (FindLiveObjects: 0.231100 ms CreateObjectMapping: 0.093200 ms MarkObjects: 2.826500 ms DeleteObjects: 0.035000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002924 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.301 seconds +Domain Reload Profiling: + ReloadAssembly (1302ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1128ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (288ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2706. +Total: 2.737200 ms (FindLiveObjects: 0.257500 ms CreateObjectMapping: 0.094800 ms MarkObjects: 2.368200 ms DeleteObjects: 0.015800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002423 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.489 seconds +Domain Reload Profiling: + ReloadAssembly (1490ms) + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (1327ms) + LoadAssemblies (72ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (435ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (294ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2708. +Total: 3.072400 ms (FindLiveObjects: 0.223700 ms CreateObjectMapping: 0.079500 ms MarkObjects: 2.749300 ms DeleteObjects: 0.018900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002351 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.481 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1286ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2710. +Total: 4.077900 ms (FindLiveObjects: 0.331100 ms CreateObjectMapping: 0.148300 ms MarkObjects: 3.562000 ms DeleteObjects: 0.034200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002807 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.403 seconds +Domain Reload Profiling: + ReloadAssembly (1404ms) + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1245ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (273ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2712. +Total: 4.121600 ms (FindLiveObjects: 0.237200 ms CreateObjectMapping: 0.083900 ms MarkObjects: 3.775700 ms DeleteObjects: 0.023600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003167 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.385 seconds +Domain Reload Profiling: + ReloadAssembly (1385ms) + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1196ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (289ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2714. +Total: 3.257100 ms (FindLiveObjects: 0.238500 ms CreateObjectMapping: 0.090700 ms MarkObjects: 2.899000 ms DeleteObjects: 0.027500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002210 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.313 seconds +Domain Reload Profiling: + ReloadAssembly (1314ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1139ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (256ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2716. +Total: 3.227800 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.077100 ms MarkObjects: 2.906300 ms DeleteObjects: 0.019800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002368 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.417 seconds +Domain Reload Profiling: + ReloadAssembly (1417ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1231ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2718. +Total: 2.989700 ms (FindLiveObjects: 0.262100 ms CreateObjectMapping: 0.103000 ms MarkObjects: 2.600300 ms DeleteObjects: 0.023200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002277 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.401 seconds +Domain Reload Profiling: + ReloadAssembly (1402ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1200ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (276ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2720. +Total: 3.347500 ms (FindLiveObjects: 0.241400 ms CreateObjectMapping: 0.092000 ms MarkObjects: 2.993900 ms DeleteObjects: 0.019100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005202 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.411 seconds +Domain Reload Profiling: + ReloadAssembly (1412ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1226ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (259ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2722. +Total: 3.055700 ms (FindLiveObjects: 0.258100 ms CreateObjectMapping: 0.096600 ms MarkObjects: 2.685400 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002242 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.395 seconds +Domain Reload Profiling: + ReloadAssembly (1396ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1213ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (274ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2724. +Total: 4.643100 ms (FindLiveObjects: 0.372000 ms CreateObjectMapping: 0.156700 ms MarkObjects: 4.081400 ms DeleteObjects: 0.030800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002670 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.377 seconds +Domain Reload Profiling: + ReloadAssembly (1378ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1192ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (276ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (283ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2726. +Total: 3.986200 ms (FindLiveObjects: 0.298100 ms CreateObjectMapping: 0.121700 ms MarkObjects: 3.545500 ms DeleteObjects: 0.019300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003340 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.461 seconds +Domain Reload Profiling: + ReloadAssembly (1461ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1276ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2728. +Total: 2.854100 ms (FindLiveObjects: 0.230700 ms CreateObjectMapping: 0.085600 ms MarkObjects: 2.521300 ms DeleteObjects: 0.015400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003518 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.351 seconds +Domain Reload Profiling: + ReloadAssembly (1351ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1193ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (271ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2730. +Total: 3.788200 ms (FindLiveObjects: 0.245000 ms CreateObjectMapping: 0.102300 ms MarkObjects: 3.414600 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008066 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.381 seconds +Domain Reload Profiling: + ReloadAssembly (1381ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1202ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (264ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (279ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2732. +Total: 4.187600 ms (FindLiveObjects: 0.321700 ms CreateObjectMapping: 0.106600 ms MarkObjects: 3.723200 ms DeleteObjects: 0.034300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4311.595408 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset + artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e41abd33088722ec3415bcb3fac13f35') in 0.252258 seconds + Import took 0.257199 seconds . + +======================================================================== +Received Import Request. + Time since last request: 8.565409 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Zombie.asset + artifactKey: Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Zombie.asset using Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e8a0860877c5be656d2d171a5240054e') in 0.034494 seconds + Import took 0.040496 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002805 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.394 seconds +Domain Reload Profiling: + ReloadAssembly (1394ms) + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1229ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (259ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (292ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2734. +Total: 3.189900 ms (FindLiveObjects: 0.221600 ms CreateObjectMapping: 0.091100 ms MarkObjects: 2.854500 ms DeleteObjects: 0.021400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004392 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.062 seconds +Domain Reload Profiling: + ReloadAssembly (2062ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1797ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (430ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2736. +Total: 5.256000 ms (FindLiveObjects: 0.263100 ms CreateObjectMapping: 0.133100 ms MarkObjects: 4.837700 ms DeleteObjects: 0.020300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 59.378001 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset + artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4badf80105881339c4a17bb6bd85ca4') in 0.018080 seconds + Import took 0.021392 seconds . + +======================================================================== +Received Import Request. + Time since last request: 16.595878 seconds. + path: Assets/Scripts/Configs/EnemyConfig.cs + artifactKey: Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfig.cs using Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85c75c09b19c7029d59e4bf318b99196') in 0.016538 seconds + Import took 0.021915 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003004 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1255ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (281ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (304ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2738. +Total: 3.911100 ms (FindLiveObjects: 0.243400 ms CreateObjectMapping: 0.083300 ms MarkObjects: 3.563900 ms DeleteObjects: 0.018900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004891 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.390 seconds +Domain Reload Profiling: + ReloadAssembly (1390ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1209ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (262ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (277ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2740. +Total: 3.471100 ms (FindLiveObjects: 0.242900 ms CreateObjectMapping: 0.090800 ms MarkObjects: 3.120000 ms DeleteObjects: 0.016200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003266 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.209 seconds +Domain Reload Profiling: + ReloadAssembly (2209ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1938ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (551ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (442ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2742. +Total: 6.503500 ms (FindLiveObjects: 0.560500 ms CreateObjectMapping: 0.498500 ms MarkObjects: 5.400100 ms DeleteObjects: 0.042400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002603 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.664 seconds +Domain Reload Profiling: + ReloadAssembly (1664ms) + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1484ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (204ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2744. +Total: 4.105500 ms (FindLiveObjects: 0.251500 ms CreateObjectMapping: 0.104300 ms MarkObjects: 3.729900 ms DeleteObjects: 0.018500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005374 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.439 seconds +Domain Reload Profiling: + ReloadAssembly (1440ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1245ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2746. +Total: 3.045500 ms (FindLiveObjects: 0.236400 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.707100 ms DeleteObjects: 0.016600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004381 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.134 seconds +Domain Reload Profiling: + ReloadAssembly (2134ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1893ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (419ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2748. +Total: 3.273700 ms (FindLiveObjects: 0.231600 ms CreateObjectMapping: 0.089700 ms MarkObjects: 2.934500 ms DeleteObjects: 0.016700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002662 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.406 seconds +Domain Reload Profiling: + ReloadAssembly (1406ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1224ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (271ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (273ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2750. +Total: 2.912600 ms (FindLiveObjects: 0.232900 ms CreateObjectMapping: 0.092700 ms MarkObjects: 2.571100 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010830 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.332 seconds +Domain Reload Profiling: + ReloadAssembly (2332ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (2076ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (494ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (93ms) + SetupLoadedEditorAssemblies (479ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (147ms) + ProcessInitializeOnLoadAttributes (299ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2752. +Total: 5.936800 ms (FindLiveObjects: 0.392600 ms CreateObjectMapping: 0.191400 ms MarkObjects: 5.306600 ms DeleteObjects: 0.042800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002701 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.433 seconds +Domain Reload Profiling: + ReloadAssembly (1434ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1268ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (282ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2754. +Total: 3.705300 ms (FindLiveObjects: 0.265400 ms CreateObjectMapping: 0.088700 ms MarkObjects: 3.331500 ms DeleteObjects: 0.018700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002382 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.710 seconds +Domain Reload Profiling: + ReloadAssembly (1710ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1527ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2756. +Total: 3.661200 ms (FindLiveObjects: 0.235000 ms CreateObjectMapping: 0.090900 ms MarkObjects: 3.315400 ms DeleteObjects: 0.018600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002932 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.387 seconds +Domain Reload Profiling: + ReloadAssembly (1388ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (1234ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (255ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (275ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2758. +Total: 3.020200 ms (FindLiveObjects: 0.233200 ms CreateObjectMapping: 0.088300 ms MarkObjects: 2.683400 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002582 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.585 seconds +Domain Reload Profiling: + ReloadAssembly (1585ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1401ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (321ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2760. +Total: 4.846600 ms (FindLiveObjects: 0.499900 ms CreateObjectMapping: 0.173400 ms MarkObjects: 4.140300 ms DeleteObjects: 0.030600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004531 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.044 seconds +Domain Reload Profiling: + ReloadAssembly (2045ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1801ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (420ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2762. +Total: 4.529500 ms (FindLiveObjects: 0.646300 ms CreateObjectMapping: 0.120200 ms MarkObjects: 3.726900 ms DeleteObjects: 0.033800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003496 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.032 seconds +Domain Reload Profiling: + ReloadAssembly (2032ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1783ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (411ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (430ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (276ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2764. +Total: 3.255000 ms (FindLiveObjects: 0.252400 ms CreateObjectMapping: 0.121700 ms MarkObjects: 2.827400 ms DeleteObjects: 0.052000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004236 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.089 seconds +Domain Reload Profiling: + ReloadAssembly (2090ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1851ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (413ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (427ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (278ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2766. +Total: 6.555100 ms (FindLiveObjects: 0.919900 ms CreateObjectMapping: 0.180400 ms MarkObjects: 5.393400 ms DeleteObjects: 0.057400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003124 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.707 seconds +Domain Reload Profiling: + ReloadAssembly (1708ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1450ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (388ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (292ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2768. +Total: 3.104100 ms (FindLiveObjects: 0.229600 ms CreateObjectMapping: 0.084200 ms MarkObjects: 2.773600 ms DeleteObjects: 0.015600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004240 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.121 seconds +Domain Reload Profiling: + ReloadAssembly (2122ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1882ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (418ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (432ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2770. +Total: 5.195200 ms (FindLiveObjects: 1.158800 ms CreateObjectMapping: 0.299400 ms MarkObjects: 3.682400 ms DeleteObjects: 0.049600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002240 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.468 seconds +Domain Reload Profiling: + ReloadAssembly (1469ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1316ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (276ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2772. +Total: 3.586400 ms (FindLiveObjects: 0.233000 ms CreateObjectMapping: 0.089800 ms MarkObjects: 3.237000 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003074 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.603 seconds +Domain Reload Profiling: + ReloadAssembly (1603ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1431ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (296ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (315ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (105ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2774. +Total: 4.437700 ms (FindLiveObjects: 0.305100 ms CreateObjectMapping: 0.143500 ms MarkObjects: 3.948400 ms DeleteObjects: 0.039000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003794 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.057 seconds +Domain Reload Profiling: + ReloadAssembly (2058ms) + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1826ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (404ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (396ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2776. +Total: 5.153100 ms (FindLiveObjects: 0.387500 ms CreateObjectMapping: 0.417200 ms MarkObjects: 4.318800 ms DeleteObjects: 0.027400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1141.970012 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Zombie.asset + artifactKey: Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Zombie.asset using Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'debbed405ecbc046793ef8d5116b1942') in 0.031072 seconds + Import took 0.038848 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002410 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.885 seconds +Domain Reload Profiling: + ReloadAssembly (1885ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1708ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (422ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2778. +Total: 3.191400 ms (FindLiveObjects: 0.241900 ms CreateObjectMapping: 0.107200 ms MarkObjects: 2.825500 ms DeleteObjects: 0.015600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002384 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.579 seconds +Domain Reload Profiling: + ReloadAssembly (2579ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (2406ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (5ms) + RebuildScriptCaches (85ms) + SetupLoadedEditorAssemblies (495ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (338ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (53ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2780. +Total: 4.208900 ms (FindLiveObjects: 0.356100 ms CreateObjectMapping: 0.145000 ms MarkObjects: 3.645300 ms DeleteObjects: 0.059100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003859 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.623 seconds +Domain Reload Profiling: + ReloadAssembly (1624ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1390ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2782. +Total: 3.351800 ms (FindLiveObjects: 0.230800 ms CreateObjectMapping: 0.086800 ms MarkObjects: 3.015500 ms DeleteObjects: 0.017700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003938 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.234 seconds +Domain Reload Profiling: + ReloadAssembly (2235ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1998ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (465ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (297ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2784. +Total: 3.772000 ms (FindLiveObjects: 0.354700 ms CreateObjectMapping: 0.144300 ms MarkObjects: 3.252800 ms DeleteObjects: 0.019000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003755 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.511 seconds +Domain Reload Profiling: + ReloadAssembly (1511ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1334ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (279ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (290ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2786. +Total: 3.155000 ms (FindLiveObjects: 0.248100 ms CreateObjectMapping: 0.093400 ms MarkObjects: 2.796500 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002503 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.635 seconds +Domain Reload Profiling: + ReloadAssembly (1635ms) + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1465ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (298ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.9 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2788. +Total: 3.694800 ms (FindLiveObjects: 0.246400 ms CreateObjectMapping: 0.096300 ms MarkObjects: 3.308100 ms DeleteObjects: 0.042300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003482 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.199 seconds +Domain Reload Profiling: + ReloadAssembly (2200ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1946ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (444ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (298ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2790. +Total: 6.436900 ms (FindLiveObjects: 0.355800 ms CreateObjectMapping: 0.132400 ms MarkObjects: 5.926900 ms DeleteObjects: 0.019800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004406 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.078 seconds +Domain Reload Profiling: + ReloadAssembly (2079ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1902ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (448ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2792. +Total: 3.607500 ms (FindLiveObjects: 0.302000 ms CreateObjectMapping: 0.106200 ms MarkObjects: 3.180900 ms DeleteObjects: 0.017200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002344 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.531 seconds +Domain Reload Profiling: + ReloadAssembly (1531ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1352ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (270ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (273ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2794. +Total: 3.906700 ms (FindLiveObjects: 0.409700 ms CreateObjectMapping: 0.154000 ms MarkObjects: 3.321500 ms DeleteObjects: 0.020200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002821 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.922 seconds +Domain Reload Profiling: + ReloadAssembly (1922ms) + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1728ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (516ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (316ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2796. +Total: 3.779800 ms (FindLiveObjects: 0.294200 ms CreateObjectMapping: 0.120200 ms MarkObjects: 3.342500 ms DeleteObjects: 0.021600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003238 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.744 seconds +Domain Reload Profiling: + ReloadAssembly (1744ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1560ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (324ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 95.0 MB. +System memory in use after: 95.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2798. +Total: 3.539100 ms (FindLiveObjects: 0.243400 ms CreateObjectMapping: 0.087400 ms MarkObjects: 3.186200 ms DeleteObjects: 0.020900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007961 seconds. +Callback registration failed. Increase kMaxCallback. +Fatal Error! Callback registration failed. Increase kMaxCallback. +Crash!!! +SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Mono;.;C:\Users\Dara\Documents\1\PO;C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'Dara' +OS-Version: 10.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe:Unity.exe (00007FF7738F0000), size: 135270400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.3.19.61751 +C:\Windows\SYSTEM32\ntdll.dll:ntdll.dll (00007FFC8D790000), size: 2052096 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1288 +C:\Windows\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFC8B7D0000), size: 778240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 +C:\Windows\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFC8AEA0000), size: 2916352 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\System32\CRYPT32.dll:CRYPT32.dll (00007FFC8B280000), size: 1400832 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\System32\ucrtbase.dll:ucrtbase.dll (00007FFC8B510000), size: 1048576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 +C:\Windows\System32\USER32.dll:USER32.dll (00007FFC8C5C0000), size: 1708032 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\System32\win32u.dll:win32u.dll (00007FFC8B640000), size: 139264 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FFC63E60000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFC185A0000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\GDI32.dll:GDI32.dll (00007FFC8D5A0000), size: 176128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFC286A0000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 +C:\Windows\System32\gdi32full.dll:gdi32full.dll (00007FFC8B170000), size: 1101824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\System32\msvcp_win.dll:msvcp_win.dll (00007FFC8B470000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 +C:\Windows\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFC8C510000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1052 +C:\Windows\System32\msvcrt.dll:msvcrt.dll (00007FFC8C320000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6582272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFC43CF0000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFC43A50000), size: 1609728 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\sechost.dll:sechost.dll (00007FFC8CFE0000), size: 634880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 +C:\Windows\System32\WS2_32.dll:WS2_32.dll (00007FFC8CF70000), size: 438272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\RPCRT4.dll:RPCRT4.dll (00007FFC8D3E0000), size: 1220608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1288 +C:\Windows\System32\WLDAP32.dll:WLDAP32.dll (00007FFC8D6F0000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFC6C940000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 +C:\Windows\System32\SHELL32.dll:SHELL32.dll (00007FFC8C770000), size: 7618560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\System32\Normaliz.dll:Normaliz.dll (00007FFC8C2B0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFC8C2C0000), size: 348160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\tbb.dll:tbb.dll (00007FFC61660000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 +C:\Windows\System32\ole32.dll:ole32.dll (00007FFC8B890000), size: 1220608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFC73580000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\System32\combase.dll:combase.dll (00007FFC8D080000), size: 3493888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 +C:\Windows\System32\IMM32.dll:IMM32.dll (00007FFC8BF80000), size: 196608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFC8BA20000), size: 4661248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1237 +C:\Windows\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFC73390000), size: 581632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\System32\cfgmgr32.dll:cfgmgr32.dll (00007FFC8B780000), size: 319488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\System32\bcrypt.dll:bcrypt.dll (00007FFC8B610000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 +C:\Windows\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFC30040000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40664.0 +C:\Windows\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFC50600000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40664.0 +C:\Windows\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFC8C3C0000), size: 839680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.985 +C:\Windows\System32\WINTRUST.dll:WINTRUST.dll (00007FFC8B720000), size: 393216 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFC4CE00000), size: 1200128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\SYSTEM32\GLU32.dll:GLU32.dll (00007FFC55210000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFC8A2F0000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFC725B0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFC7B090000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\WINMM.dll:WINMM.dll (00007FFC794B0000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FFC2B650000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFC27E10000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 +C:\Windows\SYSTEM32\HID.DLL:HID.DLL (00007FFC89730000), size: 53248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\VERSION.dll:VERSION.dll (00007FFC841E0000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\WSOCK32.dll:WSOCK32.dll (00007FFC70B10000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFC616D0000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 +C:\Windows\SYSTEM32\Secur32.dll:Secur32.dll (00007FFC70AD0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFC8AD90000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL.dll:OpenRL.dll (000001B8B6E30000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 +C:\Windows\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000074650000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.473 +C:\Windows\SYSTEM32\MSVCP100.dll:MSVCP100.dll (0000000074730000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.473 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\embree.dll:embree.dll (00007FFC26990000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 +C:\Windows\SYSTEM32\MSWSOCK.DLL:MSWSOCK.DLL (00007FFC8A650000), size: 434176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (000001B8B7A80000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 +C:\Windows\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFC8AA80000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFC88D90000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFC8B3E0000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 +C:\Windows\system32\uxtheme.dll:uxtheme.dll (00007FFC88450000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\shcore.dll:shcore.dll (00007FFC8C1F0000), size: 708608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFC88F90000), size: 7946240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\SYSTEM32\Wldp.dll:Wldp.dll (00007FFC8A8F0000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\profapi.dll:profapi.dll (00007FFC8ADE0000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.844 +C:\Windows\System32\clbcatq.dll:clbcatq.dll (00007FFC8CEC0000), size: 692224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 +C:\Windows\System32\netprofm.dll:netprofm.dll (00007FFC85910000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\System32\npmproxy.dll:npmproxy.dll (00007FFC7D0E0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\System32\NSI.dll:NSI.dll (00007FFC8C2A0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.610 +C:\Windows\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFC83220000), size: 94208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFC835B0000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFC8A340000), size: 831488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFC750E0000), size: 520192 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 +C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFC83B20000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFC43610000), size: 557056 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\SYSTEM32\d3d11.dll:d3d11.dll (00007FFC86B70000), size: 2506752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\SYSTEM32\dxgi.dll:dxgi.dll (00007FFC89790000), size: 999424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\DriverStore\FileRepository\nvami.inf_amd64_1aa8ffdaa5d9d51f\nvldumdx.dll:nvldumdx.dll (00007FFC2FF30000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.9709 +C:\Windows\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFC7D1A0000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\SYSTEM32\drvstore.dll:drvstore.dll (00007FFC7C6A0000), size: 1351680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\devobj.dll:devobj.dll (00007FFC8AC40000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FFC8A860000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\imagehlp.dll:imagehlp.dll (00007FFC8C4F0000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 +C:\Windows\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFC8A840000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\system32\rsaenh.dll:rsaenh.dll (00007FFC89F60000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1052 +C:\Windows\System32\DriverStore\FileRepository\nvami.inf_amd64_1aa8ffdaa5d9d51f\nvwgf2umx.dll:nvwgf2umx.dll (00007FFC148B0000), size: 43167744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.9709 +C:\Windows\system32\nvspcap64.dll:nvspcap64.dll (00007FFC27980000), size: 2904064 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.24.0.126 +C:\Windows\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFC89B90000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\dxcore.dll:dxcore.dll (00007FFC80AA0000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFC7D110000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFC77BE0000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFC779B0000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\system32\wbem\fastprox.dll:fastprox.dll (00007FFC775F0000), size: 1093632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\amsi.dll:amsi.dll (00007FFC6BF70000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.746 +C:\Windows\SYSTEM32\USERENV.dll:USERENV.dll (00007FFC8AD60000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.572 +C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2111.5-0\MpOav.dll:MpOav.dll (00007FFC73800000), size: 499712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.2111.5 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFC5E8E0000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 +C:\Windows\SYSTEM32\opencl.dll:opencl.dll (00007FFC2D2A0000), size: 1474560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\radeonrays.dll:radeonrays.dll (00007FFC2E1C0000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFC26220000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\PSAPI.DLL:PSAPI.DLL (00007FFC8D590000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll:Microsoft.VisualStudio.Setup.Configuration.Native.dll (00007FFC5E800000), size: 327680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.7.3111.17308 +C:\Windows\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFC86450000), size: 1007616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.1023 +C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\comctl32.dll:comctl32.dll (00007FFC75BC0000), size: 2727936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.19041.1110 +C:\Windows\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFC83060000), size: 1785856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FFC60AD0000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFC88690000), size: 1982464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.867 + +========== OUTPUTTING STACK TRACE ================== + +0x00007FFC8AED4F69 (KERNELBASE) RaiseException +0x00007FF77607A15D (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF77607B0DA (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF777CA3DAE (Unity) DebugStringToFilePostprocessedStacktrace +0x00007FF777CA335F (Unity) DebugStringToFile +0x00007FF773B5BDD3 (Unity) CallbackArraySubBase::Register +0x00007FF77686E559 (Unity) LoadDomainAndUserAssemblies +0x00007FF77686EA0E (Unity) LoadUserAssemblies +0x00007FF776CE5A28 (Unity) ::operator() +0x00007FF776D895F2 (Unity) asio::detail::completion_handler >::do_complete +0x00007FF776D8B750 (Unity) asio::detail::win_iocp_io_service::do_one +0x00007FF776D8EEDE (Unity) asio::io_service::run +0x00007FF776D120BB (Unity) RunAssetImportWorkerClientV2 +0x00007FF776D12110 (Unity) RunAssetImporterV2 +0x00007FF7761D55B6 (Unity) Application::InitializeProject +0x00007FF776B81342 (Unity) WinMain +0x00007FF7789D69B6 (Unity) __scrt_common_main_seh +0x00007FFC8B7E7034 (KERNEL32) BaseThreadInitThunk +0x00007FFC8D7E2651 (ntdll) RtlUserThreadStart + +========== END OF STACKTRACE =========== + +A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: + * C:/Users/Dara/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe1.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/Logs/shadercompiler-UnityShaderCompiler.exe2.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe2.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe4.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 4c23307b..25e57a34 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e67d6f46..54602135 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ