From 16f14baf55ade5c5ef66cc5c7de1a3cd4f3dd86d Mon Sep 17 00:00:00 2001 From: RedStealthDev Date: Tue, 18 Apr 2023 09:32:55 +0200 Subject: [PATCH] Fixed merge errors and made the shop open --- Assets/Inputs.cs | 30 + Assets/Inputs.inputactions | 20 + .../Grapic/ForegroundTiles/Foreground.prefab | 196 +- .../Grapic/ForegroundTiles/tiles/Pizza.png | Bin 211 -> 0 bytes .../ForegroundTiles/tiles/Pizza.png.meta | 135 - .../ForegroundTiles/tiles/TilesFG_0.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_1.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_10.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_11.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_12.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_13.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_14.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_15.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_16.asset | 36 - .../tiles/TilesFG_16.asset.meta | 8 - .../ForegroundTiles/tiles/TilesFG_2.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_3.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_4.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_5.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_6.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_7.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_8.asset | 2 +- .../ForegroundTiles/tiles/TilesFG_9.asset | 2 +- Assets/Materials/Grapic/Pizza.png.meta | 16 +- Assets/Scenes/HomeBase.unity | 10813 ++++++++++++++-- Assets/Scripts/Interactable.cs | 13 + Assets/Scripts/ItemColliector.cs | 4 +- Assets/Scripts/Start_gbs.cs | 11 + Assets/Scripts/Start_gbs.cs.meta | 11 + UserSettings/EditorUserSettings.asset | 6 +- UserSettings/Layouts/default-2021.dwlt | 77 +- 31 files changed, 10290 insertions(+), 1118 deletions(-) delete mode 100644 Assets/Materials/Grapic/ForegroundTiles/tiles/Pizza.png delete mode 100644 Assets/Materials/Grapic/ForegroundTiles/tiles/Pizza.png.meta delete mode 100644 Assets/Materials/Grapic/ForegroundTiles/tiles/TilesFG_16.asset delete mode 100644 Assets/Materials/Grapic/ForegroundTiles/tiles/TilesFG_16.asset.meta create mode 100644 Assets/Scripts/Start_gbs.cs create mode 100644 Assets/Scripts/Start_gbs.cs.meta diff --git a/Assets/Inputs.cs b/Assets/Inputs.cs index 764d5a3..e3bd7ec 100644 --- a/Assets/Inputs.cs +++ b/Assets/Inputs.cs @@ -107,6 +107,15 @@ public partial class @Inputs : IInputActionCollection2, IDisposable ""processors"": """", ""interactions"": """", ""initialStateCheck"": true + }, + { + ""name"": ""Eat"", + ""type"": ""Button"", + ""id"": ""c0a3cd1e-8946-4ce6-80e8-2efe992809a7"", + ""expectedControlType"": ""Button"", + ""processors"": """", + ""interactions"": """", + ""initialStateCheck"": false } ], ""bindings"": [ @@ -252,6 +261,17 @@ public partial class @Inputs : IInputActionCollection2, IDisposable ""action"": ""Mouse_Pos"", ""isComposite"": false, ""isPartOfComposite"": false + }, + { + ""name"": """", + ""id"": ""5f2b2db3-f57a-4450-9657-8dac2df34b4d"", + ""path"": ""/1"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Eat"", + ""isComposite"": false, + ""isPartOfComposite"": false } ] } @@ -269,6 +289,7 @@ public partial class @Inputs : IInputActionCollection2, IDisposable m_Movement_Aim = m_Movement.FindAction("Aim", throwIfNotFound: true); m_Movement_Interact = m_Movement.FindAction("Interact", throwIfNotFound: true); m_Movement_Mouse_Pos = m_Movement.FindAction("Mouse_Pos", throwIfNotFound: true); + m_Movement_Eat = m_Movement.FindAction("Eat", throwIfNotFound: true); } public void Dispose() @@ -337,6 +358,7 @@ public partial class @Inputs : IInputActionCollection2, IDisposable private readonly InputAction m_Movement_Aim; private readonly InputAction m_Movement_Interact; private readonly InputAction m_Movement_Mouse_Pos; + private readonly InputAction m_Movement_Eat; public struct MovementActions { private @Inputs m_Wrapper; @@ -350,6 +372,7 @@ public partial class @Inputs : IInputActionCollection2, IDisposable public InputAction @Aim => m_Wrapper.m_Movement_Aim; public InputAction @Interact => m_Wrapper.m_Movement_Interact; public InputAction @Mouse_Pos => m_Wrapper.m_Movement_Mouse_Pos; + public InputAction @Eat => m_Wrapper.m_Movement_Eat; public InputActionMap Get() { return m_Wrapper.m_Movement; } public void Enable() { Get().Enable(); } public void Disable() { Get().Disable(); } @@ -386,6 +409,9 @@ public partial class @Inputs : IInputActionCollection2, IDisposable @Mouse_Pos.started -= m_Wrapper.m_MovementActionsCallbackInterface.OnMouse_Pos; @Mouse_Pos.performed -= m_Wrapper.m_MovementActionsCallbackInterface.OnMouse_Pos; @Mouse_Pos.canceled -= m_Wrapper.m_MovementActionsCallbackInterface.OnMouse_Pos; + @Eat.started -= m_Wrapper.m_MovementActionsCallbackInterface.OnEat; + @Eat.performed -= m_Wrapper.m_MovementActionsCallbackInterface.OnEat; + @Eat.canceled -= m_Wrapper.m_MovementActionsCallbackInterface.OnEat; } m_Wrapper.m_MovementActionsCallbackInterface = instance; if (instance != null) @@ -417,6 +443,9 @@ public partial class @Inputs : IInputActionCollection2, IDisposable @Mouse_Pos.started += instance.OnMouse_Pos; @Mouse_Pos.performed += instance.OnMouse_Pos; @Mouse_Pos.canceled += instance.OnMouse_Pos; + @Eat.started += instance.OnEat; + @Eat.performed += instance.OnEat; + @Eat.canceled += instance.OnEat; } } } @@ -432,5 +461,6 @@ public partial class @Inputs : IInputActionCollection2, IDisposable void OnAim(InputAction.CallbackContext context); void OnInteract(InputAction.CallbackContext context); void OnMouse_Pos(InputAction.CallbackContext context); + void OnEat(InputAction.CallbackContext context); } } diff --git a/Assets/Inputs.inputactions b/Assets/Inputs.inputactions index 051cd78..5934f44 100644 --- a/Assets/Inputs.inputactions +++ b/Assets/Inputs.inputactions @@ -85,6 +85,15 @@ "processors": "", "interactions": "", "initialStateCheck": true + }, + { + "name": "Eat", + "type": "Button", + "id": "c0a3cd1e-8946-4ce6-80e8-2efe992809a7", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false } ], "bindings": [ @@ -230,6 +239,17 @@ "action": "Mouse_Pos", "isComposite": false, "isPartOfComposite": false + }, + { + "name": "", + "id": "5f2b2db3-f57a-4450-9657-8dac2df34b4d", + "path": "/1", + "interactions": "", + "processors": "", + "groups": "", + "action": "Eat", + "isComposite": false, + "isPartOfComposite": false } ] } diff --git a/Assets/Materials/Grapic/ForegroundTiles/Foreground.prefab b/Assets/Materials/Grapic/ForegroundTiles/Foreground.prefab index 3b4cb5e..7a7e077 100644 --- a/Assets/Materials/Grapic/ForegroundTiles/Foreground.prefab +++ b/Assets/Materials/Grapic/ForegroundTiles/Foreground.prefab @@ -46,9 +46,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 43 - m_TileSpriteIndex: 43 + m_TileSpriteIndex: 9 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -56,9 +56,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 38 - m_TileSpriteIndex: 38 + m_TileSpriteIndex: 2 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -66,9 +66,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 34 - m_TileSpriteIndex: 34 + m_TileSpriteIndex: 10 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -76,9 +76,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 32 - m_TileSpriteIndex: 32 + m_TileSpriteIndex: 11 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -86,9 +86,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 31 - m_TileSpriteIndex: 31 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -96,9 +96,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 30 - m_TileSpriteIndex: 30 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -106,9 +106,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 29 - m_TileSpriteIndex: 29 + m_TileSpriteIndex: 14 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -116,9 +116,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 28 - m_TileSpriteIndex: 28 + m_TileSpriteIndex: 15 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -126,9 +126,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 42 - m_TileSpriteIndex: 42 + m_TileSpriteIndex: 0 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -136,9 +136,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 33 - m_TileSpriteIndex: 33 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -146,9 +146,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 35 - m_TileSpriteIndex: 35 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -156,9 +156,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 41 - m_TileSpriteIndex: 41 + m_TileSpriteIndex: 6 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -166,9 +166,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 36 - m_TileSpriteIndex: 36 + m_TileSpriteIndex: 4 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -176,9 +176,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 39 - m_TileSpriteIndex: 39 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -186,9 +186,9 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 37 - m_TileSpriteIndex: 37 + m_TileSpriteIndex: 7 m_TileMatrixIndex: 0 - m_TileColorIndex: 16 + m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 @@ -196,17 +196,7 @@ Tilemap: second: serializedVersion: 2 m_TileIndex: 40 - m_TileSpriteIndex: 40 - m_TileMatrixIndex: 0 - m_TileColorIndex: 16 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 10, y: 5, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 35 - m_TileSpriteIndex: 35 + m_TileSpriteIndex: 8 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -303,94 +293,38 @@ Tilemap: - m_RefCount: 1 m_Data: {fileID: 11400000, guid: bda6db296ffe96eaebb6e1b81267f854, type: 2} m_TileSpriteArray: - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - m_RefCount: 1 - m_Data: {fileID: 1459631954, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 1235324307072923947, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -815989235, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -4040445917375253943, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1079252833, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -132663228765594847, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1923892557, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 6034416393271609779, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 538011823, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -3514291349347476312, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1646476331, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -2813370593516408627, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1161249499, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 3873790443560919348, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1070215111, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -5881142417515879299, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1271397342, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 6692561882392913724, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2010503647, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 2311780464020470984, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1977288218, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -1701756720340378004, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -1078546567, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -2029879525978623307, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -43068007, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -570373757, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: -418124667, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -1332353450, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 1184939126, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: -738451075, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} - m_RefCount: 1 - m_Data: {fileID: 2098902956, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} + m_Data: {fileID: 424265632, guid: d6ca77f9c3a8f326b9a1805146a53698, type: 3} m_TileMatrixArray: - m_RefCount: 16 m_Data: @@ -411,38 +345,6 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 0 - m_Data: {r: 3.591e-41, g: 3.591e-41, b: 3.591e-41, a: 3.591e-41} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - - m_RefCount: 0 - m_Data: {r: NaN, g: NaN, b: NaN, a: NaN} - m_RefCount: 16 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] @@ -511,7 +413,7 @@ TilemapRenderer: m_SortingLayer: 0 m_SortingOrder: 0 m_ChunkSize: {x: 32, y: 32, z: 32} - m_ChunkCullingBounds: {x: 0, y: 0, z: 0} + m_ChunkCullingBounds: {x: 3.5, y: 3.5, z: 0} m_MaxChunkCount: 16 m_MaxFrameAge: 16 m_SortOrder: 0 @@ -563,7 +465,7 @@ Grid: m_CellGap: {x: 0, y: 0, z: 0} m_CellLayout: 0 m_CellSwizzle: 0 ---- !u!114 &1657102032647727796 +--- !u!114 &2818604988050053659 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} diff --git a/Assets/Materials/Grapic/ForegroundTiles/tiles/Pizza.png b/Assets/Materials/Grapic/ForegroundTiles/tiles/Pizza.png deleted file mode 100644 index 84ca620e673d68e70d8ab4ad925be36c991ad03b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|dOcknLo9la zPP)i@*nq=DKJbXjUA@mGyZs)?e@cvAYPN0is-XAB6$%UHG}b#ayeYjA{^WS@w)+|l zYZP=>ZQZlfZ%QXqX$$8!@5$OtRx2A-*GaD2IWgneJ!8WN&zeg!S035)_3ZBe1>eIN ztJIxMFDmmsV*J&~()KDM@diVe{JHJ|+pzr?V(#Te918nh$aHeGqVUDPhD<<*F?hQA KxvX