diff --git a/src/eventsFunctionsExtensions/fps.json b/src/eventsFunctionsExtensions/fps.json new file mode 100644 index 00000000..efa35f34 --- /dev/null +++ b/src/eventsFunctionsExtensions/fps.json @@ -0,0 +1,440 @@ +{ + "author": "Ahnaf30e", + "category": "Advanced", + "extensionNamespace": "", + "fullName": "Frames per second (FPS)", + "helpPath": "", + "iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMy4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iSWNvbnMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBkPSJNMzAsM2gtMkg0SDJDMS40LDMsMSwzLjQsMSw0czAuNCwxLDEsMWgxdjE2YzAsMC42LDAuNCwxLDEsMWg5LjhsLTUuNSw2LjNjLTAuNCwwLjQtMC4zLDEsMC4xLDEuNEM4LjUsMjkuOSw4LjgsMzAsOSwzMA0KCWMwLjMsMCwwLjYtMC4xLDAuOC0wLjNsNS4yLTZWMjhjMCwwLjYsMC40LDEsMSwxczEtMC40LDEtMXYtNC4zbDUuMiw2YzAuMiwwLjIsMC41LDAuMywwLjgsMC4zYzAuMiwwLDAuNS0wLjEsMC43LTAuMg0KCWMwLjQtMC40LDAuNS0xLDAuMS0xLjRMMTguMiwyMkgyOGMwLjYsMCwxLTAuNCwxLTFWNWgxYzAuNiwwLDEtMC40LDEtMVMzMC42LDMsMzAsM3ogTTI0LjgsOC42bC00LDZjLTAuMywwLjQtMC44LDAuNi0xLjMsMC4zDQoJTDE1LjgsMTNoLTMuNGwtMy43LDMuN0M4LjUsMTYuOSw4LjMsMTcsOCwxN3MtMC41LTAuMS0wLjctMC4zYy0wLjQtMC40LTAuNC0xLDAtMS40bDQtNGMwLjItMC4yLDAuNC0wLjMsMC43LTAuM2g0DQoJYzAuMiwwLDAuMywwLDAuNCwwLjFsMy4yLDEuNmwzLjUtNS4zYzAuMy0wLjUsMC45LTAuNiwxLjQtMC4zQzI1LDcuNSwyNS4xLDguMSwyNC44LDguNnoiLz4NCjwvc3ZnPg0K", + "name": "FPS", + "previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/Glyphster Pack/Master/SVG/SEO/SEO_board_performance_profit.svg", + "shortDescription": "Calculate and display the frames per second (FPS) of the game.", + "version": "1.1.0", + "description": [ + "Provides an expression to get the current FPS and a text object behavior to display the current FPS.", + "", + "Frames Per Second (FPS) describes how many times in the last second your game logic was executed. ", + "This includes running behaviors and events, and then rendering the new game state into the game window. The higher the FPS, the more fluid and performant your game looks.", + "", + "Note: Use the Performance Profiler (inside in the Debugger) for detailed performance information about your game." + ], + "origin": { + "identifier": "FPS", + "name": "gdevelop-extension-store" + }, + "tags": [ + "fps", + "frames", + "per", + "second", + "performance", + "speed" + ], + "authorIds": [ + "onPsboRtDkUHNOsx7OPr8R8G1oj2", + "gqDaZjCfevOOxBYkK6zlhtZnXCg1" + ], + "dependencies": [], + "eventsFunctions": [ + { + "fullName": "", + "functionType": "Action", + "name": "onSceneLoaded", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SceneVariablePushNumber" + }, + "parameters": [ + "__FPS.FrameTimestamps", + "Time(\"timestamp\")" + ] + } + ] + } + ], + "parameters": [], + "objectGroups": [] + }, + { + "fullName": "", + "functionType": "Action", + "name": "onScenePostEvents", + "sentence": "", + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Keep timestamps for every frame inside the lookback period", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Record how much time has elapsed" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "__FPS.TimeElapsed", + "=", + "Time(\"timestamp\") - Variable(__FPS.FrameTimestamps[0])" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Remove any data before the last second from the beginning of the array" + }, + { + "infiniteLoopWarning": true, + "type": "BuiltinCommonInstructions::While", + "whileConditions": [ + { + "type": { + "value": "SceneVariableChildCount" + }, + "parameters": [ + "__FPS.FrameTimestamps", + ">", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "__FPS.FrameTimestamps[0]", + "<", + "Time(\"timestamp\") - 1000" + ] + } + ], + "conditions": [], + "actions": [ + { + "type": { + "value": "SceneVariableRemoveAt" + }, + "parameters": [ + "__FPS.FrameTimestamps", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Add the current timestamp to the end of the array" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SceneVariablePushNumber" + }, + "parameters": [ + "__FPS.FrameTimestamps", + "Time(\"timestamp\")" + ] + } + ] + } + ], + "parameters": [] + } + ], + "parameters": [], + "objectGroups": [] + }, + { + "description": "Frames per second (FPS) during the last second.", + "fullName": "Frames Per Second (FPS)", + "functionType": "Expression", + "name": "FPS", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SetReturnNumber" + }, + "parameters": [ + "VariableChildCount(__FPS.FrameTimestamps) / (Variable(__FPS.TimeElapsed) / 1000)" + ] + } + ] + } + ], + "expressionType": { + "type": "expression" + }, + "parameters": [], + "objectGroups": [] + }, + { + "description": "Frames per second (FPS) during the last second. [Deprecated]", + "fullName": "Frames Per Second (FPS) [Deprecated]", + "functionType": "Expression", + "name": "PreciseFPS", + "private": true, + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SetReturnNumber" + }, + "parameters": [ + "FPS::FPS()" + ] + } + ] + } + ], + "expressionType": { + "type": "expression" + }, + "parameters": [ + { + "description": "The accuracy of the FPS", + "longDescription": "This tells how many numbers after the period should be shown.", + "name": "accuracy", + "type": "expression" + } + ], + "objectGroups": [] + } + ], + "eventsBasedBehaviors": [ + { + "description": "Makes a text object display the current FPS.", + "fullName": "FPS Displayer", + "name": "FPSDisplayer", + "objectType": "TextObject::Text", + "eventsFunctions": [ + { + "fullName": "", + "functionType": "Action", + "name": "doStepPreEvents", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Generate the raw FPS text" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "__FPS.UnformattedFPS", + "=", + "ToString(roundTo(FPS::FPS(), Object.Behavior::PropertyDecimalDigits()))" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Add trailing zeroes, if needed" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::CompareNumbers" + }, + "parameters": [ + "Object.Behavior::PropertyDecimalDigits()", + ">", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::CompareNumbers" + }, + "parameters": [ + "StrFind(VariableString(__FPS.UnformattedFPS),\".\")", + "=", + "-1" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "__FPS.UnformattedFPS", + "+", + "\".\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Repeat", + "repeatExpression": "Object.Behavior::PropertyDecimalDigits()", + "conditions": [], + "actions": [ + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "__FPS.UnformattedFPS", + "+", + "\"0\"" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Show the formatted FPS text including the prefix" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "Object", + "=", + "Object.Behavior::Propertyprefix() + VariableString(__FPS.UnformattedFPS)" + ] + } + ] + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "supplementaryInformation": "TextObject::Text", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "FPS::FPSDisplayer", + "type": "behavior" + } + ], + "objectGroups": [] + } + ], + "propertyDescriptors": [ + { + "value": "FPS: ", + "type": "String", + "label": "The prefix before the FPS count", + "description": "", + "group": "", + "extraInformation": [], + "name": "prefix" + }, + { + "value": "0", + "type": "Number", + "unit": "Dimensionless", + "label": "Number of decimal digits to display", + "description": "", + "group": "", + "extraInformation": [], + "name": "DecimalDigits" + } + ], + "sharedPropertyDescriptors": [] + } + ], + "eventsBasedObjects": [] +} \ No newline at end of file diff --git a/src/externalEvents/debug.json b/src/externalEvents/debug.json index 773e7916..a7a253c0 100644 --- a/src/externalEvents/debug.json +++ b/src/externalEvents/debug.json @@ -136,6 +136,35 @@ ], "parameters": [] }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "fps", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "TextContainerCapability::TextContainerBehavior::SetValue" + }, + "parameters": [ + "fps", + "Text", + "=", + "ToString(round(FPS::FPS()))" + ] + } + ] + } + ], + "parameters": [] + }, { "colorB": 228, "colorG": 176, diff --git a/src/externalEvents/game.json b/src/externalEvents/game.json index bcd0a186..9e2865ea 100644 --- a/src/externalEvents/game.json +++ b/src/externalEvents/game.json @@ -8,7 +8,6 @@ "colorG": 176, "colorR": 74, "creationTime": 0, - "folded": true, "name": "Links", "source": "", "type": "BuiltinCommonInstructions::Group", diff --git a/src/externalEvents/weaponwheel.json b/src/externalEvents/weaponwheel.json index 9ab65b40..f2bc8c42 100644 --- a/src/externalEvents/weaponwheel.json +++ b/src/externalEvents/weaponwheel.json @@ -72,19 +72,21 @@ "actions": [ { "type": { - "value": "Montre" + "value": "MontreSouris" }, "parameters": [ - "WeaponWheel", "" ] }, { "type": { - "value": "MontreSouris" + "value": "EnableLayerEffect" }, "parameters": [ - "" + "", + "", + "\"weaponwhe\"", + "yes" ] } ], @@ -100,6 +102,15 @@ } ], "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "WeaponWheel", + "" + ] + }, { "type": { "value": "Tween::TweenBehavior::AddObjectPositionXTween2" @@ -121,7 +132,7 @@ "parameters": [ "", "\"weaponWheelFade\"", - "20", + "10", "", "\"weaponwhe\"", "\"blur\"", @@ -177,6 +188,17 @@ "parameters": [ "" ] + }, + { + "type": { + "value": "EnableLayerEffect" + }, + "parameters": [ + "", + "", + "\"weaponwhe\"", + "" + ] } ], "events": [ diff --git a/src/game.json b/src/game.json index 8df86eab..1b62bd01 100644 --- a/src/game.json +++ b/src/game.json @@ -2482,6 +2482,51 @@ "name": "assets/weapons/icons/bar.png", "smoothed": true, "userAdded": true + }, + { + "alwaysLoaded": false, + "file": "assets/Road/map_edge/tile_12.png", + "kind": "image", + "metadata": "", + "name": "assets/Road/map_edge/tile_12.png", + "smoothed": true, + "userAdded": false + }, + { + "alwaysLoaded": false, + "file": "assets/Road/map_edge/tile_11.png", + "kind": "image", + "metadata": "", + "name": "assets/Road/map_edge/tile_11.png", + "smoothed": true, + "userAdded": false + }, + { + "alwaysLoaded": false, + "file": "assets/Road/sand/dirt.png", + "kind": "image", + "metadata": "", + "name": "assets/Road/sand/dirt.png", + "smoothed": true, + "userAdded": true + }, + { + "alwaysLoaded": false, + "file": "assets/Road/side_walk/sand.png", + "kind": "image", + "metadata": "", + "name": "assets/Road/side_walk/sand.png", + "smoothed": true, + "userAdded": false + }, + { + "alwaysLoaded": false, + "file": "assets/bridge/bridge.png", + "kind": "image", + "metadata": "", + "name": "assets/bridge/bridge.png", + "smoothed": true, + "userAdded": true } ], "resourceFolders": [] @@ -2837,6 +2882,10 @@ } ], "eventsFunctionsExtensions": [ + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/eventsFunctionsExtensions/fps" + }, { "__REFERENCE_TO_SPLIT_OBJECT": true, "referenceTo": "/eventsFunctionsExtensions/extendedvariables" diff --git a/src/layouts/city.json b/src/layouts/city.json index 2cd2f251..e2a68756 100644 --- a/src/layouts/city.json +++ b/src/layouts/city.json @@ -9,7 +9,7 @@ "title": "", "v": 165, "uiSettings": { - "grid": false, + "grid": true, "gridType": "rectangular", "gridWidth": 70, "gridHeight": 70, @@ -17,8 +17,8 @@ "gridOffsetY": 0, "gridColor": 10401023, "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.3250014140240832, + "snap": true, + "zoomFactor": 0.6102999644497129, "windowMask": false }, "objectsGroups": [ @@ -233,7 +233,7 @@ "folded": true, "name": "active", "type": "boolean", - "value": false + "value": true }, { "folded": true, @@ -351,8 +351,10 @@ "customSize": true, "height": 1470, "layer": "", + "locked": true, "name": "grass_tiled", "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", + "sealed": true, "width": 2100, "x": -3220, "y": -210, @@ -7367,6 +7369,7 @@ "customSize": true, "height": 1190, "layer": "", + "locked": true, "name": "grass_tiled", "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", "width": 2450, @@ -8007,166 +8010,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d7890f6-98cf-4044-a1c8-262c69cb6d46", - "width": 70, - "x": -840, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "42f16f90-784c-422a-aa77-616fdcc4561d", - "width": 70, - "x": -840, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f1e2780d-029b-4ec0-9ccb-4fe3dcac0a85", - "width": 70, - "x": -910, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58eced0f-c0fb-421c-98fc-ea739b877fb2", - "width": 70, - "x": -910, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0ca0597-6b2b-487f-8211-f84a6503286f", - "width": 70, - "x": -840, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d5f124b0-9028-454d-8772-94025a1e26d4", - "width": 70, - "x": -840, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07a0c7de-7be1-4a6f-9c88-98f341bcc48d", - "width": 70, - "x": -910, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76953f35-80de-4db0-8fcc-c8dcd7059986", - "width": 70, - "x": -910, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": false, @@ -8188,9 +8031,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", + "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", "width": 70, - "x": 770, + "x": 1540, "y": -210, "zOrder": 114, "numberProperties": [ @@ -8208,9 +8051,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", + "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", "width": 70, - "x": 840, + "x": 1610, "y": -210, "zOrder": 114, "numberProperties": [ @@ -8228,9 +8071,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", + "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", "width": 70, - "x": 770, + "x": 1540, "y": -140, "zOrder": 114, "numberProperties": [ @@ -8248,9 +8091,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", + "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", "width": 70, - "x": 840, + "x": 1610, "y": -140, "zOrder": 114, "numberProperties": [ @@ -8268,9 +8111,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", + "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", "width": 70, - "x": 770, + "x": 1540, "y": -70, "zOrder": 114, "numberProperties": [ @@ -8288,9 +8131,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", + "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", "width": 70, - "x": 840, + "x": 1610, "y": -70, "zOrder": 114, "numberProperties": [ @@ -8308,9 +8151,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", + "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", "width": 70, - "x": 770, + "x": 1540, "y": 0, "zOrder": 114, "numberProperties": [ @@ -8328,9 +8171,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", + "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", "width": 70, - "x": 840, + "x": 1610, "y": 0, "zOrder": 114, "numberProperties": [ @@ -8348,9 +8191,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", + "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", "width": 70, - "x": 770, + "x": 1540, "y": 70, "zOrder": 114, "numberProperties": [ @@ -8368,9 +8211,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", + "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", "width": 70, - "x": 840, + "x": 1610, "y": 70, "zOrder": 114, "numberProperties": [ @@ -8388,9 +8231,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", + "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", "width": 70, - "x": 770, + "x": 1540, "y": 140, "zOrder": 114, "numberProperties": [ @@ -8408,9 +8251,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", + "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", "width": 70, - "x": 840, + "x": 1610, "y": 140, "zOrder": 114, "numberProperties": [ @@ -8428,9 +8271,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", + "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", "width": 70, - "x": 770, + "x": 1540, "y": 210, "zOrder": 114, "numberProperties": [ @@ -8448,9 +8291,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", + "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", "width": 70, - "x": 840, + "x": 1610, "y": 210, "zOrder": 114, "numberProperties": [ @@ -8468,9 +8311,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", + "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", "width": 70, - "x": 770, + "x": 1540, "y": 280, "zOrder": 114, "numberProperties": [ @@ -8488,9 +8331,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", + "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", "width": 70, - "x": 840, + "x": 1610, "y": 280, "zOrder": 114, "numberProperties": [ @@ -8508,9 +8351,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", + "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", "width": 70, - "x": 770, + "x": 1540, "y": 350, "zOrder": 114, "numberProperties": [ @@ -8528,9 +8371,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", + "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", "width": 70, - "x": 840, + "x": 1610, "y": 350, "zOrder": 114, "numberProperties": [ @@ -8548,9 +8391,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", + "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", "width": 70, - "x": 770, + "x": 1540, "y": 420, "zOrder": 114, "numberProperties": [ @@ -8568,9 +8411,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", + "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", "width": 70, - "x": 840, + "x": 1610, "y": 420, "zOrder": 114, "numberProperties": [ @@ -8588,9 +8431,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", + "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", "width": 70, - "x": 770, + "x": 1540, "y": 490, "zOrder": 114, "numberProperties": [ @@ -8608,9 +8451,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", + "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", "width": 70, - "x": 840, + "x": 1610, "y": 490, "zOrder": 114, "numberProperties": [ @@ -8628,9 +8471,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", + "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", "width": 70, - "x": 770, + "x": 1540, "y": 560, "zOrder": 114, "numberProperties": [ @@ -8648,9 +8491,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", + "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", "width": 70, - "x": 840, + "x": 1610, "y": 560, "zOrder": 114, "numberProperties": [ @@ -8668,9 +8511,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", + "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", "width": 70, - "x": 770, + "x": 1540, "y": 630, "zOrder": 114, "numberProperties": [ @@ -8688,9 +8531,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", + "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", "width": 70, - "x": 840, + "x": 1610, "y": 630, "zOrder": 114, "numberProperties": [ @@ -8708,9 +8551,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", + "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", "width": 70, - "x": 770, + "x": 1540, "y": 700, "zOrder": 114, "numberProperties": [ @@ -8728,9 +8571,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", + "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", "width": 70, - "x": 840, + "x": 1610, "y": 700, "zOrder": 114, "numberProperties": [ @@ -8748,9 +8591,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", + "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", "width": 70, - "x": 770, + "x": 1540, "y": 770, "zOrder": 114, "numberProperties": [ @@ -8768,9 +8611,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", + "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", "width": 70, - "x": 840, + "x": 1610, "y": 770, "zOrder": 114, "numberProperties": [ @@ -8788,9 +8631,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", + "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", "width": 70, - "x": 770, + "x": 1540, "y": 840, "zOrder": 114, "numberProperties": [ @@ -8808,9 +8651,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", + "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", "width": 70, - "x": 840, + "x": 1610, "y": 840, "zOrder": 114, "numberProperties": [ @@ -8828,9 +8671,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", + "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", "width": 70, - "x": 770, + "x": 1540, "y": 910, "zOrder": 114, "numberProperties": [ @@ -8848,9 +8691,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", + "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", "width": 70, - "x": 840, + "x": 1610, "y": 910, "zOrder": 114, "numberProperties": [ @@ -8868,9 +8711,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", + "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", "width": 70, - "x": 770, + "x": 1540, "y": 980, "zOrder": 114, "numberProperties": [ @@ -8888,9 +8731,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", + "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", "width": 70, - "x": 840, + "x": 1610, "y": 980, "zOrder": 114, "numberProperties": [ @@ -8908,9 +8751,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", + "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", "width": 70, - "x": 770, + "x": 1540, "y": 1050, "zOrder": 114, "numberProperties": [ @@ -8928,9 +8771,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", + "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", "width": 70, - "x": 840, + "x": 1610, "y": 1050, "zOrder": 114, "numberProperties": [ @@ -8948,9 +8791,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", + "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", "width": 70, - "x": 770, + "x": 1540, "y": 1120, "zOrder": 114, "numberProperties": [ @@ -8968,9 +8811,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", + "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", "width": 70, - "x": 840, + "x": 1610, "y": 1120, "zOrder": 114, "numberProperties": [ @@ -8988,9 +8831,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", + "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", "width": 70, - "x": 770, + "x": 1540, "y": 1190, "zOrder": 114, "numberProperties": [ @@ -9008,9 +8851,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", + "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", "width": 70, - "x": 840, + "x": 1610, "y": 1190, "zOrder": 114, "numberProperties": [ @@ -9028,10 +8871,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", + "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", "width": 70, "x": 1540, - "y": -210, + "y": 1260, "zOrder": 114, "numberProperties": [ { @@ -9048,10 +8891,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", + "persistentUuid": "674a3cb9-d7c1-462f-904e-bfd6565eeefe", "width": 70, "x": 1610, - "y": -210, + "y": 1260, "zOrder": 114, "numberProperties": [ { @@ -9068,10 +8911,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", + "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", "width": 70, "x": 1540, - "y": -140, + "y": 1330, "zOrder": 114, "numberProperties": [ { @@ -9088,10 +8931,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", + "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", "width": 70, "x": 1610, - "y": -140, + "y": 1330, "zOrder": 114, "numberProperties": [ { @@ -9108,10 +8951,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", + "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", "width": 70, "x": 1540, - "y": -70, + "y": 1400, "zOrder": 114, "numberProperties": [ { @@ -9128,10 +8971,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", + "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", "width": 70, "x": 1610, - "y": -70, + "y": 1400, "zOrder": 114, "numberProperties": [ { @@ -9148,10 +8991,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", + "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", "width": 70, "x": 1540, - "y": 0, + "y": 1470, "zOrder": 114, "numberProperties": [ { @@ -9168,10 +9011,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", + "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", "width": 70, "x": 1610, - "y": 0, + "y": 1470, "zOrder": 114, "numberProperties": [ { @@ -9188,10 +9031,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", + "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", "width": 70, "x": 1540, - "y": 70, + "y": 1540, "zOrder": 114, "numberProperties": [ { @@ -9208,10 +9051,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", + "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", "width": 70, "x": 1610, - "y": 70, + "y": 1540, "zOrder": 114, "numberProperties": [ { @@ -9228,10 +9071,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", + "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", "width": 70, "x": 1540, - "y": 140, + "y": 1610, "zOrder": 114, "numberProperties": [ { @@ -9248,10 +9091,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", + "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", "width": 70, "x": 1610, - "y": 140, + "y": 1610, "zOrder": 114, "numberProperties": [ { @@ -9268,10 +9111,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", + "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", "width": 70, "x": 1540, - "y": 210, + "y": 1680, "zOrder": 114, "numberProperties": [ { @@ -9288,10 +9131,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", + "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", "width": 70, "x": 1610, - "y": 210, + "y": 1680, "zOrder": 114, "numberProperties": [ { @@ -9308,15 +9151,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", + "persistentUuid": "f56e8bff-834d-4ffe-ac7a-7ff91078ecdf", "width": 70, "x": 1540, - "y": 280, + "y": 1750, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9328,15 +9171,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", + "persistentUuid": "a1f5c763-dd07-4000-81b4-d1fe11fbd5bf", "width": 70, "x": 1610, - "y": 280, + "y": 1750, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9348,15 +9191,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", + "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", "width": 70, "x": 1540, - "y": 350, + "y": 1820, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9368,15 +9211,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", + "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", "width": 70, "x": 1610, - "y": 350, + "y": 1820, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9388,15 +9231,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", + "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", "width": 70, "x": 1540, - "y": 420, + "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9408,15 +9251,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", + "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", "width": 70, "x": 1610, - "y": 420, + "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9428,15 +9271,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", + "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", "width": 70, "x": 1540, - "y": 490, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9448,15 +9291,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", + "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", "width": 70, "x": 1610, - "y": 490, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -9468,10 +9311,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", + "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", "width": 70, - "x": 1540, - "y": 560, + "x": -140, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9488,10 +9331,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", + "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", "width": 70, - "x": 1610, - "y": 560, + "x": -70, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9508,10 +9351,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", + "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", "width": 70, - "x": 1540, - "y": 630, + "x": -140, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9528,10 +9371,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", + "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", "width": 70, - "x": 1610, - "y": 630, + "x": -70, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9548,10 +9391,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", + "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", "width": 70, - "x": 1540, - "y": 700, + "x": 0, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9568,10 +9411,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", + "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", "width": 70, - "x": 1610, - "y": 700, + "x": 70, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9588,10 +9431,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", + "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", "width": 70, - "x": 1540, - "y": 770, + "x": 0, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9608,10 +9451,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", + "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", "width": 70, - "x": 1610, - "y": 770, + "x": 70, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9628,10 +9471,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", + "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", "width": 70, - "x": 1540, - "y": 840, + "x": 140, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9648,10 +9491,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", + "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", "width": 70, - "x": 1610, - "y": 840, + "x": 210, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9668,10 +9511,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", + "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", "width": 70, - "x": 1540, - "y": 910, + "x": 140, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9688,10 +9531,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", + "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", "width": 70, - "x": 1610, - "y": 910, + "x": 210, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9708,10 +9551,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", + "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", "width": 70, - "x": 1540, - "y": 980, + "x": 280, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9728,10 +9571,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", + "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", "width": 70, - "x": 1610, - "y": 980, + "x": 350, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9748,10 +9591,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", + "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", "width": 70, - "x": 1540, - "y": 1050, + "x": 280, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9768,10 +9611,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", + "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", "width": 70, - "x": 1610, - "y": 1050, + "x": 350, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9788,10 +9631,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", + "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", "width": 70, - "x": 1540, - "y": 1120, + "x": 420, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9808,10 +9651,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", + "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", "width": 70, - "x": 1610, - "y": 1120, + "x": 490, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9828,10 +9671,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", + "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", "width": 70, - "x": 1540, - "y": 1190, + "x": 420, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9848,10 +9691,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", + "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", "width": 70, - "x": 1610, - "y": 1190, + "x": 490, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9868,30 +9711,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", + "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", "width": 70, - "x": 1540, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "674a3cb9-d7c1-462f-904e-bfd6565eeefe", - "width": 70, - "x": 1610, - "y": 1260, + "x": 560, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9908,10 +9731,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", + "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", "width": 70, - "x": 1540, - "y": 1330, + "x": 630, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9928,10 +9751,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", + "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", "width": 70, - "x": 1610, - "y": 1330, + "x": 560, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9948,10 +9771,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", + "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", "width": 70, - "x": 1540, - "y": 1400, + "x": 630, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -9968,10 +9791,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", + "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", "width": 70, - "x": 1610, - "y": 1400, + "x": 700, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -9988,10 +9811,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", + "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", "width": 70, - "x": 1540, - "y": 1470, + "x": 770, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -10008,10 +9831,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", + "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", "width": 70, - "x": 1610, - "y": 1470, + "x": 700, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -10028,10 +9851,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", + "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", "width": 70, - "x": 1540, - "y": 1540, + "x": 770, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -10048,10 +9871,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", + "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", "width": 70, - "x": 1610, - "y": 1540, + "x": 840, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -10068,10 +9891,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", + "persistentUuid": "7247f601-a750-4757-be03-95644999d829", "width": 70, - "x": 1540, - "y": 1610, + "x": 910, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -10088,10 +9911,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", + "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", "width": 70, - "x": 1610, - "y": 1610, + "x": 840, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -10108,10 +9931,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", + "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", "width": 70, - "x": 1540, - "y": 1680, + "x": 910, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -10128,10 +9951,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", + "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", "width": 70, - "x": 1610, - "y": 1680, + "x": 980, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -10148,35 +9971,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f56e8bff-834d-4ffe-ac7a-7ff91078ecdf", - "width": 70, - "x": 1540, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f5c763-dd07-4000-81b4-d1fe11fbd5bf", + "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", "width": 70, - "x": 1610, - "y": 1750, + "x": 1050, + "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10188,15 +9991,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", + "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", "width": 70, - "x": 1540, - "y": 1820, + "x": 980, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10208,15 +10011,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", + "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", "width": 70, - "x": 1610, - "y": 1820, + "x": 1050, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10228,15 +10031,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", + "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", "width": 70, - "x": 1540, + "x": 1120, "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10248,15 +10051,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", + "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", "width": 70, - "x": 1610, + "x": 1190, "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10268,15 +10071,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", + "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", "width": 70, - "x": 1540, + "x": 1120, "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10288,15 +10091,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", + "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", "width": 70, - "x": 1610, + "x": 1190, "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -10308,9 +10111,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", + "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", "width": 70, - "x": -140, + "x": 1260, "y": 1890, "zOrder": 114, "numberProperties": [ @@ -10328,9 +10131,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", + "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", "width": 70, - "x": -70, + "x": 1330, "y": 1890, "zOrder": 114, "numberProperties": [ @@ -10348,9 +10151,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", + "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", "width": 70, - "x": -140, + "x": 1260, "y": 1960, "zOrder": 114, "numberProperties": [ @@ -10368,9 +10171,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", + "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", "width": 70, - "x": -70, + "x": 1330, "y": 1960, "zOrder": 114, "numberProperties": [ @@ -10388,15 +10191,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", + "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", "width": 70, - "x": 0, + "x": 1400, "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10408,15 +10211,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", + "persistentUuid": "fc092547-6921-461e-8626-545397380833", "width": 70, - "x": 70, + "x": 1470, "y": 1890, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10428,15 +10231,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", + "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", "width": 70, - "x": 0, + "x": 1400, "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10448,15 +10251,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", + "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", "width": 70, - "x": 70, + "x": 1470, "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10467,18 +10270,13 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", + "name": "Fences", + "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", "width": 70, - "x": 140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], + "x": 560, + "y": 1050, + "zOrder": 115, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -10487,16 +10285,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", + "name": "Fences", + "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", "width": 70, - "x": 210, - "y": 1890, - "zOrder": 114, + "x": 630, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10507,12 +10305,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", + "name": "Fences", + "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", "width": 70, - "x": 140, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -10527,16 +10325,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", + "name": "Fences", + "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", "width": 70, - "x": 210, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10547,16 +10345,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", + "name": "Fences", + "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", "width": 70, - "x": 280, - "y": 1890, - "zOrder": 114, + "x": 700, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10567,16 +10365,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", + "name": "Fences", + "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", "width": 70, - "x": 350, - "y": 1890, - "zOrder": 114, + "x": 700, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10587,16 +10385,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", + "name": "Fences", + "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", "width": 70, - "x": 280, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 630, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10607,16 +10405,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", + "name": "Fences", + "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", "width": 70, - "x": 350, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10627,16 +10425,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", + "name": "Fences", + "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", "width": 70, - "x": 420, - "y": 1890, - "zOrder": 114, + "x": 700, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10647,16 +10445,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", + "name": "Fences", + "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", "width": 70, - "x": 490, - "y": 1890, - "zOrder": 114, + "x": 700, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10667,16 +10465,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", + "name": "Fences", + "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", "width": 70, - "x": 420, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10687,16 +10485,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", + "name": "Fences", + "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", "width": 70, - "x": 490, - "y": 1960, - "zOrder": 114, + "x": 700, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 4 } ], "stringProperties": [], @@ -10707,16 +10505,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", + "name": "Fences", + "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", "width": 70, "x": 560, - "y": 1890, - "zOrder": 114, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10727,16 +10525,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", + "name": "Fences", + "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", "width": 70, "x": 630, - "y": 1890, - "zOrder": 114, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10747,16 +10545,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", + "name": "Fences", + "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", "width": 70, - "x": 560, - "y": 1960, - "zOrder": 114, + "x": 420, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10767,16 +10565,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", + "name": "Fences", + "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", "width": 70, - "x": 630, - "y": 1960, - "zOrder": 114, + "x": 490, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10787,36 +10585,42 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", + "name": "Fences", + "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", "width": 70, - "x": 700, - "y": 1890, - "zOrder": 114, + "x": 280, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], - "initialVariables": [] + "initialVariables": [ + { + "name": "Id", + "type": "string", + "value": "1" + } + ] }, { "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", + "name": "Fences", + "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", "width": 70, - "x": 770, - "y": 1890, - "zOrder": 114, + "x": 350, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10827,16 +10631,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", + "name": "Fences", + "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", "width": 70, - "x": 700, - "y": 1960, - "zOrder": 114, + "x": 140, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10847,16 +10651,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", + "name": "Fences", + "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", "width": 70, - "x": 770, - "y": 1960, - "zOrder": 114, + "x": 210, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -10867,16 +10671,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", + "name": "Fences", + "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", "width": 70, - "x": 840, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -10887,16 +10691,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7247f601-a750-4757-be03-95644999d829", + "name": "Fences", + "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", "width": 70, - "x": 910, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10907,16 +10711,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", + "name": "Fences", + "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", "width": 70, - "x": 840, - "y": 1960, - "zOrder": 114, + "x": 0, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10927,16 +10731,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", + "name": "Fences", + "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", "width": 70, - "x": 910, - "y": 1960, - "zOrder": 114, + "x": 0, + "y": 630, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10947,16 +10751,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", + "name": "Fences", + "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", "width": 70, - "x": 980, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10967,16 +10771,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", + "name": "Fences", + "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", "width": 70, - "x": 1050, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -10987,16 +10791,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", + "name": "Fences", + "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", "width": 70, - "x": 980, - "y": 1960, - "zOrder": 114, + "x": 0, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11007,16 +10811,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", + "name": "Fences", + "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 114, + "x": 0, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11027,16 +10831,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", + "name": "Fences", + "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", "width": 70, - "x": 1120, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11047,16 +10851,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", + "name": "Fences", + "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", "width": 70, - "x": 1190, - "y": 1890, - "zOrder": 114, + "x": 70, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11067,16 +10871,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", + "name": "Fences", + "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", "width": 70, - "x": 1120, - "y": 1960, - "zOrder": 114, + "x": 0, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -11087,16 +10891,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", + "name": "Fences", + "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", "width": 70, - "x": 1190, - "y": 1960, - "zOrder": 114, + "x": 140, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11107,16 +10911,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", + "name": "Fences", + "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 114, + "x": 70, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11127,16 +10931,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", + "name": "Fences", + "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", "width": 70, - "x": 1330, - "y": 1890, - "zOrder": 114, + "x": 280, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11147,16 +10951,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", + "name": "Fences", + "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 114, + "x": 210, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11167,16 +10971,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", + "name": "Fences", + "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", "width": 70, - "x": 1330, - "y": 1960, - "zOrder": 114, + "x": 350, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -11187,16 +10991,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", + "name": "Fences", + "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", "width": 70, - "x": 1400, - "y": 1890, - "zOrder": 114, + "x": 0, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 4 } ], "stringProperties": [], @@ -11207,16 +11011,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fc092547-6921-461e-8626-545397380833", + "name": "Fences", + "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", "width": 70, - "x": 1470, - "y": 1890, - "zOrder": 114, + "x": -210, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -11227,16 +11031,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", + "name": "Fences", + "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", "width": 70, - "x": 1400, - "y": 1960, - "zOrder": 114, + "x": -140, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -11247,16 +11051,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", + "name": "Fences", + "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", "width": 70, - "x": 1470, - "y": 1960, - "zOrder": 114, + "x": -350, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -11267,16 +11071,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", + "name": "Fences", + "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", "width": 70, - "x": 420, - "y": 1190, - "zOrder": 26, + "x": -280, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11287,16 +11091,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", + "name": "Fences", + "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", "width": 70, - "x": 490, - "y": 1190, - "zOrder": 26, + "x": -490, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11307,16 +11111,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", + "name": "Fences", + "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", "width": 70, - "x": 490, - "y": 1120, - "zOrder": 26, + "x": -420, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11327,16 +11131,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", + "name": "Fences", + "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", "width": 70, - "x": 420, - "y": 1120, - "zOrder": 26, + "x": -630, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11347,16 +11151,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", + "name": "Fences", + "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", "width": 70, - "x": 630, - "y": 1120, - "zOrder": 114, + "x": -560, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11367,16 +11171,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", + "name": "Fences", + "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", "width": 70, - "x": 700, - "y": 1120, - "zOrder": 114, + "x": -700, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11387,16 +11191,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", + "name": "Fences", + "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", "width": 70, - "x": 630, - "y": 1190, - "zOrder": 114, + "x": -910, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -11407,16 +11211,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", + "name": "Fences", + "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", "width": 70, - "x": 700, - "y": 1190, - "zOrder": 114, + "x": -840, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11427,16 +11231,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", + "name": "Fences", + "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", "width": 70, - "x": 280, - "y": 1120, - "zOrder": 114, + "x": -770, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11447,16 +11251,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", + "name": "Fences", + "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", "width": 70, - "x": 350, - "y": 1120, - "zOrder": 114, + "x": -910, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11467,16 +11271,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", + "name": "Fences", + "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", "width": 70, - "x": 280, - "y": 1190, - "zOrder": 114, + "x": -910, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11487,16 +11291,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", + "name": "Fences", + "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", "width": 70, - "x": 350, - "y": 1190, - "zOrder": 114, + "x": -910, + "y": 630, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11507,16 +11311,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", + "name": "Fences", + "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", "width": 70, - "x": 560, - "y": 1120, - "zOrder": 114, + "x": -910, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11527,16 +11331,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", + "name": "Fences", + "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", "width": 70, - "x": 560, - "y": 1190, - "zOrder": 114, + "x": -910, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11547,16 +11351,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", + "name": "Fences", + "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", "width": 70, - "x": -210, - "y": 1120, - "zOrder": 26, + "x": -910, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11567,16 +11371,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", + "name": "Fences", + "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", "width": 70, - "x": -280, - "y": 1120, - "zOrder": 26, + "x": -910, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11587,16 +11391,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", + "name": "Fences", + "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", "width": 70, - "x": -280, - "y": 1190, - "zOrder": 26, + "x": -910, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11607,16 +11411,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", + "name": "Fences", + "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", "width": 70, - "x": -210, - "y": 1190, - "zOrder": 26, + "x": -910, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -11627,16 +11431,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", + "name": "Fences", + "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", "width": 70, - "x": 0, - "y": 1120, - "zOrder": 114, + "x": -840, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11647,16 +11451,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", + "name": "Fences", + "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", "width": 70, - "x": 70, - "y": 1120, - "zOrder": 114, + "x": -770, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11667,16 +11471,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", + "name": "Fences", + "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", "width": 70, - "x": 0, - "y": 1190, - "zOrder": 114, + "x": -700, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11687,16 +11491,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", + "name": "Fences", + "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", "width": 70, - "x": 70, - "y": 1190, - "zOrder": 114, + "x": -630, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11707,16 +11511,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", + "name": "Fences", + "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", "width": 70, - "x": 140, - "y": 1120, - "zOrder": 114, + "x": -490, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11727,16 +11531,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", + "name": "Fences", + "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", "width": 70, - "x": 210, - "y": 1120, - "zOrder": 114, + "x": -420, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11747,16 +11551,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", + "name": "Fences", + "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", "width": 70, - "x": 140, - "y": 1190, - "zOrder": 114, + "x": -560, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -11767,12 +11571,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", + "name": "Fences", + "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", "width": 70, - "x": 210, - "y": 1190, - "zOrder": 114, + "x": 0, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -11787,16 +11591,31 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", + "name": "Fences", + "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", + "width": 70, + "x": -140, + "y": 1050, + "zOrder": 115, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", "width": 70, "x": -350, - "y": 1120, - "zOrder": 114, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -11808,15 +11627,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", + "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", "width": 70, - "x": -140, - "y": 1190, - "zOrder": 114, + "x": -1120, + "y": 2030, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11828,15 +11647,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", + "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", "width": 70, - "x": -350, - "y": 1190, - "zOrder": 114, + "x": -1120, + "y": 1960, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11848,15 +11667,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", + "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", "width": 70, - "x": -140, - "y": 1120, - "zOrder": 114, + "x": -1050, + "y": 1960, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11868,15 +11687,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", + "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", "width": 70, - "x": -490, - "y": 1120, - "zOrder": 114, + "x": -1050, + "y": 2030, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11888,15 +11707,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", + "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", "width": 70, - "x": -420, - "y": 1120, - "zOrder": 114, + "x": -1050, + "y": 1330, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11908,15 +11727,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", + "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", "width": 70, - "x": -490, - "y": 1190, - "zOrder": 114, + "x": -1050, + "y": 1400, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11928,15 +11747,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", + "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", "width": 70, - "x": -420, - "y": 1190, - "zOrder": 114, + "x": -980, + "y": 1330, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11948,15 +11767,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", + "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", "width": 70, - "x": -630, - "y": 1120, - "zOrder": 114, + "x": -980, + "y": 1400, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -11968,10 +11787,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", + "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", "width": 70, - "x": -560, - "y": 1120, + "x": -140, + "y": 2030, "zOrder": 114, "numberProperties": [ { @@ -11988,10 +11807,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", + "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", "width": 70, - "x": -630, - "y": 1190, + "x": -70, + "y": 2030, "zOrder": 114, "numberProperties": [ { @@ -12008,10 +11827,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", + "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", "width": 70, - "x": -560, - "y": 1190, + "x": -70, + "y": 2100, "zOrder": 114, "numberProperties": [ { @@ -12028,10 +11847,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", + "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", "width": 70, - "x": -910, - "y": 1120, + "x": -140, + "y": 2100, "zOrder": 114, "numberProperties": [ { @@ -12048,10 +11867,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", + "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", "width": 70, - "x": -70, - "y": 1120, + "x": -140, + "y": 2170, "zOrder": 114, "numberProperties": [ { @@ -12068,10 +11887,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", + "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", "width": 70, - "x": -910, - "y": 1190, + "x": -70, + "y": 2170, "zOrder": 114, "numberProperties": [ { @@ -12088,10 +11907,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", + "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", "width": 70, "x": -70, - "y": 1190, + "y": 2240, "zOrder": 114, "numberProperties": [ { @@ -12108,10 +11927,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", + "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", "width": 70, - "x": -770, - "y": 1120, + "x": -140, + "y": 2240, "zOrder": 114, "numberProperties": [ { @@ -12128,10 +11947,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", + "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", "width": 70, - "x": -700, - "y": 1120, + "x": -140, + "y": 2310, "zOrder": 114, "numberProperties": [ { @@ -12148,10 +11967,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", + "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", "width": 70, - "x": -770, - "y": 1190, + "x": -70, + "y": 2310, "zOrder": 114, "numberProperties": [ { @@ -12168,10 +11987,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", + "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", "width": 70, - "x": -700, - "y": 1190, + "x": -140, + "y": 2380, "zOrder": 114, "numberProperties": [ { @@ -12187,13 +12006,18 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", + "name": "sand", + "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", "width": 70, - "x": 560, - "y": 1050, - "zOrder": 115, - "numberProperties": [], + "x": -70, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], "stringProperties": [], "initialVariables": [] }, @@ -12202,16 +12026,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", + "name": "sand", + "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", "width": 70, - "x": 630, - "y": 1050, - "zOrder": 115, + "x": -70, + "y": 2450, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12222,12 +12046,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", + "name": "sand", + "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", "width": 70, - "x": 700, - "y": 1050, - "zOrder": 115, + "x": -140, + "y": 2450, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -12242,16 +12066,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", + "name": "sand", + "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", "width": 70, - "x": 700, - "y": 910, - "zOrder": 115, + "x": -140, + "y": 2520, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12262,16 +12086,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", + "name": "sand", + "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", "width": 70, - "x": 700, - "y": 770, - "zOrder": 115, + "x": -70, + "y": 2520, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12282,16 +12106,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", + "name": "sand", + "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", "width": 70, - "x": 700, - "y": 840, - "zOrder": 115, + "x": -70, + "y": 2590, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12302,16 +12126,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", + "name": "sand", + "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", "width": 70, - "x": 700, - "y": 630, - "zOrder": 115, + "x": -140, + "y": 2590, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12322,16 +12146,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", + "name": "sand", + "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", "width": 70, - "x": 700, - "y": 700, - "zOrder": 115, + "x": -140, + "y": 2660, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12342,16 +12166,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", + "name": "sand", + "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", "width": 70, - "x": 700, - "y": 980, - "zOrder": 115, + "x": -70, + "y": 2660, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12362,16 +12186,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", + "name": "sand", + "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", "width": 70, - "x": 700, - "y": 560, - "zOrder": 115, + "x": -140, + "y": 2730, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12382,16 +12206,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", + "name": "sand", + "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", "width": 70, - "x": 700, - "y": 490, - "zOrder": 115, + "x": -70, + "y": 2730, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12402,16 +12226,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", + "name": "sand", + "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", "width": 70, - "x": 700, - "y": 420, - "zOrder": 115, + "x": -70, + "y": 2800, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 2 } ], "stringProperties": [], @@ -12422,16 +12246,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", + "name": "sand", + "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", "width": 70, - "x": 560, - "y": 420, - "zOrder": 115, + "x": -140, + "y": 2800, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12442,16 +12266,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", + "name": "sand", + "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", "width": 70, - "x": 630, - "y": 420, - "zOrder": 115, + "x": -140, + "y": 2870, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12462,16 +12286,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", + "name": "sand", + "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", "width": 70, - "x": 420, - "y": 420, - "zOrder": 115, + "x": -70, + "y": 2870, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12482,16 +12306,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", + "name": "sand", + "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", "width": 70, - "x": 490, - "y": 420, - "zOrder": 115, + "x": -70, + "y": 2940, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12502,42 +12326,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", + "name": "sand", + "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", "width": 70, - "x": 280, - "y": 420, - "zOrder": 115, + "x": -140, + "y": 2940, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] + "initialVariables": [] }, { "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", + "name": "sand", + "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", "width": 70, - "x": 350, - "y": 420, - "zOrder": 115, + "x": -140, + "y": 3010, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12548,16 +12366,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", + "name": "sand", + "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", "width": 70, - "x": 140, - "y": 420, - "zOrder": 115, + "x": -70, + "y": 3010, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12568,16 +12386,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", + "name": "sand", + "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", "width": 70, - "x": 210, - "y": 420, - "zOrder": 115, + "x": -2030, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12588,16 +12406,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", + "name": "sand", + "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, + "x": -1960, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -12608,16 +12426,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", + "name": "sand", + "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", "width": 70, - "x": 0, - "y": 490, - "zOrder": 115, + "x": -2030, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12628,16 +12446,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", + "name": "sand", + "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", "width": 70, - "x": 0, - "y": 560, - "zOrder": 115, + "x": -1960, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12648,16 +12466,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", + "name": "sand", + "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", "width": 70, - "x": 0, - "y": 630, - "zOrder": 115, + "x": -1890, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12668,16 +12486,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", + "name": "sand", + "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", "width": 70, - "x": 0, - "y": 700, - "zOrder": 115, + "x": -1820, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12688,16 +12506,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", + "name": "sand", + "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", "width": 70, - "x": 0, - "y": 770, - "zOrder": 115, + "x": -1890, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12708,16 +12526,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", + "name": "sand", + "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", "width": 70, - "x": 0, - "y": 840, - "zOrder": 115, + "x": -1820, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12728,16 +12546,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", + "name": "sand", + "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", "width": 70, - "x": 0, - "y": 910, - "zOrder": 115, + "x": -1750, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12748,16 +12566,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", + "name": "sand", + "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", "width": 70, - "x": 0, - "y": 980, - "zOrder": 115, + "x": -1680, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -12768,16 +12586,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", + "name": "sand", + "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", "width": 70, - "x": 70, - "y": 420, - "zOrder": 115, + "x": -1750, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12788,16 +12606,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", + "name": "sand", + "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, + "x": -1680, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 2 } ], "stringProperties": [], @@ -12808,16 +12626,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", + "name": "sand", + "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", "width": 70, - "x": 140, - "y": 1050, - "zOrder": 115, + "x": -1610, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12828,16 +12646,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", + "name": "sand", + "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", "width": 70, - "x": 70, - "y": 1050, - "zOrder": 115, + "x": -1540, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12848,16 +12666,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", + "name": "sand", + "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", "width": 70, - "x": 280, - "y": 1050, - "zOrder": 115, - "numberProperties": [ + "x": -1610, + "y": 2380, + "zOrder": 114, + "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12868,16 +12686,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", + "name": "sand", + "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", "width": 70, - "x": 210, - "y": 1050, - "zOrder": 115, + "x": -1540, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12888,16 +12706,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", + "name": "sand", + "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", "width": 70, - "x": 350, - "y": 1050, - "zOrder": 115, + "x": -1470, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 2 } ], "stringProperties": [], @@ -12908,16 +12726,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", + "name": "sand", + "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, + "x": -1400, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 2 } ], "stringProperties": [], @@ -12928,16 +12746,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", + "name": "sand", + "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", "width": 70, - "x": -210, - "y": 420, - "zOrder": 115, + "x": -1470, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12948,16 +12766,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", + "name": "sand", + "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", "width": 70, - "x": -140, - "y": 420, - "zOrder": 115, + "x": -1400, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12968,16 +12786,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", + "name": "sand", + "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", "width": 70, - "x": -350, - "y": 420, - "zOrder": 115, + "x": -1330, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -12988,16 +12806,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", + "name": "sand", + "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", "width": 70, - "x": -280, - "y": 420, - "zOrder": 115, + "x": -1260, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13008,16 +12826,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", + "name": "sand", + "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", "width": 70, - "x": -490, - "y": 420, - "zOrder": 115, + "x": -1330, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13028,16 +12846,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", + "name": "sand", + "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", "width": 70, - "x": -420, - "y": 420, - "zOrder": 115, + "x": -1260, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13048,16 +12866,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", + "name": "sand", + "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", "width": 70, - "x": -630, - "y": 420, - "zOrder": 115, + "x": -1190, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13068,16 +12886,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", + "name": "sand", + "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", "width": 70, - "x": -560, - "y": 420, - "zOrder": 115, + "x": -1120, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13088,16 +12906,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", + "name": "sand", + "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", "width": 70, - "x": -700, - "y": 420, - "zOrder": 115, + "x": -1190, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13108,16 +12926,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", + "name": "sand", + "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", "width": 70, - "x": -910, - "y": 420, - "zOrder": 115, + "x": -1120, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -13128,16 +12946,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", + "name": "sand", + "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", "width": 70, - "x": -840, - "y": 420, - "zOrder": 115, + "x": -1050, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13148,16 +12966,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", + "name": "sand", + "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", "width": 70, - "x": -770, - "y": 420, - "zOrder": 115, + "x": -980, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13168,16 +12986,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", + "name": "sand", + "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", "width": 70, - "x": -910, - "y": 490, - "zOrder": 115, + "x": -1050, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13188,16 +13006,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", + "name": "sand", + "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", "width": 70, - "x": -910, - "y": 560, - "zOrder": 115, + "x": -980, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13208,16 +13026,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", + "name": "sand", + "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", "width": 70, - "x": -910, - "y": 630, - "zOrder": 115, + "x": -2730, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13228,16 +13046,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", + "name": "sand", + "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", "width": 70, - "x": -910, - "y": 700, - "zOrder": 115, + "x": -2660, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13248,16 +13066,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", + "name": "sand", + "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", "width": 70, - "x": -910, - "y": 840, - "zOrder": 115, + "x": -2730, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13268,16 +13086,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", + "name": "sand", + "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", "width": 70, - "x": -910, - "y": 770, - "zOrder": 115, + "x": -2660, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13288,16 +13106,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", + "name": "sand", + "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", "width": 70, - "x": -910, - "y": 910, - "zOrder": 115, + "x": -2590, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13308,16 +13126,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", + "name": "sand", + "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", "width": 70, - "x": -910, - "y": 980, - "zOrder": 115, + "x": -2520, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13328,16 +13146,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", + "name": "sand", + "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", "width": 70, - "x": -910, - "y": 1050, - "zOrder": 115, + "x": -2590, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 2 } ], "stringProperties": [], @@ -13348,16 +13166,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", + "name": "sand", + "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", "width": 70, - "x": -840, - "y": 1050, - "zOrder": 115, + "x": -2520, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13368,16 +13186,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", + "name": "sand", + "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", "width": 70, - "x": -770, - "y": 1050, - "zOrder": 115, + "x": -2450, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13388,16 +13206,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", + "name": "sand", + "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", "width": 70, - "x": -700, - "y": 1050, - "zOrder": 115, + "x": -2380, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13408,16 +13226,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", + "name": "sand", + "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", "width": 70, - "x": -630, - "y": 1050, - "zOrder": 115, + "x": -2450, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13428,16 +13246,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", + "name": "sand", + "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", "width": 70, - "x": -490, - "y": 1050, - "zOrder": 115, + "x": -2380, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13448,16 +13266,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", + "name": "sand", + "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", "width": 70, - "x": -420, - "y": 1050, - "zOrder": 115, + "x": -2310, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13468,16 +13286,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", + "name": "sand", + "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", "width": 70, - "x": -560, - "y": 1050, - "zOrder": 115, + "x": -2240, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -13488,12 +13306,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", + "name": "sand", + "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, + "x": -2310, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -13508,13 +13326,18 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", + "name": "sand", + "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", "width": 70, - "x": -140, - "y": 1050, - "zOrder": 115, - "numberProperties": [], + "x": -2240, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], "stringProperties": [], "initialVariables": [] }, @@ -13523,16 +13346,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", + "name": "sand", + "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", "width": 70, - "x": -350, - "y": 1050, - "zOrder": 115, + "x": -2170, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 2 } ], "stringProperties": [], @@ -13544,15 +13367,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", + "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", "width": 70, - "x": -1120, - "y": 2030, - "zOrder": 26, + "x": -2100, + "y": 2310, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13564,15 +13387,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", + "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", "width": 70, - "x": -1120, - "y": 1960, - "zOrder": 26, + "x": -2170, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13584,15 +13407,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", + "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, + "x": -2100, + "y": 2380, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13604,15 +13427,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", + "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, + "x": -1120, + "y": 3080, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13624,15 +13447,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", + "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", "width": 70, "x": -1050, - "y": 1330, - "zOrder": 26, + "y": 3080, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13644,15 +13467,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", + "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, + "x": -1120, + "y": 3150, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13664,15 +13487,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", + "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, + "x": -1050, + "y": 3150, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13684,15 +13507,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", + "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", "width": 70, "x": -980, - "y": 1400, - "zOrder": 26, + "y": 3080, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -13704,10 +13527,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", + "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", "width": 70, - "x": -840, - "y": 1120, + "x": -910, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13724,10 +13547,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", + "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", "width": 70, - "x": -840, - "y": 1190, + "x": -980, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13744,10 +13567,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", + "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", "width": 70, "x": -910, - "y": 1260, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13764,10 +13587,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", + "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", "width": 70, "x": -840, - "y": 1470, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13784,10 +13607,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", + "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", "width": 70, - "x": -840, - "y": 1260, + "x": -770, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13804,10 +13627,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", + "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", "width": 70, - "x": -910, - "y": 1470, + "x": -840, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13824,10 +13647,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", + "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", "width": 70, - "x": -910, - "y": 1610, + "x": -770, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13844,10 +13667,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", + "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", "width": 70, - "x": -910, - "y": 1680, + "x": -700, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13864,10 +13687,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", + "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", "width": 70, - "x": -840, - "y": 1610, + "x": -630, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13884,10 +13707,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", + "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", "width": 70, - "x": -840, - "y": 1680, + "x": -700, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13904,10 +13727,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", + "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", "width": 70, - "x": -910, - "y": 1750, + "x": -630, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13924,10 +13747,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", + "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", "width": 70, - "x": -910, - "y": 1820, + "x": -560, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13944,10 +13767,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", + "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", "width": 70, - "x": -840, - "y": 1750, + "x": -490, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -13964,10 +13787,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", + "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", "width": 70, - "x": -840, - "y": 1820, + "x": -560, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -13984,10 +13807,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", + "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", "width": 70, - "x": -910, - "y": 1890, + "x": -490, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14004,10 +13827,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", + "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", "width": 70, - "x": -840, - "y": 2100, + "x": -420, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14024,10 +13847,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", + "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", "width": 70, - "x": -840, - "y": 1890, + "x": -350, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14044,10 +13867,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", + "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", "width": 70, - "x": -910, - "y": 2100, + "x": -420, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14064,10 +13887,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", + "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", "width": 70, - "x": -910, - "y": 2170, + "x": -350, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14084,10 +13907,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", + "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", "width": 70, - "x": -910, - "y": 2240, + "x": -280, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14104,10 +13927,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", + "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", "width": 70, - "x": -840, - "y": 2170, + "x": -210, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14124,10 +13947,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", + "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", "width": 70, - "x": -840, - "y": 2240, + "x": -280, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14144,10 +13967,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", + "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", "width": 70, - "x": -910, - "y": 2310, + "x": -210, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14164,10 +13987,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", + "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", "width": 70, - "x": -910, - "y": 2380, + "x": -140, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14184,10 +14007,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", + "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", "width": 70, - "x": -840, - "y": 2310, + "x": -70, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14204,10 +14027,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", + "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", "width": 70, - "x": -840, - "y": 2380, + "x": -140, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14224,10 +14047,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", + "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", "width": 70, - "x": -910, - "y": 1540, + "x": -70, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14244,10 +14067,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", + "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", "width": 70, - "x": -840, - "y": 1540, + "x": -2240, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14264,10 +14087,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", + "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", "width": 70, - "x": -140, - "y": 2030, + "x": -2170, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14284,10 +14107,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", + "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", "width": 70, - "x": -70, - "y": 2030, + "x": -2240, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14304,10 +14127,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", + "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", "width": 70, - "x": -70, - "y": 2100, + "x": -2170, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14324,10 +14147,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", + "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", "width": 70, - "x": -140, - "y": 2100, + "x": -2100, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14344,10 +14167,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", + "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", "width": 70, - "x": -140, - "y": 2170, + "x": -2030, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14364,10 +14187,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", + "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", "width": 70, - "x": -70, - "y": 2170, + "x": -2100, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14384,10 +14207,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", + "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", "width": 70, - "x": -70, - "y": 2240, + "x": -2030, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14404,10 +14227,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", + "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", "width": 70, - "x": -140, - "y": 2240, + "x": -1960, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14424,10 +14247,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", + "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", "width": 70, - "x": -140, - "y": 2310, + "x": -1890, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14444,10 +14267,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", + "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", "width": 70, - "x": -70, - "y": 2310, + "x": -1960, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14464,10 +14287,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", + "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", "width": 70, - "x": -140, - "y": 2380, + "x": -1890, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14484,10 +14307,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", + "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", "width": 70, - "x": -70, - "y": 2380, + "x": -1820, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14504,10 +14327,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", + "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", "width": 70, - "x": -70, - "y": 2450, + "x": -1750, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14524,10 +14347,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", + "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", "width": 70, - "x": -140, - "y": 2450, + "x": -1820, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14544,10 +14367,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", + "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", "width": 70, - "x": -140, - "y": 2520, + "x": -1750, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14564,10 +14387,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", + "persistentUuid": "52547319-be3b-4d16-85d0-1719cbd0927e", "width": 70, - "x": -70, - "y": 2520, + "x": -1680, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14584,10 +14407,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", + "persistentUuid": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", "width": 70, - "x": -70, - "y": 2590, + "x": -1610, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14604,10 +14427,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", + "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", "width": 70, - "x": -140, - "y": 2590, + "x": -1680, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14624,10 +14447,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", + "persistentUuid": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", "width": 70, - "x": -140, - "y": 2660, + "x": -1610, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14644,10 +14467,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", + "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", "width": 70, - "x": -70, - "y": 2660, + "x": -1540, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14664,10 +14487,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", + "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", "width": 70, - "x": -140, - "y": 2730, + "x": -1470, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14684,10 +14507,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", + "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", "width": 70, - "x": -70, - "y": 2730, + "x": -1540, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14704,10 +14527,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", + "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", "width": 70, - "x": -70, - "y": 2800, + "x": -1470, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14724,10 +14547,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", + "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", "width": 70, - "x": -140, - "y": 2800, + "x": -1400, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14744,10 +14567,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", + "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", "width": 70, - "x": -140, - "y": 2870, + "x": -1330, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14764,10 +14587,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", + "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", "width": 70, - "x": -70, - "y": 2870, + "x": -1400, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14784,10 +14607,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", + "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", "width": 70, - "x": -70, - "y": 2940, + "x": -1330, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14804,10 +14627,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", + "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", "width": 70, - "x": -140, - "y": 2940, + "x": -1260, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14824,10 +14647,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", + "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", "width": 70, - "x": -140, - "y": 3010, + "x": -1190, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -14844,10 +14667,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", + "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", "width": 70, - "x": -70, - "y": 3010, + "x": -1260, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14864,10 +14687,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", + "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", "width": 70, - "x": -2030, - "y": 2310, + "x": -1190, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -14883,16 +14706,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", + "name": "Fences", + "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", "width": 70, - "x": -1960, - "y": 2310, - "zOrder": 114, + "x": -70, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -14903,32 +14726,32 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", + "name": "Fences", + "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", "width": 70, - "x": -2030, - "y": 2380, - "zOrder": 114, + "x": -70, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", - "width": 70, - "x": -1960, - "y": 2380, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", + "width": 140, + "x": -241, + "y": 484, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -14939,40 +14762,40 @@ "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", - "width": 70, - "x": -1890, - "y": 2310, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", + "width": 140, + "x": -830, + "y": 549, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", - "width": 70, - "x": -1820, - "y": 2310, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", + "width": 140, + "x": -830, + "y": 969, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -14981,58 +14804,58 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", - "width": 70, - "x": -1890, - "y": 2380, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", + "width": 140, + "x": -772, + "y": 771, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", + "name": "Fences", + "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", "width": 70, - "x": -1820, - "y": 2380, - "zOrder": 114, + "x": -980, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", + "name": "Fences", + "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", "width": 70, - "x": -1750, - "y": 2310, - "zOrder": 114, + "x": -980, + "y": 1260, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -15043,16 +14866,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", + "name": "Fences", + "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", "width": 70, - "x": -1680, - "y": 2310, - "zOrder": 114, + "x": -980, + "y": 1190, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15063,16 +14886,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", + "name": "Fences", + "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", "width": 70, - "x": -1750, - "y": 2380, - "zOrder": 114, + "x": -980, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15083,16 +14906,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", + "name": "Fences", + "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", "width": 70, - "x": -1680, - "y": 2380, - "zOrder": 114, + "x": -1470, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15103,16 +14926,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", + "name": "Fences", + "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", "width": 70, - "x": -1610, - "y": 2310, - "zOrder": 114, + "x": -1120, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15123,16 +14946,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", + "name": "Fences", + "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", "width": 70, - "x": -1540, - "y": 2310, - "zOrder": 114, + "x": -1190, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15143,16 +14966,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", + "name": "Fences", + "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", "width": 70, - "x": -1610, - "y": 2380, - "zOrder": 114, + "x": -1050, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15163,16 +14986,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", + "name": "Fences", + "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", "width": 70, "x": -1540, - "y": 2380, - "zOrder": 114, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15183,16 +15006,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", + "name": "Fences", + "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", "width": 70, - "x": -1470, - "y": 2310, - "zOrder": 114, + "x": -1400, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15203,16 +15026,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", + "name": "Fences", + "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", "width": 70, - "x": -1400, - "y": 2310, - "zOrder": 114, + "x": -1330, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15223,16 +15046,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", + "name": "Fences", + "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", "width": 70, - "x": -1470, - "y": 2380, - "zOrder": 114, + "x": -1260, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15243,16 +15066,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", + "name": "Fences", + "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", "width": 70, - "x": -1400, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -15263,16 +15086,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", + "name": "Fences", + "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", "width": 70, - "x": -1330, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -15283,16 +15106,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", + "name": "Fences", + "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", "width": 70, - "x": -1260, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15303,16 +15126,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", + "name": "Fences", + "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", "width": 70, - "x": -1330, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1610, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15323,16 +15146,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", + "name": "Fences", + "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", "width": 70, - "x": -1260, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1540, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15343,16 +15166,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", + "name": "Fences", + "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", "width": 70, - "x": -1190, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1470, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15363,16 +15186,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", + "name": "Fences", + "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", "width": 70, - "x": -1120, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15383,16 +15206,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", + "name": "Fences", + "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", "width": 70, - "x": -1190, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1330, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15403,16 +15226,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", + "name": "Fences", + "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", "width": 70, - "x": -1120, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1260, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15421,38 +15244,39 @@ { "angle": 0, "customSize": true, + "depth": 1, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", + "name": "Fences", + "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", "width": 70, - "x": -1050, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1190, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 270, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", + "name": "Fences", + "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", "width": 70, "x": -980, - "y": 2310, - "zOrder": 114, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -15463,16 +15287,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", + "name": "Fences", + "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", "width": 70, - "x": -1050, - "y": 2380, - "zOrder": 114, + "x": -980, + "y": 1820, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15483,16 +15307,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", + "name": "Fences", + "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", "width": 70, "x": -980, - "y": 2380, - "zOrder": 114, + "y": 1750, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15503,16 +15327,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", + "name": "Fences", + "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", "width": 70, - "x": -3150, - "y": 2310, - "zOrder": 114, + "x": -980, + "y": 1610, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15523,16 +15347,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", + "name": "Fences", + "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", "width": 70, - "x": -3080, - "y": 2310, - "zOrder": 114, + "x": -980, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15543,36 +15367,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", + "name": "Fences", + "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", "width": 70, - "x": -3150, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1120, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", + "name": "Fences", + "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", "width": 70, - "x": -3080, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -15583,16 +15407,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", + "name": "Fences", + "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", "width": 70, - "x": -3010, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1960, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15603,16 +15427,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", + "name": "Fences", + "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", "width": 70, - "x": -3010, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1890, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15623,16 +15447,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", + "name": "Fences", + "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", "width": 70, - "x": -2730, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1820, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15643,36 +15467,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", + "name": "Fences", + "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", "width": 70, - "x": -2660, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 1750, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", + "name": "Fences", + "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", "width": 70, - "x": -2730, - "y": 2380, - "zOrder": 114, + "x": -980, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -15683,16 +15507,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", + "name": "Fences", + "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", "width": 70, - "x": -2660, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -15703,16 +15527,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", + "name": "Fences", + "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", "width": 70, - "x": -2590, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15723,16 +15547,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", + "name": "Fences", + "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", "width": 70, - "x": -2520, - "y": 2310, - "zOrder": 114, + "x": -1680, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15743,16 +15567,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", + "name": "Fences", + "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", "width": 70, - "x": -2590, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -15763,16 +15587,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", + "name": "Fences", + "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", "width": 70, - "x": -2520, - "y": 2380, - "zOrder": 114, + "x": -1330, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15783,16 +15607,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", + "name": "Fences", + "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", "width": 70, - "x": -2450, - "y": 2310, - "zOrder": 114, + "x": -1400, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15803,16 +15627,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", + "name": "Fences", + "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", "width": 70, - "x": -2380, - "y": 2310, - "zOrder": 114, + "x": -1470, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15823,16 +15647,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", + "name": "Fences", + "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", "width": 70, - "x": -2450, - "y": 2380, - "zOrder": 114, + "x": -1540, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15843,16 +15667,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", + "name": "Fences", + "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", "width": 70, - "x": -2380, - "y": 2380, - "zOrder": 114, + "x": -1050, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15863,16 +15687,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", + "name": "Fences", + "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", "width": 70, - "x": -2310, - "y": 2310, - "zOrder": 114, + "x": -1120, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15883,16 +15707,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", + "name": "Fences", + "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", "width": 70, - "x": -2240, - "y": 2310, - "zOrder": 114, + "x": -1190, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15903,56 +15727,56 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", + "name": "Fences", + "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", "width": 70, - "x": -2310, - "y": 2380, - "zOrder": 114, + "x": -1260, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", + "name": "Fences", + "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", "width": 70, - "x": -2240, - "y": 2380, - "zOrder": 114, + "x": -980, + "y": 1890, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", + "name": "Fences", + "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", "width": 70, - "x": -2170, - "y": 2310, - "zOrder": 114, + "x": -980, + "y": 1470, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -15961,18 +15785,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", - "width": 70, - "x": -2100, - "y": 2310, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", + "width": 140, + "x": -1540, + "y": 1120, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -15983,16 +15807,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", + "name": "Fences", + "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", "width": 70, - "x": -2170, - "y": 2380, - "zOrder": 114, + "x": -1680, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -16003,16 +15827,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", + "name": "Fences", + "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", "width": 70, - "x": -2100, - "y": 2380, - "zOrder": 114, + "x": -1610, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16023,16 +15847,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", + "name": "Fences", + "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", "width": 70, - "x": -1120, - "y": 3080, - "zOrder": 114, + "x": -1470, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16043,16 +15867,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", + "name": "Fences", + "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", "width": 70, - "x": -1050, - "y": 3080, - "zOrder": 114, + "x": -1120, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16063,16 +15887,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", + "name": "Fences", + "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", "width": 70, - "x": -1120, - "y": 3150, - "zOrder": 114, + "x": -1190, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16083,16 +15907,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", + "name": "Fences", + "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", "width": 70, "x": -1050, - "y": 3150, - "zOrder": 114, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16103,16 +15927,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", + "name": "Fences", + "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", "width": 70, - "x": -980, - "y": 3080, - "zOrder": 114, + "x": -1540, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16123,16 +15947,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", + "name": "Fences", + "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", "width": 70, - "x": -910, - "y": 3080, - "zOrder": 114, + "x": -1400, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16143,16 +15967,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", + "name": "Fences", + "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", "width": 70, - "x": -980, - "y": 3150, - "zOrder": 114, + "x": -1330, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16163,16 +15987,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", + "name": "Fences", + "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", "width": 70, - "x": -910, - "y": 3150, - "zOrder": 114, + "x": -1260, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16183,16 +16007,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", + "name": "Fences", + "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", "width": 70, - "x": -840, - "y": 3080, - "zOrder": 114, + "x": -1610, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16203,16 +16027,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", + "name": "Fences", + "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", "width": 70, - "x": -770, - "y": 3080, - "zOrder": 114, + "x": -1610, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16223,16 +16047,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", + "name": "Fences", + "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", "width": 70, - "x": -840, - "y": 3150, - "zOrder": 114, + "x": -980, + "y": 1120, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -16243,56 +16067,56 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", + "name": "Fences", + "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", "width": 70, - "x": -770, - "y": 3150, - "zOrder": 114, + "x": -980, + "y": 1540, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", + "name": "Fences", + "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", "width": 70, - "x": -700, - "y": 3080, - "zOrder": 114, + "x": -980, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", + "name": "Fences", + "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", "width": 70, - "x": -630, - "y": 3080, - "zOrder": 114, + "x": -980, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -16301,18 +16125,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", - "width": 70, - "x": -700, - "y": 3150, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", + "width": 140, + "x": -1540, + "y": 1330, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16321,18 +16145,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", - "width": 70, - "x": -630, - "y": 3150, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", + "width": 140, + "x": -1540, + "y": 1610, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -16341,18 +16165,38 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", - "width": 70, - "x": -560, - "y": 3080, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", + "width": 140, + "x": -1540, + "y": 1820, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", + "width": 140, + "x": -1540, + "y": 2170, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 } ], "stringProperties": [], @@ -16364,9 +16208,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", + "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", "width": 70, - "x": -490, + "x": -2730, "y": 3080, "zOrder": 114, "numberProperties": [ @@ -16384,10 +16228,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", + "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", "width": 70, - "x": -560, - "y": 3150, + "x": -2660, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -16404,9 +16248,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", + "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", "width": 70, - "x": -490, + "x": -2730, "y": 3150, "zOrder": 114, "numberProperties": [ @@ -16424,10 +16268,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", + "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", "width": 70, - "x": -420, - "y": 3080, + "x": -2660, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -16444,9 +16288,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", + "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", "width": 70, - "x": -350, + "x": -2590, "y": 3080, "zOrder": 114, "numberProperties": [ @@ -16464,10 +16308,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", + "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", "width": 70, - "x": -420, - "y": 3150, + "x": -2520, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -16484,9 +16328,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", + "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", "width": 70, - "x": -350, + "x": -2590, "y": 3150, "zOrder": 114, "numberProperties": [ @@ -16504,10 +16348,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", + "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", "width": 70, - "x": -280, - "y": 3080, + "x": -2520, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -16524,9 +16368,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", + "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", "width": 70, - "x": -210, + "x": -2450, "y": 3080, "zOrder": 114, "numberProperties": [ @@ -16544,10 +16388,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", + "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", "width": 70, - "x": -280, - "y": 3150, + "x": -2380, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -16564,9 +16408,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", + "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", "width": 70, - "x": -210, + "x": -2450, "y": 3150, "zOrder": 114, "numberProperties": [ @@ -16584,10 +16428,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", + "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", "width": 70, - "x": -140, - "y": 3080, + "x": -2380, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -16604,9 +16448,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", + "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", "width": 70, - "x": -70, + "x": -2310, "y": 3080, "zOrder": 114, "numberProperties": [ @@ -16624,9 +16468,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", + "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", "width": 70, - "x": -140, + "x": -2310, "y": 3150, "zOrder": 114, "numberProperties": [ @@ -16644,10 +16488,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", + "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", "width": 70, - "x": -70, - "y": 3150, + "x": -2870, + "y": 3080, "zOrder": 114, "numberProperties": [ { @@ -16664,10 +16508,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", + "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", "width": 70, - "x": -2240, - "y": 3080, + "x": -2870, + "y": 3150, "zOrder": 114, "numberProperties": [ { @@ -16684,9 +16528,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", + "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", "width": 70, - "x": -2170, + "x": -2800, "y": 3080, "zOrder": 114, "numberProperties": [ @@ -16704,9 +16548,9 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", + "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", "width": 70, - "x": -2240, + "x": -2800, "y": 3150, "zOrder": 114, "numberProperties": [ @@ -16724,10 +16568,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", + "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", "width": 70, - "x": -2170, - "y": 3150, + "x": -2870, + "y": 3220, "zOrder": 114, "numberProperties": [ { @@ -16744,10 +16588,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", + "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", "width": 70, - "x": -2100, - "y": 3080, + "x": -2800, + "y": 3220, "zOrder": 114, "numberProperties": [ { @@ -16764,10 +16608,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", + "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", "width": 70, - "x": -2030, - "y": 3080, + "x": -2800, + "y": 3290, "zOrder": 114, "numberProperties": [ { @@ -16784,10 +16628,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", + "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", "width": 70, - "x": -2100, - "y": 3150, + "x": -2870, + "y": 3290, "zOrder": 114, "numberProperties": [ { @@ -16804,10 +16648,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", + "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", "width": 70, - "x": -2030, - "y": 3150, + "x": -2870, + "y": 3360, "zOrder": 114, "numberProperties": [ { @@ -16824,10 +16668,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", + "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", "width": 70, - "x": -1960, - "y": 3080, + "x": -2800, + "y": 3360, "zOrder": 114, "numberProperties": [ { @@ -16844,10 +16688,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", + "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", "width": 70, - "x": -1890, - "y": 3080, + "x": -2800, + "y": 3430, "zOrder": 114, "numberProperties": [ { @@ -16864,10 +16708,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", + "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", "width": 70, - "x": -1960, - "y": 3150, + "x": -2870, + "y": 3430, "zOrder": 114, "numberProperties": [ { @@ -16884,10 +16728,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", + "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", "width": 70, - "x": -1890, - "y": 3150, + "x": -2870, + "y": 3500, "zOrder": 114, "numberProperties": [ { @@ -16904,10 +16748,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", + "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", "width": 70, - "x": -1820, - "y": 3080, + "x": -2800, + "y": 3500, "zOrder": 114, "numberProperties": [ { @@ -16923,16 +16767,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", + "name": "Fences", + "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", "width": 70, - "x": -1750, - "y": 3080, - "zOrder": 114, + "x": -910, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -16943,16 +16787,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", + "name": "Fences", + "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", "width": 70, - "x": -1820, - "y": 3150, - "zOrder": 114, + "x": -910, + "y": -140, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -16963,16 +16807,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", + "name": "Fences", + "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", "width": 70, - "x": -1750, - "y": 3150, - "zOrder": 114, + "x": -910, + "y": -70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -16983,16 +16827,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "52547319-be3b-4d16-85d0-1719cbd0927e", + "name": "Fences", + "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", "width": 70, - "x": -1680, - "y": 3080, - "zOrder": 114, + "x": -910, + "y": 0, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -17003,16 +16847,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", + "name": "Fences", + "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", "width": 70, - "x": -1610, - "y": 3080, - "zOrder": 114, + "x": -910, + "y": 70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -17023,16 +16867,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", + "name": "Fences", + "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", "width": 70, - "x": -1680, - "y": 3150, - "zOrder": 114, + "x": -910, + "y": 140, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -17043,16 +16887,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", + "name": "Fences", + "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", "width": 70, - "x": -1610, - "y": 3150, - "zOrder": 114, + "x": -910, + "y": 210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -17063,16 +16907,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", + "name": "Fences", + "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", "width": 70, - "x": -1540, - "y": 3080, - "zOrder": 114, + "x": 630, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17083,16 +16927,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", + "name": "Fences", + "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", "width": 70, - "x": -1470, - "y": 3080, - "zOrder": 114, + "x": 490, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17103,16 +16947,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", + "name": "Fences", + "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", "width": 70, - "x": -1540, - "y": 3150, - "zOrder": 114, + "x": 560, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17123,16 +16967,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", + "name": "Fences", + "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", "width": 70, - "x": -1470, - "y": 3150, - "zOrder": 114, + "x": 350, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17143,16 +16987,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", + "name": "Fences", + "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", "width": 70, - "x": -1400, - "y": 3080, - "zOrder": 114, + "x": 420, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17163,16 +17007,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", + "name": "Fences", + "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", "width": 70, - "x": -1330, - "y": 3080, - "zOrder": 114, + "x": 210, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17183,16 +17027,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", + "name": "Fences", + "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", "width": 70, - "x": -1400, - "y": 3150, - "zOrder": 114, + "x": 280, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17203,16 +17047,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", + "name": "Fences", + "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", "width": 70, - "x": -1330, - "y": 3150, - "zOrder": 114, + "x": 140, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17223,16 +17067,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", + "name": "Fences", + "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", "width": 70, - "x": -1260, - "y": 3080, - "zOrder": 114, + "x": 700, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 4 } ], "stringProperties": [], @@ -17243,16 +17087,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", + "name": "Fences", + "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", "width": 70, - "x": -1190, - "y": 3080, - "zOrder": 114, + "x": -350, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17263,16 +17107,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", + "name": "Fences", + "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", "width": 70, - "x": -1260, - "y": 3150, - "zOrder": 114, + "x": -490, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17283,16 +17127,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", + "name": "Fences", + "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", "width": 70, - "x": -1190, - "y": 3150, - "zOrder": 114, + "x": -420, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -17304,10 +17148,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", + "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", "width": 70, - "x": -70, - "y": 1050, + "x": -630, + "y": -210, "zOrder": 115, "numberProperties": [ { @@ -17324,10 +17168,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", + "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", "width": 70, - "x": -70, - "y": 420, + "x": -560, + "y": -210, "zOrder": 115, "numberProperties": [ { @@ -17339,60 +17183,60 @@ "initialVariables": [] }, { - "angle": 11, + "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": -241, - "y": 484, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", + "width": 70, + "x": -770, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 11, + "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -830, - "y": 549, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", + "width": 70, + "x": -700, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -11, + "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -830, - "y": 969, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", + "width": 70, + "x": -840, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17401,58 +17245,58 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -772, - "y": 771, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", + "width": 70, + "x": 0, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", + "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", "width": 70, - "x": -980, - "y": 980, + "x": -140, + "y": -210, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", + "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", "width": 70, - "x": -980, - "y": 1260, + "x": -70, + "y": -210, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], @@ -17464,15 +17308,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", + "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", "width": 70, - "x": -980, - "y": 1190, + "x": -280, + "y": -210, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17484,15 +17328,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", + "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", "width": 70, - "x": -980, - "y": 1050, + "x": -210, + "y": -210, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17504,10 +17348,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", + "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", "width": 70, - "x": -1470, - "y": 980, + "x": 70, + "y": -210, "zOrder": 115, "numberProperties": [ { @@ -17519,60 +17363,61 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, + "depth": 1, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", + "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", "width": 70, - "x": -1120, - "y": 980, + "x": 700, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", + "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", "width": 70, - "x": -1190, - "y": 980, + "x": 700, + "y": -140, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", + "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", "width": 70, - "x": -1050, - "y": 980, + "x": 700, + "y": 210, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], @@ -17584,10 +17429,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", + "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", "width": 70, - "x": -1540, - "y": 980, + "x": 630, + "y": 280, "zOrder": 115, "numberProperties": [ { @@ -17604,10 +17449,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", + "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", "width": 70, - "x": -1400, - "y": 980, + "x": 490, + "y": 280, "zOrder": 115, "numberProperties": [ { @@ -17624,10 +17469,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", + "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", "width": 70, - "x": -1330, - "y": 980, + "x": 560, + "y": 280, "zOrder": 115, "numberProperties": [ { @@ -17644,10 +17489,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", + "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", "width": 70, - "x": -1260, - "y": 980, + "x": 350, + "y": 280, "zOrder": 115, "numberProperties": [ { @@ -17664,15 +17509,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", + "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", "width": 70, - "x": -1680, - "y": 980, + "x": 420, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -17684,15 +17529,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", + "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", "width": 70, - "x": -1680, - "y": 1680, + "x": 210, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -17704,15 +17549,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", + "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", "width": 70, - "x": -1680, - "y": 1680, + "x": 280, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17724,15 +17569,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", + "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", "width": 70, - "x": -1680, - "y": 1610, + "x": 140, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17744,15 +17589,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", + "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", "width": 70, - "x": -1680, - "y": 1540, + "x": 0, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17764,15 +17609,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", + "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", "width": 70, - "x": -1680, - "y": 1470, + "x": 70, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17784,15 +17629,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", + "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", "width": 70, - "x": -1680, - "y": 1400, + "x": -140, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17804,15 +17649,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", + "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", "width": 70, - "x": -1680, - "y": 1330, + "x": -70, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17824,15 +17669,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", + "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", "width": 70, - "x": -1680, - "y": 1260, + "x": -280, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17841,39 +17686,38 @@ { "angle": 0, "customSize": true, - "depth": 1, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", + "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", "width": 70, - "x": -1680, - "y": 1190, + "x": -210, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 270, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", + "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", "width": 70, - "x": -980, - "y": 2240, + "x": -420, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -17885,15 +17729,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", + "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", "width": 70, - "x": -980, - "y": 1820, + "x": -350, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17905,15 +17749,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", + "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", "width": 70, - "x": -980, - "y": 1750, + "x": -490, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17925,15 +17769,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", + "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", "width": 70, - "x": -980, - "y": 1610, + "x": -630, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17945,15 +17789,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", + "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", "width": 70, - "x": -980, - "y": 2170, + "x": -560, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -17965,35 +17809,35 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", + "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", "width": 70, - "x": -1680, - "y": 1120, + "x": -770, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", + "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", "width": 70, - "x": -1680, - "y": 1680, + "x": -700, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -18005,15 +17849,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", + "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", "width": 70, - "x": -1680, - "y": 1960, + "x": -840, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -18025,35 +17869,35 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", + "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", "width": 70, - "x": -1680, - "y": 1890, + "x": -910, + "y": 280, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", + "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", "width": 70, - "x": -1680, - "y": 1820, + "x": -2030, + "y": 840, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -18065,10 +17909,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", + "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", "width": 70, - "x": -1680, - "y": 1750, + "x": -1960, + "y": 1680, "zOrder": 115, "numberProperties": [ { @@ -18080,20 +17924,20 @@ "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", + "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", "width": 70, - "x": -980, - "y": 2100, + "x": -1960, + "y": 1540, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 3 } ], "stringProperties": [], @@ -18105,15 +17949,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", + "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", "width": 70, - "x": -1680, - "y": 2240, + "x": -1960, + "y": 1470, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -18125,10 +17969,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", + "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", "width": 70, - "x": -1680, - "y": 2170, + "x": -1960, + "y": 1400, "zOrder": 115, "numberProperties": [ { @@ -18145,10 +17989,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", + "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", "width": 70, - "x": -1680, - "y": 2100, + "x": -1960, + "y": 1330, "zOrder": 115, "numberProperties": [ { @@ -18165,10 +18009,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", + "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", "width": 70, - "x": -1680, - "y": 2030, + "x": -1960, + "y": 1260, "zOrder": 115, "numberProperties": [ { @@ -18185,15 +18029,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", + "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", "width": 70, - "x": -1330, - "y": 2240, + "x": -1960, + "y": 1190, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18205,15 +18049,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", + "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", "width": 70, - "x": -1400, - "y": 2240, + "x": -1960, + "y": 1120, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18225,15 +18069,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", + "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", "width": 70, - "x": -1470, - "y": 2240, + "x": -1960, + "y": 1960, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18245,15 +18089,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", + "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", "width": 70, - "x": -1540, - "y": 2240, + "x": -1960, + "y": 1890, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18265,15 +18109,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", + "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", "width": 70, - "x": -1050, - "y": 2240, + "x": -1960, + "y": 1820, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18285,15 +18129,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", + "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", "width": 70, - "x": -1120, - "y": 2240, + "x": -1960, + "y": 1750, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18305,15 +18149,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", + "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", "width": 70, - "x": -1190, - "y": 2240, + "x": -1960, + "y": 2170, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18325,75 +18169,75 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", + "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", "width": 70, - "x": -1260, - "y": 2240, + "x": -1960, + "y": 2100, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", + "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", "width": 70, - "x": -980, - "y": 1890, + "x": -1960, + "y": 2030, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", + "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", "width": 70, - "x": -980, - "y": 1470, + "x": -1960, + "y": 1050, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 270, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1540, - "y": 1120, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", + "width": 70, + "x": -1960, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], @@ -18405,10 +18249,10 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", + "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", "width": 70, - "x": -1680, - "y": 1050, + "x": -1960, + "y": 1610, "zOrder": 115, "numberProperties": [ { @@ -18419,17 +18263,54 @@ "stringProperties": [], "initialVariables": [] }, + { + "angle": 180, + "customSize": false, + "height": 85, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", + "width": 78, + "x": 595, + "y": 70, + "zOrder": 118, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, { "angle": 0, + "customSize": false, + "height": 30, + "layer": "", + "name": "sports_equipments_movable", + "persistentUuid": "6948a31e-81b4-4f3a-9a1c-8440d0a084dd", + "width": 30, + "x": -140, + "y": 70, + "zOrder": 100, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, "customSize": true, - "height": 70, + "depth": 1, + "height": 608, "layer": "", - "name": "Fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1610, - "y": 980, - "zOrder": 115, + "locked": true, + "name": "roofTops", + "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", + "width": 648, + "x": -1543, + "y": 1066, + "zOrder": 120, "numberProperties": [ { "name": "animation", @@ -18442,38 +18323,40 @@ { "angle": 0, "customSize": true, - "height": 70, + "depth": 0, + "height": 490, "layer": "", - "name": "Fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, + "name": "roofTops", + "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", + "width": 490, "x": -1470, - "y": 1680, - "zOrder": 115, + "y": 1755, + "zOrder": 120, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, - "height": 70, + "depth": 1, + "height": 626, "layer": "", - "name": "Fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1120, - "y": 1680, - "zOrder": 115, + "name": "roofTops", + "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", + "width": 626, + "x": 74, + "y": 424, + "zOrder": 200, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], @@ -18482,38 +18365,41 @@ { "angle": 0, "customSize": true, - "height": 70, + "depth": 1, + "height": 700, "layer": "", - "name": "Fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1190, - "y": 1680, - "zOrder": 115, + "name": "roofTops", + "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", + "width": 700, + "x": -2660, + "y": 1470, + "zOrder": 120, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, - "height": 70, + "depth": 1, + "height": 606, "layer": "", - "name": "Fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1050, - "y": 1680, - "zOrder": 115, + "locked": true, + "name": "roofTops", + "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", + "width": 606, + "x": -2624, + "y": 797, + "zOrder": 120, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], @@ -18525,15 +18411,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", + "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", "width": 70, - "x": -1540, - "y": 1680, + "x": -2030, + "y": 910, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18545,15 +18431,15 @@ "height": 70, "layer": "", "name": "Fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", + "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", "width": 70, - "x": -1400, - "y": 1680, + "x": -2030, + "y": 420, "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 4 } ], "stringProperties": [], @@ -18564,16 +18450,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", + "name": "sand", + "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", "width": 70, - "x": -1330, - "y": 1680, - "zOrder": 115, + "x": -2380, + "y": 2030, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18584,16 +18470,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", + "name": "sand", + "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", "width": 70, - "x": -1260, - "y": 1680, - "zOrder": 115, + "x": -2380, + "y": 2100, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18604,16 +18490,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", + "name": "sand", + "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", "width": 70, - "x": -1610, - "y": 1680, - "zOrder": 115, + "x": -2310, + "y": 2030, + "zOrder": 11, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18624,16 +18510,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", + "name": "sand", + "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", "width": 70, - "x": -1610, + "x": -2380, "y": 2240, - "zOrder": 115, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -18644,12 +18530,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", + "name": "sand", + "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", "width": 70, - "x": -980, - "y": 1120, - "zOrder": 115, + "x": -2310, + "y": 2240, + "zOrder": 26, "numberProperties": [ { "name": "animation", @@ -18664,12 +18550,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", + "name": "sand", + "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", "width": 70, - "x": -980, - "y": 1540, - "zOrder": 115, + "x": -2310, + "y": 2100, + "zOrder": 26, "numberProperties": [ { "name": "animation", @@ -18680,40 +18566,40 @@ "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", + "name": "sand", + "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, + "x": -2310, + "y": 2170, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", + "name": "sand", + "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, + "x": -2380, + "y": 2170, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -18722,14 +18608,14 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1540, - "y": 1330, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", + "width": 70, + "x": -2380, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -18742,14 +18628,14 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1540, - "y": 1610, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", + "width": 70, + "x": -2030, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -18762,14 +18648,14 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1540, - "y": 1820, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", + "width": 70, + "x": -2100, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -18782,14 +18668,14 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "foliage", - "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", - "width": 140, - "x": -1540, - "y": 2170, - "zOrder": 116, + "name": "Fences", + "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", + "width": 70, + "x": -2310, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -18804,16 +18690,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", + "name": "Fences", + "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", "width": 70, - "x": -2730, - "y": 3080, - "zOrder": 114, + "x": -2240, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -18824,36 +18710,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", + "name": "Fences", + "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", "width": 70, - "x": -2660, - "y": 3080, - "zOrder": 114, + "x": -2170, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", + "name": "Fences", + "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", "width": 70, - "x": -2730, - "y": 3150, - "zOrder": 114, + "x": -1960, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -18864,16 +18750,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", + "name": "Fences", + "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", "width": 70, "x": -2660, - "y": 3150, - "zOrder": 114, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -18884,16 +18770,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", + "name": "Fences", + "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", "width": 70, - "x": -2590, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 1750, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -18904,16 +18790,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", + "name": "Fences", + "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", "width": 70, - "x": -2520, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 1610, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -18924,16 +18810,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", + "name": "Fences", + "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", "width": 70, - "x": -2590, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 1540, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -18944,16 +18830,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", + "name": "Fences", + "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", "width": 70, - "x": -2520, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 1470, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -18964,16 +18850,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", + "name": "Fences", + "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", "width": 70, - "x": -2450, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 1960, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -18984,16 +18870,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", + "name": "Fences", + "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", "width": 70, - "x": -2380, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 1890, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19004,16 +18890,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", + "name": "Fences", + "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", "width": 70, - "x": -2450, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 1820, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19024,16 +18910,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", + "name": "Fences", + "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", "width": 70, - "x": -2380, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19044,16 +18930,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", + "name": "Fences", + "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", "width": 70, - "x": -2310, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19064,16 +18950,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", + "name": "Fences", + "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", "width": 70, - "x": -2310, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19084,56 +18970,56 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", + "name": "Fences", + "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", "width": 70, - "x": -3500, - "y": 2310, - "zOrder": 114, + "x": -2660, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", + "name": "Fences", + "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", "width": 70, - "x": -3430, - "y": 2310, - "zOrder": 114, + "x": -2660, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", + "name": "Fences", + "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", "width": 70, - "x": -3500, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -19144,16 +19030,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", + "name": "Fences", + "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", "width": 70, - "x": -3430, - "y": 2380, - "zOrder": 114, + "x": -2450, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19164,16 +19050,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", + "name": "Fences", + "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", "width": 70, - "x": -3360, - "y": 2310, - "zOrder": 114, + "x": -2520, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19184,16 +19070,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", + "name": "Fences", + "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", "width": 70, - "x": -3290, - "y": 2310, - "zOrder": 114, + "x": -2590, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19204,16 +19090,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", + "name": "Fences", + "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", "width": 70, - "x": -3360, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 1330, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19224,16 +19110,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", + "name": "Fences", + "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", "width": 70, - "x": -3290, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 1190, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19244,16 +19130,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", + "name": "Fences", + "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", "width": 70, - "x": -3220, - "y": 2310, - "zOrder": 114, + "x": -2660, + "y": 1120, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19264,16 +19150,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", + "name": "Fences", + "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", "width": 70, - "x": -2870, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19284,16 +19170,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", + "name": "Fences", + "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", "width": 70, - "x": -3220, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 1260, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19304,16 +19190,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", + "name": "Fences", + "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", "width": 70, - "x": -2870, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19324,16 +19210,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", + "name": "Fences", + "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", "width": 70, - "x": -2800, - "y": 3080, - "zOrder": 114, + "x": -2660, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19344,16 +19230,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", + "name": "Fences", + "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", "width": 70, - "x": -2800, - "y": 3150, - "zOrder": 114, + "x": -2660, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19364,16 +19250,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", + "name": "Fences", + "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", "width": 70, - "x": -3570, - "y": 2310, - "zOrder": 114, + "x": -2660, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19384,16 +19270,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", + "name": "Fences", + "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", "width": 70, - "x": -3640, - "y": 2310, - "zOrder": 114, + "x": -2660, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19404,16 +19290,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", + "name": "Fences", + "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", "width": 70, - "x": -3640, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 630, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19424,16 +19310,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", + "name": "Fences", + "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", "width": 70, - "x": -3570, - "y": 2380, - "zOrder": 114, + "x": -2660, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19444,16 +19330,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", + "name": "Fences", + "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", "width": 70, - "x": -3640, - "y": 2450, - "zOrder": 114, + "x": -2660, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -19464,16 +19350,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", + "name": "Fences", + "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", "width": 70, - "x": -3570, - "y": 2450, - "zOrder": 114, + "x": -2660, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -19484,16 +19370,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", + "name": "Fences", + "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", "width": 70, - "x": -3570, - "y": 2520, - "zOrder": 114, + "x": -2590, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19504,16 +19390,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", + "name": "Fences", + "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", "width": 70, - "x": -3640, - "y": 2520, - "zOrder": 114, + "x": -2520, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19524,16 +19410,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", + "name": "Fences", + "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", "width": 70, - "x": -3640, - "y": 2590, - "zOrder": 114, + "x": -2450, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19544,16 +19430,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", + "name": "Fences", + "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", "width": 70, - "x": -3570, - "y": 2590, - "zOrder": 114, + "x": -2380, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19564,16 +19450,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", + "name": "Fences", + "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", "width": 70, - "x": -3570, - "y": 2660, - "zOrder": 114, + "x": -2310, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19584,16 +19470,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", + "name": "Fences", + "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", "width": 70, - "x": -3640, - "y": 2660, - "zOrder": 114, + "x": -2240, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19604,16 +19490,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", + "name": "Fences", + "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", "width": 70, - "x": -3640, - "y": 2730, - "zOrder": 114, + "x": -2170, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19624,16 +19510,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", + "name": "Fences", + "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", "width": 70, - "x": -3570, - "y": 2730, - "zOrder": 114, + "x": -2100, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19644,16 +19530,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", + "name": "Fences", + "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", "width": 70, - "x": -3640, - "y": 2800, - "zOrder": 114, + "x": -2030, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19664,16 +19550,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", + "name": "Fences", + "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", "width": 70, - "x": -3570, - "y": 2800, - "zOrder": 114, + "x": -2590, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19684,16 +19570,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", + "name": "Fences", + "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", "width": 70, - "x": -3640, - "y": 2870, - "zOrder": 114, + "x": -2100, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19704,16 +19590,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", + "name": "Fences", + "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", "width": 70, - "x": -3570, - "y": 2870, - "zOrder": 114, + "x": -2520, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19724,16 +19610,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", + "name": "Fences", + "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", "width": 70, - "x": -3570, - "y": 2940, - "zOrder": 114, + "x": -2170, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -19744,16 +19630,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", + "name": "Fences", + "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", "width": 70, - "x": -3640, - "y": 2940, - "zOrder": 114, + "x": -2240, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -19764,76 +19650,76 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", + "name": "Fences", + "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", "width": 70, - "x": -3640, - "y": 3010, - "zOrder": 114, + "x": -2450, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", + "name": "Fences", + "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", "width": 70, - "x": -3570, - "y": 3010, - "zOrder": 114, + "x": -2100, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", + "name": "Fences", + "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", "width": 70, - "x": -3640, - "y": 3080, - "zOrder": 114, + "x": -2030, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", + "name": "Fences", + "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", "width": 70, - "x": -3570, - "y": 3080, - "zOrder": 114, + "x": -2100, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -19842,18 +19728,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 2240, "layer": "", - "name": "sand", - "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", + "name": "road", + "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", "width": 70, - "x": -3570, - "y": 3150, - "zOrder": 114, + "x": -2870, + "y": 280, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -19864,16 +19750,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", - "width": 70, - "x": -3640, - "y": 3150, - "zOrder": 114, + "name": "road", + "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", + "width": 1820, + "x": -2870, + "y": 210, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -19882,18 +19768,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 490, "layer": "", - "name": "sand", - "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", - "width": 70, - "x": -3640, - "y": 3220, - "zOrder": 114, + "name": "road", + "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", + "width": 210, + "x": -1820, + "y": 350, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -19905,10 +19791,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", + "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", "width": 70, - "x": -3570, - "y": 3220, + "x": -2730, + "y": 840, "zOrder": 114, "numberProperties": [ { @@ -19925,10 +19811,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", + "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", "width": 70, - "x": -3570, - "y": 3290, + "x": -2730, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -19945,10 +19831,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", + "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", "width": 70, - "x": -3640, - "y": 3290, + "x": -2730, + "y": 980, "zOrder": 114, "numberProperties": [ { @@ -19965,11 +19851,11 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", + "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", "width": 70, - "x": -3640, - "y": 3360, - "zOrder": 114, + "x": -2730, + "y": 1050, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -19985,10 +19871,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", + "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", "width": 70, - "x": -3570, - "y": 3360, + "x": -2730, + "y": 1120, "zOrder": 114, "numberProperties": [ { @@ -20005,10 +19891,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", + "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", "width": 70, - "x": -3640, - "y": 3430, + "x": -2730, + "y": 1190, "zOrder": 114, "numberProperties": [ { @@ -20025,10 +19911,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", + "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", "width": 70, - "x": -3570, - "y": 3430, + "x": -2730, + "y": 1260, "zOrder": 114, "numberProperties": [ { @@ -20045,10 +19931,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", + "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", "width": 70, - "x": -3640, - "y": 3500, + "x": -2730, + "y": 1330, "zOrder": 114, "numberProperties": [ { @@ -20065,10 +19951,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", + "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", "width": 70, - "x": -3570, - "y": 3500, + "x": -2730, + "y": 1400, "zOrder": 114, "numberProperties": [ { @@ -20085,10 +19971,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", + "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", "width": 70, - "x": -2870, - "y": 3220, + "x": -2730, + "y": 1470, "zOrder": 114, "numberProperties": [ { @@ -20105,10 +19991,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", + "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", "width": 70, - "x": -2800, - "y": 3220, + "x": -2730, + "y": 1540, "zOrder": 114, "numberProperties": [ { @@ -20125,10 +20011,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", + "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", "width": 70, - "x": -2800, - "y": 3290, + "x": -2730, + "y": 1610, "zOrder": 114, "numberProperties": [ { @@ -20145,10 +20031,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", + "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", "width": 70, - "x": -2870, - "y": 3290, + "x": -2730, + "y": 1680, "zOrder": 114, "numberProperties": [ { @@ -20165,10 +20051,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", + "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", "width": 70, - "x": -2870, - "y": 3360, + "x": -2730, + "y": 1750, "zOrder": 114, "numberProperties": [ { @@ -20185,10 +20071,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", + "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", "width": 70, - "x": -2800, - "y": 3360, + "x": -2730, + "y": 1820, "zOrder": 114, "numberProperties": [ { @@ -20205,10 +20091,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", + "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", "width": 70, - "x": -2800, - "y": 3430, + "x": -2730, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -20225,10 +20111,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", + "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", "width": 70, - "x": -2870, - "y": 3430, + "x": -2730, + "y": 1960, "zOrder": 114, "numberProperties": [ { @@ -20245,10 +20131,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", + "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", "width": 70, - "x": -2870, - "y": 3500, + "x": -2730, + "y": 2030, "zOrder": 114, "numberProperties": [ { @@ -20265,10 +20151,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", + "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", "width": 70, - "x": -2800, - "y": 3500, + "x": -2730, + "y": 2100, "zOrder": 114, "numberProperties": [ { @@ -20284,16 +20170,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", + "name": "sand", + "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", "width": 70, - "x": -910, - "y": -210, - "zOrder": 115, + "x": -2730, + "y": 2170, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -20304,16 +20190,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", + "name": "sand", + "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", "width": 70, - "x": -910, - "y": -140, - "zOrder": 115, + "x": -2730, + "y": 2240, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20324,16 +20210,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", + "name": "sand", + "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", "width": 70, - "x": -910, - "y": -70, - "zOrder": 115, + "x": -2730, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20344,16 +20230,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", + "name": "sand", + "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", "width": 70, - "x": -910, - "y": 0, - "zOrder": 115, + "x": -2730, + "y": 490, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20364,16 +20250,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", + "name": "sand", + "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", "width": 70, - "x": -910, - "y": 70, - "zOrder": 115, + "x": -2730, + "y": 560, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20384,16 +20270,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", + "name": "sand", + "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", "width": 70, - "x": -910, - "y": 140, - "zOrder": 115, + "x": -2730, + "y": 630, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20404,16 +20290,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", + "name": "sand", + "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", "width": 70, - "x": -910, - "y": 210, - "zOrder": 115, + "x": -2730, + "y": 700, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -20424,16 +20310,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", + "name": "sand", + "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", "width": 70, - "x": 630, - "y": -210, - "zOrder": 115, + "x": -2730, + "y": 770, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20444,16 +20330,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", + "name": "sand", + "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", "width": 70, - "x": 490, - "y": -210, - "zOrder": 115, + "x": -2730, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20464,16 +20350,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", + "name": "sand", + "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", "width": 70, - "x": 560, - "y": -210, - "zOrder": 115, + "x": -2170, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20484,16 +20370,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", + "name": "sand", + "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", "width": 70, - "x": 350, - "y": -210, - "zOrder": 115, + "x": -2100, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20504,16 +20390,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", + "name": "sand", + "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", "width": 70, - "x": 420, - "y": -210, - "zOrder": 115, + "x": -2030, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20524,16 +20410,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", + "name": "sand", + "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", "width": 70, - "x": 210, - "y": -210, - "zOrder": 115, + "x": -2520, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20544,16 +20430,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", + "name": "sand", + "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", "width": 70, - "x": 280, - "y": -210, - "zOrder": 115, + "x": -2450, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20564,16 +20450,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", + "name": "sand", + "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", "width": 70, - "x": 140, - "y": -210, - "zOrder": 115, + "x": -2380, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20584,16 +20470,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", + "name": "sand", + "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", "width": 70, - "x": 700, - "y": -210, - "zOrder": 115, + "x": -2310, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 2 } ], "stringProperties": [], @@ -20604,16 +20490,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", + "name": "sand", + "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", "width": 70, - "x": -350, - "y": -210, - "zOrder": 115, + "x": -2240, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20624,16 +20510,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", + "name": "sand", + "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", "width": 70, - "x": -490, - "y": -210, - "zOrder": 115, + "x": -2590, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20644,16 +20530,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", + "name": "sand", + "persistentUuid": "cb97c581-bfe6-4c6c-9c41-b5bd93717ce4", "width": 70, - "x": -420, - "y": -210, - "zOrder": 115, + "x": -2660, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20664,16 +20550,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", + "name": "sand", + "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", "width": 70, - "x": -630, - "y": -210, - "zOrder": 115, + "x": -1960, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20684,16 +20570,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", + "name": "sand", + "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", "width": 70, - "x": -560, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 210, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20704,16 +20590,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", + "name": "sand", + "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", "width": 70, - "x": -770, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20724,16 +20610,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", + "name": "sand", + "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", "width": 70, - "x": -700, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 140, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20744,16 +20630,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", + "name": "sand", + "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", "width": 70, - "x": -840, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 560, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20764,16 +20650,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", + "name": "sand", + "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", "width": 70, - "x": 0, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 490, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20784,16 +20670,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", + "name": "sand", + "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", "width": 70, - "x": -140, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20804,16 +20690,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", + "name": "sand", + "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", "width": 70, - "x": -70, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20824,16 +20710,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", + "name": "sand", + "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", "width": 70, - "x": -280, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 840, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20844,16 +20730,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", + "name": "sand", + "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", "width": 70, - "x": -210, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 770, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20864,77 +20750,76 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", + "name": "sand", + "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", "width": 70, - "x": 70, - "y": -210, - "zOrder": 115, + "x": -980, + "y": 700, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, - "depth": 1, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", + "name": "sand", + "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", "width": 70, - "x": 700, - "y": 280, - "zOrder": 115, + "x": -980, + "y": 630, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", + "name": "sand", + "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", "width": 70, - "x": 700, - "y": -140, - "zOrder": 115, + "x": -1190, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", + "name": "sand", + "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", "width": 70, - "x": 700, - "y": 210, - "zOrder": 115, + "x": -1120, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 2 } ], "stringProperties": [], @@ -20945,16 +20830,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", + "name": "sand", + "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", "width": 70, - "x": 630, - "y": 280, - "zOrder": 115, + "x": -1050, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20965,16 +20850,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", + "name": "sand", + "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", "width": 70, - "x": 490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { + "x": -1400, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -20985,16 +20870,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", + "name": "sand", + "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", "width": 70, - "x": 560, - "y": 280, - "zOrder": 115, + "x": -1330, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21005,16 +20890,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", + "name": "sand", + "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", "width": 70, - "x": 350, - "y": 280, - "zOrder": 115, + "x": -1260, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21025,16 +20910,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", + "name": "sand", + "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", "width": 70, - "x": 420, - "y": 280, - "zOrder": 115, + "x": -1680, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21045,16 +20930,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", + "name": "sand", + "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", "width": 70, - "x": 210, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21065,16 +20950,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", + "name": "sand", + "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", "width": 70, - "x": 280, - "y": 280, - "zOrder": 115, + "x": -1540, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21085,16 +20970,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", + "name": "sand", + "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", "width": 70, - "x": 140, - "y": 280, - "zOrder": 115, + "x": -1470, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -21102,41 +20987,76 @@ }, { "angle": 0, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": 0, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], + "name": "ground_elements", + "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", + "width": 0, + "x": -775, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "389124ee-f8c8-46ed-b50a-59a370e84049", + "width": 0, + "x": 460, + "y": -70, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "3b064f58-b1f8-4106-80d3-f6a9f9e2311e", + "width": 0, + "x": -280, + "y": -70, + "zOrder": 5, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, - "customSize": true, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "53e4866c-5c86-4519-b8f1-8ce042a92e84", + "width": 0, + "x": -140, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", + "name": "sports_equipments", + "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", "width": 70, - "x": 70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], + "x": -775, + "y": 70, + "zOrder": 118, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -21145,16 +21065,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", + "name": "sand", + "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", "width": 70, - "x": -140, - "y": 280, - "zOrder": 115, + "x": -2380, + "y": 840, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -21165,16 +21085,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", + "name": "sand", + "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", "width": 70, - "x": -70, - "y": 280, - "zOrder": 115, + "x": -2450, + "y": 840, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -21185,16 +21105,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", + "name": "sand", + "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", "width": 70, - "x": -280, - "y": 280, - "zOrder": 115, + "x": -2310, + "y": 840, + "zOrder": 26, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -21205,16 +21125,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", + "name": "road", + "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", "width": 70, - "x": -210, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 560, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 4 } ], "stringProperties": [], @@ -21223,18 +21143,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 490, "layer": "", - "name": "Fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -420, - "y": 280, - "zOrder": 115, + "name": "road", + "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", + "width": 210, + "x": -1540, + "y": 350, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 7 } ], "stringProperties": [], @@ -21243,18 +21163,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 490, "layer": "", - "name": "Fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -350, - "y": 280, - "zOrder": 115, + "name": "road", + "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", + "width": 210, + "x": -1260, + "y": 350, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 7 } ], "stringProperties": [], @@ -21265,36 +21185,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", + "name": "road", + "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", "width": 70, - "x": -490, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 490, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", + "name": "road", + "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", "width": 70, - "x": -630, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 770, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -21305,16 +21225,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", + "name": "road", + "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", "width": 70, - "x": -560, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 700, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 4 } ], "stringProperties": [], @@ -21325,16 +21245,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", + "name": "road", + "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", "width": 70, - "x": -770, - "y": 280, - "zOrder": 115, + "x": -1610, + "y": 630, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 4 } ], "stringProperties": [], @@ -21345,36 +21265,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", + "name": "road", + "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", "width": 70, - "x": -700, - "y": 280, - "zOrder": 115, + "x": -1330, + "y": 700, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", + "name": "road", + "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", "width": 70, - "x": -840, - "y": 280, - "zOrder": 115, + "x": -1330, + "y": 770, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -21385,36 +21305,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", + "name": "road", + "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", "width": 70, - "x": -910, - "y": 280, - "zOrder": 115, + "x": -1330, + "y": 630, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", + "name": "road", + "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", "width": 70, - "x": -2030, - "y": 840, - "zOrder": 115, + "x": -1330, + "y": 560, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 4 } ], "stringProperties": [], @@ -21425,12 +21345,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", + "name": "road", + "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", "width": 70, - "x": -1960, - "y": 1680, - "zOrder": 115, + "x": -1330, + "y": 490, + "zOrder": 4, "numberProperties": [ { "name": "animation", @@ -21443,18 +21363,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "Fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", + "name": "road", + "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", "width": 70, - "x": -1960, - "y": 1540, - "zOrder": 115, + "x": -1330, + "y": 350, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 7 } ], "stringProperties": [], @@ -21463,18 +21383,18 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "Fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", + "name": "road", + "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", "width": 70, - "x": -1960, - "y": 1470, - "zOrder": 115, + "x": -1610, + "y": 350, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 7 } ], "stringProperties": [], @@ -21485,16 +21405,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", + "name": "road", + "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, + "x": -1050, + "y": 350, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21505,16 +21425,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", + "name": "road", + "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", "width": 70, - "x": -1960, - "y": 1330, - "zOrder": 115, + "x": -1050, + "y": 420, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21525,16 +21445,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", + "name": "road", + "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", "width": 70, - "x": -1960, - "y": 1260, - "zOrder": 115, + "x": -1050, + "y": 490, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21545,16 +21465,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", + "name": "road", + "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", "width": 70, - "x": -1960, - "y": 1190, - "zOrder": 115, + "x": -1050, + "y": 560, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21565,16 +21485,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", + "name": "road", + "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", "width": 70, - "x": -1960, - "y": 1120, - "zOrder": 115, + "x": -1050, + "y": 630, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21585,16 +21505,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", + "name": "road", + "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", "width": 70, - "x": -1960, - "y": 1960, - "zOrder": 115, + "x": -1050, + "y": 700, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21605,36 +21525,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", + "name": "road", + "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", "width": 70, - "x": -1960, - "y": 1890, - "zOrder": 115, + "x": -1050, + "y": 770, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", + "name": "road", + "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", "width": 70, - "x": -1960, - "y": 1820, - "zOrder": 115, + "x": -1050, + "y": 840, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -21645,16 +21565,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", + "name": "road", + "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", "width": 70, - "x": -1960, - "y": 1750, - "zOrder": 115, + "x": -1050, + "y": 210, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21665,16 +21585,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", + "name": "road", + "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", "width": 70, - "x": -1960, - "y": 2170, - "zOrder": 115, + "x": -1050, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -21685,16 +21605,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", + "name": "road", + "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", "width": 70, - "x": -1960, - "y": 2100, - "zOrder": 115, + "x": -2870, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -21705,16 +21625,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", + "name": "road", + "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", "width": 70, - "x": -1960, - "y": 2030, - "zOrder": 115, + "x": -2800, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -21725,36 +21645,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", + "name": "road", + "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", "width": 70, - "x": -1960, - "y": 1050, - "zOrder": 115, + "x": -2730, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 270, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", + "name": "road", + "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", "width": 70, - "x": -1960, - "y": 2240, - "zOrder": 115, + "x": -2660, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -21765,36 +21685,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", + "name": "road", + "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", "width": 70, - "x": -1960, - "y": 1610, - "zOrder": 115, + "x": -2590, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, - "customSize": false, - "height": 85, + "angle": 0, + "customSize": true, + "height": 70, "layer": "", - "name": "sports_equipments", - "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", - "width": 78, - "x": 595, - "y": 70, - "zOrder": 118, + "name": "road", + "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", + "width": 70, + "x": -2520, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], @@ -21802,31 +21722,15 @@ }, { "angle": 0, - "customSize": false, - "height": 30, - "layer": "", - "name": "sports_equipments_movable", - "persistentUuid": "6948a31e-81b4-4f3a-9a1c-8440d0a084dd", - "width": 30, - "x": -140, - "y": 70, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, "customSize": true, - "depth": 1, - "height": 608, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 648, - "x": -1543, - "y": 1066, - "zOrder": 120, + "name": "road", + "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", + "width": 70, + "x": -2450, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -21839,40 +21743,38 @@ { "angle": 0, "customSize": true, - "depth": 0, - "height": 490, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 490, - "x": -1470, - "y": 1755, - "zOrder": 120, + "name": "road", + "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", + "width": 70, + "x": -2380, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, - "depth": 1, - "height": 626, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 626, - "x": 74, - "y": 424, - "zOrder": 200, + "name": "road", + "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", + "width": 70, + "x": -2310, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], @@ -21881,40 +21783,38 @@ { "angle": 0, "customSize": true, - "depth": 1, - "height": 700, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 700, - "x": -2660, - "y": 1470, - "zOrder": 120, + "name": "road", + "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", + "width": 70, + "x": -2240, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, - "depth": 1, - "height": 606, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 606, - "x": -2624, - "y": 797, - "zOrder": 120, + "name": "road", + "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", + "width": 70, + "x": -2170, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 1 } ], "stringProperties": [], @@ -21925,16 +21825,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", + "name": "road", + "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", "width": 70, - "x": -2030, - "y": 910, - "zOrder": 115, + "x": -2100, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -21945,16 +21845,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", + "name": "road", + "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", "width": 70, "x": -2030, - "y": 420, - "zOrder": 115, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], @@ -21965,16 +21865,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", + "name": "road", + "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, + "x": -1960, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -21985,16 +21885,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", + "name": "road", + "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, + "x": -1890, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22005,16 +21905,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", + "name": "road", + "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, + "x": -1820, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22025,16 +21925,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", + "name": "road", + "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, + "x": -1750, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22045,16 +21945,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", + "name": "road", + "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, + "x": -1680, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22065,16 +21965,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", + "name": "road", + "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, + "x": -1610, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22085,16 +21985,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", + "name": "road", + "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, + "x": -1540, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22105,16 +22005,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", + "name": "road", + "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, + "x": -1470, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -22125,12 +22025,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", + "name": "road", + "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", "width": 70, - "x": -2380, - "y": 1400, - "zOrder": 115, + "x": -1400, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -22145,12 +22045,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", + "name": "road", + "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", "width": 70, - "x": -2030, - "y": 1400, - "zOrder": 115, + "x": -1330, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -22165,12 +22065,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", + "name": "road", + "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", "width": 70, - "x": -2100, - "y": 1400, - "zOrder": 115, + "x": -1260, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -22185,12 +22085,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", + "name": "road", + "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", "width": 70, - "x": -2310, - "y": 1400, - "zOrder": 115, + "x": -1190, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -22205,12 +22105,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", + "name": "road", + "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", "width": 70, - "x": -2240, - "y": 1400, - "zOrder": 115, + "x": -1120, + "y": 140, + "zOrder": 3, "numberProperties": [ { "name": "animation", @@ -22220,41 +22120,51 @@ "stringProperties": [], "initialVariables": [] }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51e87c25-6920-44c1-8f85-9a56863bf4d9", + "width": 70, + "x": -1050, + "y": 140, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, { "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", + "name": "road", + "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", "width": 70, - "x": -2170, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], + "x": -2940, + "y": 140, + "zOrder": 3, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", + "name": "road", + "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, + "x": -2940, + "y": 210, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 6 } ], "stringProperties": [], @@ -22265,12 +22175,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", + "name": "road", + "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", "width": 70, - "x": -2660, - "y": 2240, - "zOrder": 115, + "x": -2940, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", @@ -22285,16 +22195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", + "name": "road", + "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", "width": 70, - "x": -2660, - "y": 1750, - "zOrder": 115, + "x": -2940, + "y": 350, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22305,16 +22215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", + "name": "road", + "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", "width": 70, - "x": -2660, - "y": 1610, - "zOrder": 115, + "x": -2940, + "y": 420, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22325,16 +22235,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", + "name": "road", + "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", "width": 70, - "x": -2660, - "y": 1540, - "zOrder": 115, + "x": -2940, + "y": 490, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22345,16 +22255,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", + "name": "road", + "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", "width": 70, - "x": -2660, - "y": 1470, - "zOrder": 115, + "x": -2940, + "y": 560, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22365,16 +22275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", + "name": "road", + "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", "width": 70, - "x": -2660, - "y": 1960, - "zOrder": 115, + "x": -2940, + "y": 630, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22385,16 +22295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", + "name": "road", + "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", "width": 70, - "x": -2660, - "y": 1890, - "zOrder": 115, + "x": -2940, + "y": 700, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22405,16 +22315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", + "name": "road", + "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", "width": 70, - "x": -2660, - "y": 1820, - "zOrder": 115, + "x": -2940, + "y": 840, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22425,16 +22335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", + "name": "road", + "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", "width": 70, - "x": -2660, - "y": 2170, - "zOrder": 115, + "x": -2940, + "y": 770, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22445,16 +22355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", + "name": "road", + "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", "width": 70, - "x": -2660, - "y": 2100, - "zOrder": 115, + "x": -2940, + "y": 910, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22465,16 +22375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", + "name": "road", + "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", "width": 70, - "x": -2660, - "y": 2030, - "zOrder": 115, + "x": -2940, + "y": 980, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22485,32 +22395,32 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", + "name": "road", + "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", "width": 70, - "x": -2660, - "y": 1680, - "zOrder": 115, + "x": -2940, + "y": 1050, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", + "name": "road", + "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, + "x": -2940, + "y": 1120, + "zOrder": 5, "numberProperties": [ { "name": "animation", @@ -22521,20 +22431,20 @@ "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", + "name": "road", + "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, + "x": -2940, + "y": 1190, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 6 } ], "stringProperties": [], @@ -22545,16 +22455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", + "name": "road", + "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", "width": 70, - "x": -2450, - "y": 1400, - "zOrder": 115, + "x": -2940, + "y": 1260, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], @@ -22565,16 +22475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", + "name": "road", + "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", "width": 70, - "x": -2520, - "y": 1400, - "zOrder": 115, + "x": -2940, + "y": 1330, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], @@ -22585,16 +22495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", + "name": "road", + "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", "width": 70, - "x": -2590, + "x": -2940, "y": 1400, - "zOrder": 115, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], @@ -22605,16 +22515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", + "name": "road", + "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", "width": 70, - "x": -2660, - "y": 1330, - "zOrder": 115, + "x": -2940, + "y": 1470, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22625,16 +22535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", + "name": "road", + "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", "width": 70, - "x": -2660, - "y": 1190, - "zOrder": 115, + "x": -2940, + "y": 1540, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22645,16 +22555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", + "name": "road", + "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", "width": 70, - "x": -2660, - "y": 1120, - "zOrder": 115, + "x": -2940, + "y": 1680, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22665,16 +22575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", + "name": "road", + "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", "width": 70, - "x": -2660, - "y": 1050, - "zOrder": 115, + "x": -2940, + "y": 1610, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22685,16 +22595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", + "name": "road", + "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", "width": 70, - "x": -2660, - "y": 1260, - "zOrder": 115, + "x": -2940, + "y": 1750, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22705,16 +22615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", + "name": "road", + "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", "width": 70, - "x": -2660, - "y": 980, - "zOrder": 115, + "x": -2940, + "y": 1820, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 6 } ], "stringProperties": [], @@ -22725,16 +22635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", + "name": "road", + "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", "width": 70, - "x": -2660, - "y": 840, - "zOrder": 115, + "x": -2800, + "y": 1610, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22745,16 +22655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", + "name": "road", + "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", "width": 70, - "x": -2660, - "y": 770, - "zOrder": 115, + "x": -2800, + "y": 1680, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22765,16 +22675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", + "name": "road", + "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", "width": 70, - "x": -2660, - "y": 700, - "zOrder": 115, + "x": -2800, + "y": 1750, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22785,16 +22695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", + "name": "road", + "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", "width": 70, - "x": -2660, - "y": 910, - "zOrder": 115, + "x": -2800, + "y": 1820, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22805,16 +22715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", + "name": "road", + "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", "width": 70, - "x": -2660, - "y": 630, - "zOrder": 115, + "x": -2800, + "y": 1890, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22825,16 +22735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", + "name": "road", + "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", "width": 70, - "x": -2660, - "y": 490, - "zOrder": 115, + "x": -2800, + "y": 1960, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22845,16 +22755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", + "name": "road", + "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", "width": 70, - "x": -2660, - "y": 560, - "zOrder": 115, + "x": -2800, + "y": 2030, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 5 } ], "stringProperties": [], @@ -22865,12 +22775,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", + "name": "road", + "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", "width": 70, - "x": -2660, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 2100, + "zOrder": 7, "numberProperties": [ { "name": "animation", @@ -22885,16 +22795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", + "name": "road", + "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", "width": 70, - "x": -2590, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 2240, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -22905,16 +22815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", + "name": "road", + "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", "width": 70, - "x": -2520, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 2170, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -22925,16 +22835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", + "name": "road", + "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", "width": 70, - "x": -2450, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 2310, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -22945,16 +22855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", + "name": "road", + "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", "width": 70, - "x": -2380, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 2380, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -22965,16 +22875,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", + "name": "road", + "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", "width": 70, - "x": -2310, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 770, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -22985,16 +22895,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", + "name": "road", + "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", "width": 70, - "x": -2240, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 840, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23005,16 +22915,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", + "name": "road", + "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", "width": 70, - "x": -2170, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 910, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23025,16 +22935,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", + "name": "road", + "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", "width": 70, - "x": -2100, - "y": 420, - "zOrder": 115, + "x": -2800, + "y": 980, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23045,16 +22955,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", + "name": "road", + "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", "width": 70, - "x": -2030, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1050, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23065,16 +22975,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", + "name": "road", + "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", "width": 70, - "x": -2590, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1120, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23085,16 +22995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", + "name": "road", + "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", "width": 70, - "x": -2100, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1190, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23105,16 +23015,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", + "name": "road", + "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", "width": 70, - "x": -2520, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1260, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23125,16 +23035,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", + "name": "road", + "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", "width": 70, - "x": -2170, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1400, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -23145,16 +23055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", + "name": "road", + "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", "width": 70, - "x": -2240, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1330, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 5 } ], "stringProperties": [], @@ -23165,72 +23075,72 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", + "name": "road", + "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", "width": 70, - "x": -2450, - "y": 2240, - "zOrder": 115, + "x": -2800, + "y": 1470, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", + "name": "road", + "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", "width": 70, - "x": -2100, - "y": 770, - "zOrder": 115, + "x": -2800, + "y": 1540, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", + "name": "road", + "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", "width": 70, - "x": -2030, + "x": -2800, "y": 490, - "zOrder": 115, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", + "name": "road", + "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", "width": 70, - "x": -2100, - "y": 840, - "zOrder": 115, + "x": -2800, + "y": 560, + "zOrder": 5, "numberProperties": [ { "name": "animation", @@ -23243,18 +23153,18 @@ { "angle": 0, "customSize": true, - "height": 2240, + "height": 70, "layer": "", "name": "road", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", + "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, + "x": -2800, + "y": 630, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 5 } ], "stringProperties": [], @@ -23266,15 +23176,15 @@ "height": 70, "layer": "", "name": "road", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, + "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", + "width": 70, + "x": -2800, + "y": 700, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 5 } ], "stringProperties": [], @@ -23283,18 +23193,18 @@ { "angle": 0, "customSize": true, - "height": 490, + "height": 70, "layer": "", "name": "road", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, + "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", + "width": 70, + "x": -2940, + "y": 1890, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 6 } ], "stringProperties": [], @@ -23305,16 +23215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", + "name": "road", + "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", "width": 70, - "x": -3010, - "y": 840, - "zOrder": 114, + "x": -2940, + "y": 1960, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23325,16 +23235,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", + "name": "road", + "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", "width": 70, - "x": -3010, - "y": 910, - "zOrder": 114, + "x": -2940, + "y": 2030, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23345,16 +23255,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", + "name": "road", + "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", "width": 70, - "x": -3010, - "y": 980, - "zOrder": 114, + "x": -2940, + "y": 2100, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23365,16 +23275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "298aee83-aa29-41c1-b284-36dd965c4c5a", + "name": "road", + "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", "width": 70, - "x": -3010, - "y": 1050, - "zOrder": 114, + "x": -2940, + "y": 2240, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23385,16 +23295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cc90e793-2e56-4022-969b-7465ce8c17b3", + "name": "road", + "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", "width": 70, - "x": -3010, - "y": 1120, - "zOrder": 114, + "x": -2940, + "y": 2170, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23405,16 +23315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", + "name": "road", + "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", "width": 70, - "x": -3010, - "y": 1190, - "zOrder": 114, + "x": -2940, + "y": 2310, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23425,16 +23335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", + "name": "road", + "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", "width": 70, - "x": -3010, - "y": 1260, - "zOrder": 114, + "x": -2940, + "y": 2380, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23445,16 +23355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", + "name": "road", + "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", "width": 70, - "x": -3010, - "y": 1330, - "zOrder": 114, + "x": -2730, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23465,16 +23375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", + "name": "road", + "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", "width": 70, - "x": -3010, - "y": 1400, - "zOrder": 114, + "x": -2100, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23485,16 +23395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", + "name": "road", + "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", "width": 70, - "x": -3010, - "y": 1470, - "zOrder": 114, + "x": -2170, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23505,16 +23415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a3880452-b974-4033-9d23-48e5b46c5439", + "name": "road", + "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", "width": 70, - "x": -3010, - "y": 1540, - "zOrder": 114, + "x": -2240, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23525,16 +23435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", + "name": "road", + "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", "width": 70, - "x": -3010, - "y": 1610, - "zOrder": 114, + "x": -2310, + "y": 280, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23545,16 +23455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3efc7c00-3405-4012-afaa-121ad6c60f20", + "name": "road", + "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", "width": 70, - "x": -3010, - "y": 1680, - "zOrder": 114, + "x": -2380, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23565,16 +23475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", + "name": "road", + "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", "width": 70, - "x": -3010, - "y": 1750, - "zOrder": 114, + "x": -2450, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23585,16 +23495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", + "name": "road", + "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", "width": 70, - "x": -3010, - "y": 1820, - "zOrder": 114, + "x": -2520, + "y": 280, + "zOrder": 7, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23605,16 +23515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", + "name": "road", + "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", "width": 70, - "x": -3010, - "y": 1890, - "zOrder": 114, + "x": -2660, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23625,16 +23535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", + "name": "road", + "persistentUuid": "846df340-365f-4859-8137-4845c9256455", "width": 70, - "x": -3010, - "y": 1960, - "zOrder": 114, + "x": -2590, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23645,16 +23555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ca10a7df-d8f6-4c40-b039-429f191bd075", + "name": "road", + "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", "width": 70, - "x": -3010, - "y": 2030, - "zOrder": 114, + "x": -2800, + "y": 350, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -23665,36 +23575,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", + "name": "road", + "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", "width": 70, - "x": -3010, - "y": 2100, - "zOrder": 114, + "x": -2800, + "y": 420, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4d250a55-e245-4459-8107-5d3986e0046d", + "name": "road", + "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", "width": 70, - "x": -3010, - "y": 2170, - "zOrder": 114, + "x": -2800, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 8 } ], "stringProperties": [], @@ -23705,16 +23615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", + "name": "road", + "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", "width": 70, - "x": -3010, - "y": 2240, - "zOrder": 114, + "x": -2030, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23725,36 +23635,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", + "name": "road", + "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, + "x": -1960, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", + "name": "road", + "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, + "x": -1890, + "y": 280, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 8 } ], "stringProperties": [], @@ -23765,16 +23675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", + "name": "road", + "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, + "x": -1890, + "y": 350, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23785,16 +23695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", + "name": "road", + "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, + "x": -1890, + "y": 490, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23805,16 +23715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", + "name": "road", + "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, + "x": -1890, + "y": 420, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23825,16 +23735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", + "name": "road", + "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, + "x": -1890, + "y": 630, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23845,16 +23755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", + "name": "road", + "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, + "x": -1890, + "y": 560, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23865,16 +23775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", + "name": "road", + "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, + "x": -1890, + "y": 770, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -23885,38 +23795,33 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", + "name": "road", + "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, + "x": -1890, + "y": 700, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", + "name": "road", + "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], + "x": -1890, + "y": 840, + "zOrder": 3, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -23925,16 +23830,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", + "name": "road", + "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, + "x": -1680, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23945,16 +23850,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", + "name": "road", + "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, + "x": -1820, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23965,16 +23870,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", + "name": "road", + "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, + "x": -1610, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -23985,16 +23890,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", + "name": "road", + "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, + "x": -1750, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24005,16 +23910,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, + "name": "road", + "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", + "width": 770, + "x": -1820, + "y": 280, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -24025,16 +23930,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", + "name": "road", + "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, + "x": -1470, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24045,16 +23950,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", + "name": "road", + "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, + "x": -1540, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24065,16 +23970,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", + "name": "road", + "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, + "x": -1400, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24085,16 +23990,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", + "name": "road", + "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, + "x": -1260, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24105,16 +24010,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", + "name": "road", + "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, + "x": -1330, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24125,16 +24030,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", + "name": "road", + "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, + "x": -1120, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24145,16 +24050,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", + "name": "road", + "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", "width": 70, - "x": -3010, - "y": 70, - "zOrder": 114, + "x": -1190, + "y": 840, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 10 } ], "stringProperties": [], @@ -24166,10 +24071,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", + "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", "width": 70, - "x": -3010, - "y": 140, + "x": -1960, + "y": 490, "zOrder": 114, "numberProperties": [ { @@ -24186,10 +24091,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", + "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", "width": 70, - "x": -3010, - "y": 210, + "x": -1960, + "y": 560, "zOrder": 114, "numberProperties": [ { @@ -24206,10 +24111,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", + "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", "width": 70, - "x": -3010, - "y": 280, + "x": -1960, + "y": 630, "zOrder": 114, "numberProperties": [ { @@ -24226,10 +24131,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", + "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", "width": 70, - "x": -3010, - "y": 350, + "x": -1960, + "y": 700, "zOrder": 114, "numberProperties": [ { @@ -24246,10 +24151,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", + "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", "width": 70, - "x": -3010, - "y": 420, + "x": -1960, + "y": 770, "zOrder": 114, "numberProperties": [ { @@ -24261,40 +24166,40 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", + "name": "Fences", + "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", "width": 70, - "x": -3010, - "y": 490, - "zOrder": 114, + "x": -2030, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", + "name": "Fences", + "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", "width": 70, - "x": -3010, - "y": 560, - "zOrder": 114, + "x": -1960, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -24306,10 +24211,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", + "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", "width": 70, - "x": -3010, - "y": 630, + "x": -1960, + "y": 840, "zOrder": 114, "numberProperties": [ { @@ -24326,10 +24231,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", + "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", "width": 70, - "x": -3010, - "y": 700, + "x": -1960, + "y": 420, "zOrder": 114, "numberProperties": [ { @@ -24346,10 +24251,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", + "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", "width": 70, - "x": -3010, - "y": 770, + "x": -1960, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -24366,10 +24271,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", + "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", "width": 70, - "x": -2730, - "y": 420, + "x": -1890, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -24386,10 +24291,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", + "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", "width": 70, - "x": -2730, - "y": 490, + "x": -1820, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -24406,10 +24311,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", + "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", "width": 70, - "x": -2730, - "y": 560, + "x": -1750, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -24426,10 +24331,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", + "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", "width": 70, - "x": -2730, - "y": 630, + "x": -980, + "y": 350, "zOrder": 114, "numberProperties": [ { @@ -24445,36 +24350,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", + "name": "road", + "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, + "x": -2940, + "y": 2450, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 8 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", + "name": "road", + "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, + "x": -2800, + "y": 2450, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 8 } ], "stringProperties": [], @@ -24485,16 +24390,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", + "name": "road", + "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, + "x": 1470, + "y": -210, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -24505,16 +24410,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", + "name": "road", + "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, + "x": 1470, + "y": -140, + "zOrder": 4, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -24525,16 +24430,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", + "name": "road", + "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, + "x": 910, + "y": -210, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -24545,16 +24450,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", + "name": "road", + "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, + "x": 910, + "y": -140, + "zOrder": 5, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], @@ -24565,16 +24470,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", + "name": "road", + "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, + "x": 1190, + "y": -210, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], @@ -24585,31 +24490,106 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", + "name": "road", + "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, + "x": 1190, + "y": -280, + "zOrder": 6, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 7 } ], "stringProperties": [], "initialVariables": [] }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "3b6c9f7b-aa77-4828-991d-b56ea26f63ee", + "width": 0, + "x": 1444, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "6d1aea08-0699-42eb-a952-082f07447057", + "width": 0, + "x": 910, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "f213373c-ee27-4b40-9713-d6ee5e0af152", + "width": 0, + "x": 1050, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9a3ce28b-b461-4cac-b2d8-ab32cc3cc65a", + "width": 0, + "x": 1178, + "y": -280, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "1df224b2-7836-4b29-a7e3-09d13e4635d5", + "width": 0, + "x": 1304, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", + "persistentUuid": "50d7b1de-96a1-4f71-b957-e20768dc708d", "width": 70, - "x": -2380, - "y": 350, + "x": 1540, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -24626,10 +24606,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", + "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", "width": 70, - "x": -2310, - "y": 350, + "x": 1610, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -24646,10 +24626,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", + "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", "width": 70, - "x": -2240, - "y": 350, + "x": 1540, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -24666,10 +24646,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", + "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", "width": 70, - "x": -2590, - "y": 350, + "x": 1610, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -24685,58 +24665,58 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cb97c581-bfe6-4c6c-9c41-b5bd93717ce4", - "width": 70, - "x": -2660, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], + "name": "grass_tiled", + "persistentUuid": "950c62c8-220a-4a5c-a0cb-027e19a80ebd", + "width": 630, + "x": 910, + "y": -420, + "zOrder": 123, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", - "width": 70, - "x": -2450, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], + "name": "grass_tiled", + "persistentUuid": "d996ba71-5299-4c8c-a851-c15165c7fb18", + "width": 420, + "x": -3640, + "y": 2170, + "zOrder": 2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 420, "layer": "", - "name": "sand", - "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", - "width": 70, - "x": -2380, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], + "name": "grass_tiled", + "persistentUuid": "ea61dde3-6225-4bfc-b020-af6f481c1676", + "width": 140, + "x": -3780, + "y": 2170, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "Debug", + "name": "reloading", + "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", + "width": 0, + "x": 0, + "y": 0, + "zOrder": 1243, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -24746,15 +24726,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", + "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", "width": 70, - "x": -2310, - "y": 70, + "x": -770, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24766,15 +24746,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", + "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", "width": 70, - "x": -2800, - "y": 70, + "x": -840, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24786,15 +24766,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", + "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", "width": 70, - "x": -2730, - "y": 70, + "x": -910, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24806,15 +24786,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", + "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", "width": 70, - "x": -2660, - "y": 70, + "x": -560, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24826,15 +24806,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", + "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", "width": 70, - "x": -2590, - "y": 70, + "x": -630, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24846,15 +24826,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", + "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", "width": 70, - "x": -2520, - "y": 70, + "x": -700, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24866,15 +24846,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", + "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", "width": 70, - "x": -2870, - "y": 70, + "x": 140, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24886,15 +24866,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", + "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", "width": 70, - "x": -2940, - "y": 70, + "x": -420, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24906,15 +24886,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", + "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", "width": 70, - "x": -1750, - "y": 70, + "x": -490, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24926,15 +24906,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", + "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", "width": 70, - "x": -1680, - "y": 70, + "x": 630, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24946,15 +24926,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", + "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", "width": 70, - "x": -1610, - "y": 70, + "x": -280, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24966,15 +24946,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", + "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", "width": 70, - "x": -2100, - "y": 70, + "x": -350, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -24986,15 +24966,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", + "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", "width": 70, - "x": -2030, - "y": 70, + "x": 490, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25006,15 +24986,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", + "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", "width": 70, - "x": -1960, - "y": 70, + "x": 560, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25026,15 +25006,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", + "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", "width": 70, - "x": -1890, - "y": 70, + "x": 700, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25046,15 +25026,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", + "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", "width": 70, - "x": -1820, - "y": 70, + "x": 210, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25066,15 +25046,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", + "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", "width": 70, - "x": -2170, - "y": 70, + "x": 350, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25086,15 +25066,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", + "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", "width": 70, - "x": -2240, - "y": 70, + "x": 420, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25106,15 +25086,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", + "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", "width": 70, - "x": -1050, - "y": 70, + "x": -70, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25126,15 +25106,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", + "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", "width": 70, - "x": -980, - "y": 70, + "x": -140, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25146,15 +25126,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", + "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", "width": 70, - "x": -1400, - "y": 70, + "x": -210, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25166,15 +25146,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", + "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", "width": 70, - "x": -1330, - "y": 70, + "x": 0, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25186,15 +25166,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", + "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", "width": 70, - "x": -1260, - "y": 70, + "x": 280, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -25206,70 +25186,100 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", + "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", "width": 70, - "x": -1190, - "y": 70, + "x": 70, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, - "height": 70, + "height": 630, "layer": "", - "name": "sand", - "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", - "width": 70, - "x": -1120, + "name": "roofTops", + "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", + "width": 700, + "x": 2030, "y": 70, - "zOrder": 114, + "zOrder": 1251, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, - "height": 70, + "height": 490, "layer": "", - "name": "sand", - "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", - "width": 70, - "x": -1470, - "y": 70, - "zOrder": 114, + "name": "roofTops", + "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", + "width": 630, + "x": 1960, + "y": 1050, + "zOrder": 1251, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 6 } ], "stringProperties": [], "initialVariables": [] }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", + "width": 210, + "x": 1750, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "288f8d6b-d873-441f-96ad-59d5c5716e5f", + "width": 210, + "x": 2100, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", + "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", "width": 70, - "x": -1540, - "y": 70, + "x": 2030, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25286,10 +25296,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", + "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", "width": 70, - "x": -1960, - "y": 350, + "x": 2100, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25306,10 +25316,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", + "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", "width": 70, - "x": -980, - "y": 210, + "x": 2170, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25326,10 +25336,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", + "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", "width": 70, - "x": -980, - "y": 280, + "x": 1680, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25346,10 +25356,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", + "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", "width": 70, - "x": -980, - "y": 140, + "x": 1750, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25366,10 +25376,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", + "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", "width": 70, - "x": -980, - "y": 560, + "x": 1820, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25386,10 +25396,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", + "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", "width": 70, - "x": -980, - "y": 490, + "x": 1890, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25406,10 +25416,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", + "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", "width": 70, - "x": -980, - "y": 420, + "x": 1960, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25426,10 +25436,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", + "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", "width": 70, - "x": -980, - "y": 910, + "x": 2730, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25446,10 +25456,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", + "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", "width": 70, - "x": -980, - "y": 840, + "x": 2800, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25466,10 +25476,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", + "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", "width": 70, - "x": -980, - "y": 770, + "x": 2870, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25486,10 +25496,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", + "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", "width": 70, - "x": -980, - "y": 700, + "x": 2380, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25506,10 +25516,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", + "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", "width": 70, - "x": -980, - "y": 630, + "x": 2450, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25526,10 +25536,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", + "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", "width": 70, - "x": -1190, - "y": 910, + "x": 2520, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25546,10 +25556,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", + "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", "width": 70, - "x": -1120, - "y": 910, + "x": 2590, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25566,10 +25576,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", + "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", "width": 70, - "x": -1050, - "y": 910, + "x": 2660, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25586,10 +25596,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", + "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", "width": 70, - "x": -1400, - "y": 910, + "x": 2310, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25606,10 +25616,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", + "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", "width": 70, - "x": -1330, - "y": 910, + "x": 2240, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25626,10 +25636,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", + "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", "width": 70, - "x": -1260, - "y": 910, + "x": 3010, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25646,10 +25656,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", + "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", "width": 70, - "x": -1680, - "y": 910, + "x": 2940, + "y": -280, "zOrder": 114, "numberProperties": [ { @@ -25666,10 +25676,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", + "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", "width": 70, - "x": -1610, - "y": 910, + "x": 2030, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -25686,10 +25696,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", + "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", "width": 70, - "x": -1540, - "y": 910, + "x": 2100, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -25706,10 +25716,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", + "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", "width": 70, - "x": -1470, - "y": 910, + "x": 2170, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -25720,96 +25730,21 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", - "width": 0, - "x": -775, - "y": -70, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "389124ee-f8c8-46ed-b50a-59a370e84049", - "width": 0, - "x": 460, - "y": -70, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "3b064f58-b1f8-4106-80d3-f6a9f9e2311e", - "width": 0, - "x": -280, - "y": -70, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "53e4866c-5c86-4519-b8f1-8ce042a92e84", - "width": 0, - "x": -140, - "y": -70, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 70, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", - "width": 70, - "x": -775, - "y": 70, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", + "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, + "x": 1680, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25821,15 +25756,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", + "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, + "x": 1750, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25841,15 +25776,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", + "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", "width": 70, - "x": -2380, - "y": 630, - "zOrder": 26, + "x": 1820, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25861,15 +25796,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", + "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", "width": 70, - "x": -2450, - "y": 630, - "zOrder": 26, + "x": 1890, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25881,15 +25816,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", + "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", "width": 70, - "x": -2170, - "y": 630, - "zOrder": 26, + "x": 1960, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25901,15 +25836,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", + "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", "width": 70, - "x": -2170, - "y": 560, - "zOrder": 26, + "x": 2730, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25921,15 +25856,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", + "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", "width": 70, - "x": -2240, - "y": 560, - "zOrder": 26, + "x": 2800, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25941,15 +25876,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", + "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", "width": 70, - "x": -2310, - "y": 560, - "zOrder": 26, + "x": 2870, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25961,15 +25896,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", + "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", "width": 70, - "x": -2380, - "y": 560, - "zOrder": 26, + "x": 2380, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -25981,15 +25916,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", + "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", "width": 70, - "x": -2450, - "y": 560, - "zOrder": 26, + "x": 2450, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26001,15 +25936,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", + "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", "width": 70, - "x": -2100, - "y": 700, - "zOrder": 26, + "x": 2520, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26021,15 +25956,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", + "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", "width": 70, - "x": -2240, - "y": 630, - "zOrder": 26, + "x": 2590, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26041,15 +25976,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", + "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", "width": 70, - "x": -2310, - "y": 630, - "zOrder": 26, + "x": 2660, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26061,15 +25996,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", + "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", "width": 70, - "x": -2170, - "y": 700, - "zOrder": 26, + "x": 2310, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26081,15 +26016,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", + "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", "width": 70, - "x": -2240, - "y": 700, - "zOrder": 26, + "x": 2240, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26101,15 +26036,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", + "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", "width": 70, - "x": -2310, - "y": 700, - "zOrder": 26, + "x": 3010, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26121,35 +26056,35 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", + "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", "width": 70, - "x": -2380, - "y": 700, - "zOrder": 26, + "x": 2940, + "y": -350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 90, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", - "width": 70, - "x": -2450, - "y": 700, - "zOrder": 26, + "name": "road_block", + "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", + "width": 0, + "x": 3010, + "y": -294, + "zOrder": 124, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26160,16 +26095,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", + "name": "Fences", + "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", "width": 70, - "x": -2450, - "y": 770, - "zOrder": 26, + "x": 2100, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26180,16 +26115,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", + "name": "Fences", + "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", "width": 70, - "x": -2380, - "y": 770, - "zOrder": 26, + "x": 2030, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26200,16 +26135,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", + "name": "Fences", + "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", "width": 70, - "x": -2310, - "y": 770, - "zOrder": 26, + "x": 1960, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26220,16 +26155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", + "name": "Fences", + "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, + "x": 1890, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26240,16 +26175,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", + "name": "Fences", + "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, + "x": 1820, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26260,16 +26195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, + "name": "Fences", + "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", + "width": 70, + "x": 1750, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26280,16 +26215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", + "name": "Fences", + "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, + "x": 3010, + "y": 0, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 3 } ], "stringProperties": [], @@ -26298,18 +26233,18 @@ { "angle": 0, "customSize": true, - "height": 490, + "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, + "name": "Fences", + "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 3 } ], "stringProperties": [], @@ -26318,18 +26253,18 @@ { "angle": 0, "customSize": true, - "height": 490, + "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, + "name": "Fences", + "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 3 } ], "stringProperties": [], @@ -26340,12 +26275,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", + "name": "Fences", + "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, + "x": 3010, + "y": -140, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26356,20 +26291,20 @@ "initialVariables": [] }, { - "angle": 180, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", + "name": "Fences", + "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, + "x": 3010, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -26380,16 +26315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", + "name": "Fences", + "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, + "x": 2940, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], @@ -26400,16 +26335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", + "name": "Fences", + "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, + "x": 2870, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], @@ -26420,36 +26355,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", + "name": "Fences", + "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, + "x": 2800, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", + "name": "Fences", + "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, + "x": 2730, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26460,16 +26395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", + "name": "Fences", + "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, + "x": 2660, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], @@ -26480,16 +26415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", + "name": "Fences", + "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, + "x": 2590, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 1 } ], "stringProperties": [], @@ -26500,16 +26435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", + "name": "Fences", + "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, + "x": 2520, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -26518,18 +26453,18 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "road", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", + "name": "Fences", + "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, + "x": 2450, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 1 } ], "stringProperties": [], @@ -26538,18 +26473,18 @@ { "angle": 0, "customSize": true, - "height": 140, + "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", + "name": "Fences", + "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, + "x": 2380, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 1 } ], "stringProperties": [], @@ -26560,16 +26495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", + "name": "Fences", + "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, + "x": 2310, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -26580,16 +26515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", + "name": "Fences", + "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, + "x": 2240, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -26600,16 +26535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", + "name": "Fences", + "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, + "x": 2170, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -26620,16 +26555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", + "name": "Fences", + "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, + "x": 3010, + "y": 280, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -26640,16 +26575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", + "name": "Fences", + "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, + "x": 3010, + "y": 210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -26660,16 +26595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", + "name": "Fences", + "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, + "x": 3010, + "y": 140, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -26680,36 +26615,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", + "name": "Fences", + "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, + "x": 3010, + "y": 70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", + "name": "Fences", + "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, + "x": 3010, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -26720,16 +26655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", + "name": "Fences", + "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, + "x": 3010, + "y": 490, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -26740,16 +26675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", + "name": "Fences", + "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, + "x": 3010, + "y": 420, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -26760,16 +26695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", + "name": "Fences", + "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, + "x": 3010, + "y": 350, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -26780,12 +26715,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", + "name": "Fences", + "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, + "x": 2940, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26796,20 +26731,20 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -180, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", + "name": "Fences", + "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, + "x": 3010, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 5 } ], "stringProperties": [], @@ -26820,16 +26755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", + "name": "Fences", + "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, + "x": 3010, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -26840,16 +26775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", + "name": "Fences", + "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, + "x": 3010, + "y": 630, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -26860,12 +26795,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", + "name": "Fences", + "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, + "x": 2450, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26880,12 +26815,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", + "name": "Fences", + "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, + "x": 2590, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26900,12 +26835,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", + "name": "Fences", + "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, + "x": 2520, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26920,12 +26855,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", + "name": "Fences", + "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, + "x": 2660, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26940,12 +26875,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", + "name": "Fences", + "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, + "x": 2730, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26960,12 +26895,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", + "name": "Fences", + "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, + "x": 2800, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -26980,12 +26915,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", + "name": "Fences", + "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, + "x": 2870, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27000,12 +26935,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", + "name": "Fences", + "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, + "x": 2100, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27020,12 +26955,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", + "name": "Fences", + "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, + "x": 2170, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27040,12 +26975,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", + "name": "Fences", + "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, + "x": 2240, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27060,12 +26995,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", + "name": "Fences", + "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, + "x": 2310, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27080,12 +27015,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", + "name": "Fences", + "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, + "x": 2380, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27100,12 +27035,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", + "name": "Fences", + "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, + "x": 2030, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27120,16 +27055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", + "name": "Fences", + "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, + "x": 1680, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 6 } ], "stringProperties": [], @@ -27140,12 +27075,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", + "name": "Fences", + "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, + "x": 1890, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27160,12 +27095,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", + "name": "Fences", + "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, + "x": 1960, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27180,12 +27115,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", + "name": "Fences", + "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, + "x": 1750, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27200,12 +27135,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", + "name": "Fences", + "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, + "x": 1820, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -27220,36 +27155,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", + "name": "Fences", + "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", "width": 70, - "x": -1260, + "x": 1680, "y": 140, - "zOrder": 3, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", + "name": "Fences", + "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, + "x": 1680, + "y": 210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 0 } ], "stringProperties": [], @@ -27260,48 +27195,58 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", + "name": "Fences", + "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, + "x": 1680, + "y": 700, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "51e87c25-6920-44c1-8f85-9a56863bf4d9", + "name": "Fences", + "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", "width": 70, - "x": -1050, - "y": 140, - "zOrder": 3, - "numberProperties": [], + "x": 1680, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", + "name": "Fences", + "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], + "x": 1680, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], "stringProperties": [], "initialVariables": [] }, @@ -27310,36 +27255,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", + "name": "Fences", + "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, + "x": 1680, + "y": -140, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", + "name": "Fences", + "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, + "x": 1680, + "y": -210, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], @@ -27350,16 +27295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", + "name": "Fences", + "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, + "x": 1680, + "y": 0, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -27370,16 +27315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", + "name": "Fences", + "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, + "x": 1680, + "y": -70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -27390,36 +27335,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", + "name": "Fences", + "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, + "x": 1680, + "y": 70, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -180, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", + "name": "Fences", + "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, + "x": 2870, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 5 } ], "stringProperties": [], @@ -27430,16 +27375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", + "name": "Fences", + "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, + "x": 2450, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27450,16 +27395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", + "name": "Fences", + "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, + "x": 2590, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27470,16 +27415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", + "name": "Fences", + "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, + "x": 2520, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27490,16 +27435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", + "name": "Fences", + "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, + "x": 2660, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27510,16 +27455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", + "name": "Fences", + "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, + "x": 2730, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27530,16 +27475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", + "name": "Fences", + "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, + "x": 2800, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27550,16 +27495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", + "name": "Fences", + "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, + "x": 2100, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27570,16 +27515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", + "name": "Fences", + "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, + "x": 2170, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27590,16 +27535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", + "name": "Fences", + "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, + "x": 2240, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27610,16 +27555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", + "name": "Fences", + "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, + "x": 2310, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27630,16 +27575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", + "name": "Fences", + "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, + "x": 2380, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27650,16 +27595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", + "name": "Fences", + "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, + "x": 2030, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27670,16 +27615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", + "name": "Fences", + "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, + "x": 1890, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27690,16 +27635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", + "name": "Fences", + "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, + "x": 1960, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27710,16 +27655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", + "name": "Fences", + "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", "width": 70, - "x": -2940, + "x": 1750, "y": 1680, - "zOrder": 5, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27730,16 +27675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", + "name": "Fences", + "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, + "x": 1820, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -27750,16 +27695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", + "name": "Fences", + "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, + "x": 2870, + "y": 1330, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -27770,16 +27715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", + "name": "Fences", + "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, + "x": 2870, + "y": 1260, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -27790,16 +27735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", + "name": "Fences", + "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, + "x": 2870, + "y": 1190, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27810,16 +27755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", + "name": "Fences", + "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, + "x": 2870, + "y": 1120, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27830,16 +27775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", + "name": "Fences", + "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, + "x": 2870, + "y": 1610, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27850,16 +27795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", + "name": "Fences", + "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, + "x": 2870, + "y": 1540, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27870,16 +27815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", + "name": "Fences", + "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, + "x": 2870, + "y": 1470, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27890,16 +27835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", + "name": "Fences", + "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, + "x": 2870, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27910,16 +27855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", + "name": "Fences", + "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, + "x": 2870, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27930,16 +27875,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", + "name": "Fences", + "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, + "x": 2870, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27950,16 +27895,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", + "name": "Fences", + "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, + "x": 2870, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -27970,16 +27915,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", + "name": "Fences", + "persistentUuid": "7fa497d3-5121-4e0b-84b6-4e12c1c44d66", "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, + "x": 2870, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 4 } ], "stringProperties": [], @@ -27990,36 +27935,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", + "name": "Fences", + "persistentUuid": "9a771218-d4ea-406d-b2dd-fd7351bc23ea", "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, + "x": 2870, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", + "name": "Fences", + "persistentUuid": "2dbca21b-5e6b-4d4d-8976-aaea8703eeb3", "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, + "x": 1680, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -28030,16 +27975,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", + "name": "Fences", + "persistentUuid": "703fdde6-2050-4fa4-856e-b85284f6996e", "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, + "x": 1680, + "y": 1610, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28050,16 +27995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", + "name": "Fences", + "persistentUuid": "1478f30b-7503-461e-9ea5-9decf73fcf4c", "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, + "x": 1680, + "y": 1540, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28070,16 +28015,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", + "name": "Fences", + "persistentUuid": "da452c08-2e23-44dd-8b98-e5aa754e47c7", "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, + "x": 1680, + "y": 1470, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28090,16 +28035,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", + "name": "Fences", + "persistentUuid": "ddd9a7ed-4293-43b7-8543-1de0cbbce567", "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, + "x": 1680, + "y": 910, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28110,16 +28055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", + "name": "Fences", + "persistentUuid": "cf9eb196-e355-47a8-b46f-746d74a1b86e", "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, + "x": 1680, + "y": 840, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28130,12 +28075,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", + "name": "Fences", + "persistentUuid": "18c5aa67-40c3-41ab-b783-21df9b0c7050", "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, + "x": 1680, + "y": 770, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -28150,56 +28095,56 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", + "name": "Fences", + "persistentUuid": "438d72bd-c8a0-46f4-bb07-856674079261", "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, + "x": 1680, + "y": 980, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", + "name": "Fences", + "persistentUuid": "27ef65da-eded-43f3-94b5-10d769e8a421", "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, + "x": 1680, + "y": 1330, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 0 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -90, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", + "name": "Fences", + "persistentUuid": "4ec95727-e908-4bd3-b387-7a088f2d76a4", "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, + "x": 1680, + "y": 1050, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 0 } ], "stringProperties": [], @@ -28210,16 +28155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", + "name": "sand", + "persistentUuid": "0cbf61d9-aea5-415a-8da6-f92a294e7cfe", "width": 70, - "x": -2800, + "x": 2870, "y": 1330, - "zOrder": 5, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28230,16 +28175,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", + "name": "sand", + "persistentUuid": "e7ee0dec-cf16-46e3-8bb2-5d591daf98ee", "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, + "x": 2800, + "y": 1330, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28250,16 +28195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", + "name": "sand", + "persistentUuid": "99b61099-fe13-4aad-91e5-2ed17e72d818", "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, + "x": 2800, + "y": 1400, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28270,16 +28215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", + "name": "sand", + "persistentUuid": "23216464-7ed5-4691-bd64-270041c71bc6", "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, + "x": 2870, + "y": 1400, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28290,16 +28235,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", + "name": "sand", + "persistentUuid": "1d2e2a94-4d96-4dd8-9326-3d19c3b8abf8", "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, + "x": 2870, + "y": 1610, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28310,16 +28255,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", + "name": "sand", + "persistentUuid": "b87579eb-3594-46c9-9041-f57d35f3d467", "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, + "x": 2800, + "y": 1470, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28330,16 +28275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", + "name": "sand", + "persistentUuid": "d1c96981-5b9c-45fd-85ef-d6e6f688fcdd", "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, + "x": 2870, + "y": 1470, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 1 } ], "stringProperties": [], @@ -28350,16 +28295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", + "name": "sand", + "persistentUuid": "f770ae38-6cf1-43c1-9dd3-e05ddbf08b99", "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, + "x": 2800, + "y": 1540, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28370,16 +28315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", + "name": "sand", + "persistentUuid": "ad53adb5-864b-4135-950a-e1d5d9d7cf85", "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, + "x": 2870, + "y": 1540, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28390,16 +28335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", + "name": "sand", + "persistentUuid": "8b82a114-f3c3-4740-a8f7-b48cfa5c5d99", "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, + "x": 2800, + "y": 1610, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28410,16 +28355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", + "name": "sand", + "persistentUuid": "6da719ce-c1d0-4b01-aa52-e3b5546a4d62", "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, + "x": 2870, + "y": 1050, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28430,16 +28375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", + "name": "sand", + "persistentUuid": "5e2279d2-6918-4ed7-8240-848e3c8c78f7", "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, + "x": 2800, + "y": 1050, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28450,16 +28395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", + "name": "sand", + "persistentUuid": "8f64611c-bcf8-4cfe-b9bc-4e47b67a2488", "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, + "x": 2800, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28470,16 +28415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", + "name": "sand", + "persistentUuid": "e88c98ac-7951-4aa3-9e31-f9b2b05407cf", "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, + "x": 2870, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28490,16 +28435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", + "name": "sand", + "persistentUuid": "486c386a-059a-4fe7-8314-d619895e9b80", "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, + "x": 2800, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 1 } ], "stringProperties": [], @@ -28510,16 +28455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", + "name": "sand", + "persistentUuid": "ed4d93ac-142c-4e1d-8ae7-2b5612d8e95f", "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, + "x": 2870, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28530,16 +28475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", + "name": "sand", + "persistentUuid": "c3f7a230-60cf-4c83-97b1-79d91c9d485c", "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, + "x": 2800, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28550,16 +28495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", + "name": "sand", + "persistentUuid": "fd4e7a23-eb7e-4593-a9c2-b0834d17822f", "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, + "x": 2870, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28570,16 +28515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", + "name": "sand", + "persistentUuid": "8e3e0e68-07ed-45a2-97a0-bdd25501621e", "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, + "x": 2800, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28590,16 +28535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", + "name": "sand", + "persistentUuid": "752f28bb-6b1a-4686-abba-2e883c0bebb0", "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, + "x": 2870, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28610,16 +28555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", + "name": "sand", + "persistentUuid": "481c8e7f-3737-4447-a44b-0e923d0a4c08", "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, + "x": 2800, + "y": 980, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28630,16 +28575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", + "name": "sand", + "persistentUuid": "a4f45a42-eea2-4805-b077-1043b118d1f4", "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, + "x": 2870, + "y": 980, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 1 } ], "stringProperties": [], @@ -28650,16 +28595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", + "name": "sand", + "persistentUuid": "910e5a86-7a57-46ff-a5ce-bdd42a094b3a", "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, + "x": 1680, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -28670,16 +28615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", + "name": "sand", + "persistentUuid": "3c898e9b-2202-4950-a5b6-cdb31db630c8", "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, + "x": 1750, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -28690,16 +28635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", + "name": "sand", + "persistentUuid": "5d88c9e5-94b3-4239-8489-8ef27a11dc50", "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, + "x": 1750, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -28710,16 +28655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", + "name": "sand", + "persistentUuid": "15598824-aa7b-407c-bb2c-cee76aaa7782", "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, + "x": 1680, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -28730,36 +28675,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", + "name": "sand", + "persistentUuid": "65b69922-ed59-4e10-ae2c-10bfceb0eaf1", "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, + "x": 1890, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", + "name": "sand", + "persistentUuid": "f0ff9cf6-97fa-41f2-bb18-18861c2b9dfb", "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, + "x": 2030, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 8 + "value": 3 } ], "stringProperties": [], @@ -28770,16 +28715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", + "name": "sand", + "persistentUuid": "db4bd46e-8dee-461f-bc19-0fa9a03bb795", "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, + "x": 1890, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -28790,36 +28735,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", + "name": "sand", + "persistentUuid": "daf91861-b6ba-4e1e-a176-748bb2dd6a52", "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, + "x": 2030, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", + "name": "sand", + "persistentUuid": "2fccca62-a84e-472b-b954-9bee063c2a6f", "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, + "x": 2030, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 8 + "value": 3 } ], "stringProperties": [], @@ -28830,16 +28775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", + "name": "sand", + "persistentUuid": "b2d28a9d-d10e-416d-95c6-4163c2b215dc", "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, + "x": 1890, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28850,16 +28795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", + "name": "sand", + "persistentUuid": "0e019c3c-e3e2-4c16-b9a3-a702a96d7854", "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, + "x": 1750, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28870,16 +28815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", + "name": "sand", + "persistentUuid": "4350553f-34e9-45b0-8b96-fcf672aa2158", "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, + "x": 1680, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28890,16 +28835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", + "name": "Fences", + "persistentUuid": "aac11c90-9d76-4193-9c07-10ab73620297", "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, + "x": 1680, + "y": 1400, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28910,16 +28855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", + "name": "sand", + "persistentUuid": "6078343a-d421-474a-ba9d-678bfe5a4ffb", "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, + "x": 1960, + "y": 1190, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28930,16 +28875,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", + "name": "sand", + "persistentUuid": "54cde620-fdbf-4813-8cc9-2751218fcd99", "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, + "x": 1960, + "y": 1260, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -28950,33 +28895,38 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", + "name": "sand", + "persistentUuid": "bf0f90f0-dc77-4bcc-8daa-7338d7c64c4c", "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, + "x": 1960, + "y": 1120, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", + "name": "sand", + "persistentUuid": "908e2f99-6c21-4866-b8df-9538ea5a54ae", "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], + "x": 1680, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], "stringProperties": [], "initialVariables": [] }, @@ -28985,16 +28935,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", + "name": "sand", + "persistentUuid": "80c4ec29-d6d0-4444-b171-61da6af6bf57", "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, + "x": 1750, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29005,16 +28955,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", + "name": "sand", + "persistentUuid": "0aedcf97-4e4d-468f-aa54-be942a0a50fc", "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, + "x": 1750, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29025,16 +28975,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", + "name": "sand", + "persistentUuid": "c01178c1-8011-40f4-be7e-595009c44079", "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, + "x": 1680, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29045,16 +28995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", + "name": "sand", + "persistentUuid": "78e44b3b-923a-4295-903c-8d8be5f0c4fe", "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, + "x": 1890, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29065,16 +29015,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, + "name": "sand", + "persistentUuid": "43f98d3c-40d2-4723-9f4c-12e9c9b80931", + "width": 70, + "x": 1820, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 3 } ], "stringProperties": [], @@ -29085,16 +29035,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", + "name": "sand", + "persistentUuid": "80eec100-7df4-4d9a-9149-313f0085fa22", "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, + "x": 1890, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29105,16 +29055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", + "name": "sand", + "persistentUuid": "17ed8a8c-db68-4a98-84e5-d592fcaa0fae", "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, + "x": 1820, + "y": 420, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29125,16 +29075,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", + "name": "sand", + "persistentUuid": "d932241a-c80f-4a4c-b6f9-0c7a763853f0", "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, + "x": 1820, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29145,16 +29095,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", + "name": "sand", + "persistentUuid": "87ed1e5a-bee9-4fc1-ba2b-3831947cdfed", "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, + "x": 1890, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29165,16 +29115,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", + "name": "sand", + "persistentUuid": "ccddc433-ad8e-47da-8334-0b9a59548864", "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, + "x": 1750, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29185,16 +29135,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", + "name": "sand", + "persistentUuid": "d2c37fbe-65f3-471a-951c-065ad365cb43", "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, + "x": 1680, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29205,16 +29155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", + "name": "sand", + "persistentUuid": "0a5f9c46-3001-4f1b-8dcd-97221fd0409d", "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, + "x": 1960, + "y": 350, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 10 + "value": 3 } ], "stringProperties": [], @@ -29226,15 +29176,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", + "persistentUuid": "537e6e1b-6aed-4759-923e-5b2b9ab669df", "width": 70, - "x": -1960, - "y": 490, + "x": 1960, + "y": 420, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29246,15 +29196,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", + "persistentUuid": "10766b48-f334-4f00-9633-67a6cd56361b", "width": 70, - "x": -1960, - "y": 560, + "x": 1960, + "y": 280, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29265,16 +29215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", + "name": "Fences", + "persistentUuid": "29692a65-4d8c-43cc-b44a-240bcb386887", "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, + "x": 1680, + "y": 560, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29286,15 +29236,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", + "persistentUuid": "bc7ed33c-3579-4f06-b47a-b1472d7e6aed", "width": 70, - "x": -1960, - "y": 700, + "x": 2030, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29306,71 +29256,71 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", + "persistentUuid": "d7437d18-8a09-4bd7-a9f8-772d863d9809", "width": 70, - "x": -1960, - "y": 770, + "x": 2030, + "y": 420, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", + "name": "sand", + "persistentUuid": "ef05e03a-c4bc-43bb-b9c4-10756d148a00", "width": 70, - "x": -2030, - "y": 980, - "zOrder": 115, + "x": 2030, + "y": 280, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": -23, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "Fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1960, - "y": 980, - "zOrder": 115, + "name": "foliage", + "persistentUuid": "35369171-dcf7-4add-919a-c77646405910", + "width": 140, + "x": 2916, + "y": 51, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "08268a92-32f8-43da-a699-95806c75b214", + "width": 140, + "x": 2926, + "y": 295, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -29381,36 +29331,36 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -26, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "89edcecc-0111-4d07-b7dc-cd4e5c4c1943", + "width": 140, + "x": 2914, + "y": 515, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -81, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "3721e960-fc06-4ba7-89ca-d4c77402b696", + "width": 140, + "x": 2929, + "y": 712, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -29421,36 +29371,36 @@ "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "081fc014-41e5-4cdf-908d-f642704a7c65", + "width": 140, + "x": 2926, + "y": -81, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -27, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "72b4108f-25e7-4de8-bed5-d77c85a9dd58", + "width": 140, + "x": 2774, + "y": -91, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -29461,36 +29411,36 @@ "initialVariables": [] }, { - "angle": 0, + "angle": 38, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "80b69df7-87de-4c9e-9378-6705e93a9dd0", + "width": 140, + "x": 2560, + "y": -97, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 270, + "customSize": false, + "height": 350, "layer": "", - "name": "sand", - "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", - "width": 70, - "x": -980, - "y": 350, - "zOrder": 114, + "name": "roofTops", + "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", + "width": 420, + "x": 815, + "y": 2080, + "zOrder": 120, "numberProperties": [ { "name": "animation", @@ -29502,19 +29452,19 @@ }, { "angle": 0, - "customSize": true, - "height": 70, + "customSize": false, + "height": 770, "layer": "", - "name": "sand", - "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", - "width": 70, - "x": -2100, - "y": 630, - "zOrder": 26, + "name": "roofTops", + "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", + "width": 770, + "x": -20, + "y": 1960, + "zOrder": 1251, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -29525,16 +29475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", + "name": "Fences", + "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", "width": 70, - "x": -2030, - "y": 560, - "zOrder": 26, + "x": 700, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -29545,16 +29495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", + "name": "Fences", + "persistentUuid": "f03cd06d-d1e8-40a7-be2e-f711eada215b", "width": 70, - "x": -2030, - "y": 630, - "zOrder": 26, + "x": 840, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -29565,16 +29515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", + "name": "Fences", + "persistentUuid": "4c4520ac-dcc7-46fc-9a06-d2f0f53d7b4c", "width": 70, - "x": -2030, - "y": 700, - "zOrder": 26, + "x": 770, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -29585,36 +29535,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", + "name": "Fences", + "persistentUuid": "db19dc14-1100-4578-a295-c698ec22f654", "width": 70, - "x": -2940, - "y": 2450, - "zOrder": 5, + "x": 910, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 8 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", + "name": "Fences", + "persistentUuid": "a744f5d3-ad1b-4834-bcf0-a373a2aa47d3", "width": 70, - "x": -2800, - "y": 2450, - "zOrder": 5, + "x": 980, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 8 + "value": 1 } ], "stringProperties": [], @@ -29625,16 +29575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", + "name": "Fences", + "persistentUuid": "df28d3f4-1b4a-4456-bdff-106006d1949d", "width": 70, - "x": -1120, - "y": -280, - "zOrder": 114, + "x": 1050, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29645,16 +29595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", + "name": "Fences", + "persistentUuid": "ffa6d047-cf0c-4235-a922-5e840460bf66", "width": 70, - "x": -560, - "y": -280, - "zOrder": 114, + "x": 1120, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29665,16 +29615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", + "name": "Fences", + "persistentUuid": "d7c9abdd-33b9-4c21-9db1-5a241036e7d4", "width": 70, - "x": -490, - "y": -280, - "zOrder": 114, + "x": 350, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29685,16 +29635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", + "name": "Fences", + "persistentUuid": "8a3acc38-b2fb-4af6-bcb8-4cff087b89a2", "width": 70, - "x": -420, - "y": -280, - "zOrder": 114, + "x": 420, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29705,16 +29655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", + "name": "Fences", + "persistentUuid": "535b6aea-b142-4dfc-ab34-7b70067f8ebc", "width": 70, - "x": -910, - "y": -280, - "zOrder": 114, + "x": 490, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29725,16 +29675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", + "name": "Fences", + "persistentUuid": "b2c87575-c14b-4f69-8043-c74e4988a5d6", "width": 70, - "x": -840, - "y": -280, - "zOrder": 114, + "x": 560, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29745,16 +29695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", + "name": "Fences", + "persistentUuid": "51ce2a94-fccf-434a-a35e-db676fa2cf9b", "width": 70, - "x": -770, - "y": -280, - "zOrder": 114, + "x": 630, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29765,16 +29715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", + "name": "Fences", + "persistentUuid": "1f6240f8-353e-45a2-b4c1-0327c4a1c0a0", "width": 70, - "x": -700, - "y": -280, - "zOrder": 114, + "x": 280, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29785,16 +29735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", + "name": "Fences", + "persistentUuid": "75e8953f-a21a-4e82-9a7e-3bf0703efbe0", "width": 70, - "x": -630, - "y": -280, - "zOrder": 114, + "x": 140, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29805,16 +29755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", + "name": "Fences", + "persistentUuid": "664c2efb-60b0-4c55-9f50-c2a0aa2e6f06", "width": 70, - "x": -980, - "y": -280, - "zOrder": 114, + "x": 210, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -29825,32 +29775,32 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", + "name": "Fences", + "persistentUuid": "c7173c46-3789-49f8-8fe8-f66b78aedb3c", "width": 70, - "x": -1050, - "y": -280, - "zOrder": 114, + "x": 70, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", + "name": "Fences", + "persistentUuid": "758827aa-6243-4d66-bd23-0f33d8e83444", "width": 70, - "x": 140, - "y": -280, - "zOrder": 114, + "x": 0, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", @@ -29865,16 +29815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", + "name": "Fences", + "persistentUuid": "4ee0c84f-f0c2-4532-a197-808f7e994298", "width": 70, - "x": 210, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2380, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29885,16 +29835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", + "name": "Fences", + "persistentUuid": "fee1dd8d-c255-4958-81eb-34ed9cc976d4", "width": 70, - "x": 280, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2310, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29905,16 +29855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", + "name": "Fences", + "persistentUuid": "dbcfe7c0-5ba0-4435-9139-df2b5ffeac6b", "width": 70, - "x": -210, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29925,16 +29875,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", + "name": "Fences", + "persistentUuid": "ea82cddb-ac13-4c1d-8285-58e07a9dd129", "width": 70, - "x": -140, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29945,16 +29895,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", + "name": "Fences", + "persistentUuid": "138a6def-b202-4c3f-8457-26f694ffe0b8", "width": 70, - "x": -70, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2660, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29965,16 +29915,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", + "name": "Fences", + "persistentUuid": "c9249796-de6c-444c-9633-c0c036e74644", "width": 70, - "x": 0, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2590, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -29985,16 +29935,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", + "name": "Fences", + "persistentUuid": "5689059c-8816-4f90-ad45-e4b87ecae9fe", "width": 70, - "x": 70, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2520, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30005,16 +29955,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", + "name": "Fences", + "persistentUuid": "ec8edcc8-0b1b-460c-b89e-e05ba1463374", "width": 70, - "x": -280, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2450, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30025,16 +29975,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", + "name": "Fences", + "persistentUuid": "26c03c8d-60af-4858-8c38-1cdd099ce62b", "width": 70, - "x": -350, - "y": -280, - "zOrder": 114, + "x": 1610, + "y": 2940, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30045,16 +29995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", + "name": "Fences", + "persistentUuid": "a66054ae-0246-4618-ac82-4ee578692086", "width": 70, - "x": 840, - "y": -280, - "zOrder": 114, + "x": 1610, + "y": 2870, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30065,36 +30015,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", + "name": "Fences", + "persistentUuid": "074bf4ff-bf6c-429d-9c31-387ee9f83395", "width": 70, - "x": 490, - "y": -280, - "zOrder": 114, + "x": 1680, + "y": 2730, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", + "name": "Fences", + "persistentUuid": "003cd580-aade-47c1-a2df-db399e302c27", "width": 70, - "x": 560, - "y": -280, - "zOrder": 114, + "x": 1610, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -30105,16 +30055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", + "name": "Fences", + "persistentUuid": "3bfa7108-442c-41a0-af7e-86dcaf05b69c", "width": 70, - "x": 630, - "y": -280, - "zOrder": 114, + "x": 1610, + "y": 3080, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30125,16 +30075,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", + "name": "Fences", + "persistentUuid": "db39049c-ff66-48e2-a98b-e5246c9bab2b", "width": 70, - "x": 700, - "y": -280, - "zOrder": 114, + "x": 1610, + "y": 3010, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30145,16 +30095,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", + "name": "Fences", + "persistentUuid": "2b457b59-a8c3-462a-9b3d-1ab0acffd720", "width": 70, - "x": 770, - "y": -280, - "zOrder": 114, + "x": 1190, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30165,16 +30115,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", + "name": "Fences", + "persistentUuid": "60287c70-e7c0-4b3b-9874-dbe61be12c06", "width": 70, - "x": 420, - "y": -280, - "zOrder": 114, + "x": 1260, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30185,16 +30135,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", + "name": "Fences", + "persistentUuid": "2e56e3f5-b9e0-4f4e-b179-cb51a85003b6", "width": 70, - "x": 350, - "y": -280, - "zOrder": 114, + "x": 1330, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30205,16 +30155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", + "name": "Fences", + "persistentUuid": "a14bbb22-3457-42e4-8151-6d478cfc36ba", "width": 70, - "x": -1120, - "y": -350, - "zOrder": 114, + "x": 1400, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30225,16 +30175,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", + "name": "Fences", + "persistentUuid": "6a28a485-b5d6-419d-81c2-e2ed69cfb0df", "width": 70, - "x": -560, - "y": -350, - "zOrder": 114, + "x": 1470, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30245,16 +30195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", + "name": "Fences", + "persistentUuid": "c17a0093-b97c-47aa-a638-9fbb0f4cab15", "width": 70, - "x": -490, - "y": -350, - "zOrder": 114, + "x": 1540, + "y": 3150, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30265,16 +30215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", + "name": "Fences", + "persistentUuid": "747cb77b-f5c4-4ff8-ad53-c842d40f3abf", "width": 70, - "x": -420, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2380, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30285,16 +30235,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", + "name": "Fences", + "persistentUuid": "e4ccf47e-8584-4ffc-9df3-3b9218f3a566", "width": 70, - "x": -910, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2310, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30305,16 +30255,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", + "name": "Fences", + "persistentUuid": "45bcee2b-7b28-4117-887a-038572e454e9", "width": 70, - "x": -840, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30325,16 +30275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", + "name": "Fences", + "persistentUuid": "6dc8fa62-6545-4293-8fb5-5c360836d5b2", "width": 70, - "x": -770, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30345,16 +30295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", + "name": "Fences", + "persistentUuid": "dd979be9-1dd6-461d-b490-60e608ff3aee", "width": 70, - "x": -700, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2660, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30365,16 +30315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", + "name": "Fences", + "persistentUuid": "ba972223-5331-48f4-87a7-4076ede13dc9", "width": 70, - "x": -630, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2590, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30385,16 +30335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", + "name": "Fences", + "persistentUuid": "35a53d64-17b0-4726-a956-5b565492b321", "width": 70, - "x": -980, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2520, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30405,16 +30355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", + "name": "Fences", + "persistentUuid": "5ae70e97-c405-46ea-aae5-7f504698f6cc", "width": 70, - "x": -1050, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2450, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30425,16 +30375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", + "name": "Fences", + "persistentUuid": "98e19e2b-7048-4adc-9633-91e95182b93d", "width": 70, - "x": 140, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2940, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30445,16 +30395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", + "name": "Fences", + "persistentUuid": "de084cd6-25bc-45f0-9fbc-b4bf80f72dda", "width": 70, - "x": 210, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2870, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30465,16 +30415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", + "name": "Fences", + "persistentUuid": "1bccf72a-3a8a-4f48-b4b8-5415cb79826c", "width": 70, - "x": 280, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30485,16 +30435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", + "name": "Fences", + "persistentUuid": "9898dcb0-d207-4f3a-bbbc-c2dd89f66586", "width": 70, - "x": -210, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2730, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30505,16 +30455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", - "width": 70, - "x": -140, - "y": -350, - "zOrder": 114, + "name": "Fences", + "persistentUuid": "829c963f-15e1-4ac1-add3-da88cc2cad2e", + "width": 70, + "x": 0, + "y": 3080, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30525,16 +30475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", + "name": "Fences", + "persistentUuid": "3f29cf5d-8a39-4a50-8ff9-3ce5069a0513", "width": 70, - "x": -70, - "y": -350, - "zOrder": 114, + "x": 0, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30545,16 +30495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", + "name": "Fences", + "persistentUuid": "269cb788-212d-4b6d-a564-9c1b13d3e877", "width": 70, - "x": 0, - "y": -350, - "zOrder": 114, + "x": 1610, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -30565,16 +30515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", + "name": "Fences", + "persistentUuid": "26d4094a-25a1-4c0d-aa06-dade9878b5a1", "width": 70, - "x": 70, - "y": -350, - "zOrder": 114, + "x": 630, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -30585,16 +30535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", + "name": "Fences", + "persistentUuid": "a988f5ea-f8e0-45f5-9544-4e14f5ccfd7b", "width": 70, - "x": -280, - "y": -350, - "zOrder": 114, + "x": 770, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30605,16 +30555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", + "name": "Fences", + "persistentUuid": "e08c5d0c-1826-488f-9b64-dd31703fdf3d", "width": 70, - "x": -350, - "y": -350, - "zOrder": 114, + "x": 700, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30625,16 +30575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", + "name": "Fences", + "persistentUuid": "88e6dfd1-a4b1-44b5-a0d3-642da1455ec9", "width": 70, "x": 840, - "y": -350, - "zOrder": 114, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30645,16 +30595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", + "name": "Fences", + "persistentUuid": "2e6f2410-f832-4631-85a0-07d6eeb4e464", "width": 70, - "x": 490, - "y": -350, - "zOrder": 114, + "x": 910, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30665,16 +30615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", + "name": "Fences", + "persistentUuid": "460977dc-3446-44db-ab0f-0d223866b051", "width": 70, - "x": 560, - "y": -350, - "zOrder": 114, + "x": 980, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30685,16 +30635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", + "name": "Fences", + "persistentUuid": "7608ee28-9760-490c-8d94-f94fad504325", "width": 70, - "x": 630, - "y": -350, - "zOrder": 114, + "x": 1050, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30705,16 +30655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", + "name": "Fences", + "persistentUuid": "da5cdf80-61b2-4ffd-94e3-61c86760f39c", "width": 70, - "x": 700, - "y": -350, - "zOrder": 114, + "x": 210, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30725,36 +30675,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", + "name": "Fences", + "persistentUuid": "011b9989-045d-4a30-9cfe-b01abd000d82", "width": 70, - "x": 770, - "y": -350, - "zOrder": 114, + "x": 280, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", + "name": "Fences", + "persistentUuid": "379a55a7-ea5c-4836-a9e9-0874d09f08ff", "width": 70, - "x": 420, - "y": -350, - "zOrder": 114, + "x": 350, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 0 } ], "stringProperties": [], @@ -30765,16 +30715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", + "name": "Fences", + "persistentUuid": "0dbf86dc-38c8-45a7-8330-ace138b4edb8", "width": 70, - "x": 350, - "y": -350, - "zOrder": 114, + "x": 140, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30785,16 +30735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", + "name": "Fences", + "persistentUuid": "3c714d1a-036c-4606-ae34-b828eb71fd63", "width": 70, - "x": -1120, - "y": -210, - "zOrder": 114, + "x": 70, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30805,16 +30755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", + "name": "Fences", + "persistentUuid": "56adb359-6c0d-4cac-a58f-e27cd140e27f", "width": 70, - "x": -1050, - "y": -210, - "zOrder": 114, + "x": 1120, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30825,16 +30775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", + "name": "Fences", + "persistentUuid": "5c2206fd-4293-4567-94f7-fe5cd158125e", "width": 70, - "x": -1050, - "y": -140, - "zOrder": 114, + "x": 1680, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -30845,16 +30795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", + "name": "Fences", + "persistentUuid": "659684c4-2f45-46b0-a21a-a06fc3a9760e", "width": 70, - "x": -1050, - "y": -70, - "zOrder": 114, + "x": 1680, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 4 } ], "stringProperties": [], @@ -30865,16 +30815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", + "name": "Fences", + "persistentUuid": "3c363a86-8994-4bd7-9b60-0e0bb1a310d6", "width": 70, - "x": -1050, - "y": 0, - "zOrder": 114, + "x": 1470, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30885,16 +30835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", + "name": "Fences", + "persistentUuid": "f6c107b1-1f6a-4db1-896f-15f0b574fefa", "width": 70, - "x": -980, - "y": -210, - "zOrder": 114, + "x": 1540, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30905,16 +30855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", + "name": "Fences", + "persistentUuid": "f9835191-ac46-4d0e-aff6-2b3eb6688515", "width": 70, - "x": -980, - "y": -140, - "zOrder": 114, + "x": 1610, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30925,16 +30875,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", + "name": "Fences", + "persistentUuid": "f4fc9e52-7596-4aaa-8ad0-4987f7d1b592", "width": 70, - "x": -980, - "y": -70, - "zOrder": 114, + "x": 1330, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30945,16 +30895,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", + "name": "Fences", + "persistentUuid": "a97989da-7671-4fa1-9216-a619c494f7ec", "width": 70, - "x": -980, - "y": 0, - "zOrder": 114, + "x": 1400, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30965,16 +30915,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", + "name": "Fences", + "persistentUuid": "a8333718-b610-4507-a25a-af6f50753590", "width": 70, - "x": -1120, - "y": -140, - "zOrder": 114, + "x": 1260, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -30985,16 +30935,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", + "name": "Fences", + "persistentUuid": "41d98456-46f2-47e1-822a-de6fc87fa557", "width": 70, - "x": -1120, - "y": -70, - "zOrder": 114, + "x": 1190, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -31006,15 +30956,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", + "persistentUuid": "205dc4d3-73ec-4b35-b062-d607744dea6b", "width": 70, - "x": -1120, - "y": 0, + "x": 490, + "y": 2030, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31026,15 +30976,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", + "persistentUuid": "fc345a7f-bbe1-4e1c-a410-ffa7c9e7c587", "width": 70, - "x": -2590, - "y": 0, + "x": 560, + "y": 2030, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31046,15 +30996,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", + "persistentUuid": "cb435e2a-9547-4353-90bb-6dc674fae5d6", "width": 70, - "x": -2520, - "y": 0, + "x": 420, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31066,15 +31016,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", + "persistentUuid": "4c737963-9284-4c4a-a5bd-ecbc42b6aa8e", "width": 70, - "x": -2450, - "y": 0, + "x": 420, + "y": 2030, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31086,15 +31036,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", + "persistentUuid": "0ac48281-b081-4d55-abd7-59a796ca929c", "width": 70, - "x": -2940, - "y": 0, + "x": 420, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31106,15 +31056,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", + "persistentUuid": "d2bab83f-0b21-4147-9f64-aabc02f2f60c", "width": 70, - "x": -2870, - "y": 0, + "x": 490, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31126,15 +31076,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", + "persistentUuid": "686a085e-73b5-4e46-ac2f-f25118bc27ae", "width": 70, - "x": -2800, - "y": 0, + "x": 560, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31146,15 +31096,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", + "persistentUuid": "92b36048-1921-433c-a106-c75de40dff81", "width": 70, - "x": -2730, - "y": 0, + "x": 490, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31166,15 +31116,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", + "persistentUuid": "56ef937d-e997-48ec-88a2-04444dd08508", "width": 70, - "x": -2660, - "y": 0, + "x": 560, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31186,15 +31136,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", + "persistentUuid": "7432bde4-6b7d-4c9b-9346-e18782fa953a", "width": 70, - "x": -3010, - "y": 0, + "x": 630, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31206,15 +31156,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", + "persistentUuid": "9aec6bad-e750-4e42-8d5e-76abf5ec3844", "width": 70, - "x": -3080, - "y": 0, + "x": 840, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31226,15 +31176,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1b1ba355-0033-479e-8410-4423a7ecd076", + "persistentUuid": "219265f3-dd0c-412c-94dc-e667cdf58341", "width": 70, - "x": -1890, - "y": 0, + "x": 770, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31246,15 +31196,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", + "persistentUuid": "61ae6366-39d3-48f8-baf1-77dc2151e5ac", "width": 70, - "x": -1820, - "y": 0, + "x": 700, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31266,15 +31216,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", + "persistentUuid": "87578644-b4fb-4108-a395-7fc48e5293fe", "width": 70, - "x": -1750, - "y": 0, + "x": 630, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31286,15 +31236,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", + "persistentUuid": "20403a3a-bfb7-4282-a534-4ba54a4142ea", "width": 70, - "x": -2240, - "y": 0, + "x": 700, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31306,15 +31256,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", + "persistentUuid": "a30cd11c-0cbe-4cec-b716-83e095303b98", "width": 70, - "x": -2170, - "y": 0, + "x": 770, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31326,15 +31276,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", + "persistentUuid": "c3231895-c246-4063-8d76-de2968df7132", "width": 70, - "x": -2100, - "y": 0, + "x": 980, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31346,15 +31296,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", + "persistentUuid": "662cab6c-3f75-4c95-a5e5-ff8351682c43", "width": 70, - "x": -2030, - "y": 0, + "x": 980, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31366,15 +31316,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", + "persistentUuid": "1f9a478d-dc4f-44cd-b402-5bd3bcfb75a5", "width": 70, - "x": -1960, - "y": 0, + "x": 840, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31386,15 +31336,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", + "persistentUuid": "abfda71c-02cf-4acf-8427-f0f42ed47574", "width": 70, - "x": -2310, - "y": 0, + "x": 980, + "y": 2240, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31406,15 +31356,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", + "persistentUuid": "a22d3727-b966-4b47-af99-92ffb3eab656", "width": 70, - "x": -2380, - "y": 0, + "x": 910, + "y": 2240, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31426,15 +31376,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", + "persistentUuid": "ea9c2ccd-116d-4dd4-a10e-50e3cf70c7b8", "width": 70, - "x": -1190, - "y": 0, + "x": 910, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31446,15 +31396,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", + "persistentUuid": "bcac54e4-f5f1-4fb3-8353-77f0b7778b75", "width": 70, - "x": -1540, - "y": 0, + "x": 910, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31466,15 +31416,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", + "persistentUuid": "192b3569-e9b9-43d5-998b-c37e2c81bd71", "width": 70, - "x": -1470, - "y": 0, + "x": 980, + "y": 2380, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31486,15 +31436,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", + "persistentUuid": "8d7019eb-7659-4e1c-90c7-55654867e06e", "width": 70, - "x": -1400, - "y": 0, + "x": 910, + "y": 2310, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31506,15 +31456,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", + "persistentUuid": "2c519c90-6114-4b71-bf2f-a57d09fa1234", "width": 70, - "x": -1330, - "y": 0, + "x": 980, + "y": 2310, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31526,15 +31476,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", + "persistentUuid": "6e673ff3-b8a7-4f50-8f2c-4ec3be3b006b", "width": 70, - "x": -1260, - "y": 0, + "x": 980, + "y": 2520, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31546,15 +31496,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", + "persistentUuid": "e614d0c7-27f2-4975-ba8a-ae6ca166d59b", "width": 70, - "x": -1610, - "y": 0, + "x": 910, + "y": 2380, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31566,15 +31516,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", + "persistentUuid": "65b9f9bf-f73a-407d-8cbc-e3a13dc53144", "width": 70, - "x": -1680, - "y": 0, + "x": 910, + "y": 2520, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31586,15 +31536,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", + "persistentUuid": "c55ca6a1-004d-41b1-9bb3-d315777ba5c8", "width": 70, - "x": -2590, - "y": -70, + "x": 910, + "y": 2450, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31606,15 +31556,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", + "persistentUuid": "915b7bc4-d865-4d44-b00b-491c4b2d2b2b", "width": 70, - "x": -2520, - "y": -70, + "x": 980, + "y": 2450, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31626,15 +31576,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", + "persistentUuid": "f808326e-021a-4cd5-a68f-713be215bb49", "width": 70, - "x": -2450, - "y": -70, + "x": 1050, + "y": 2380, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31646,15 +31596,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", + "persistentUuid": "90ff0c58-7ec7-4da3-a774-e007ef5efd5d", "width": 70, - "x": -2940, - "y": -70, + "x": 1050, + "y": 2310, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31666,15 +31616,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", + "persistentUuid": "fd9243de-317f-407a-afc2-796a1a192af0", "width": 70, - "x": -2870, - "y": -70, + "x": 980, + "y": 2660, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31686,15 +31636,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", + "persistentUuid": "9051282c-ce48-4fb4-924d-afb4945ac327", "width": 70, - "x": -2800, - "y": -70, + "x": 1050, + "y": 2800, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31706,15 +31656,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", + "persistentUuid": "b6f9e88f-caed-4be8-806a-8441460cec6d", "width": 70, - "x": -2730, - "y": -70, + "x": 1050, + "y": 2730, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31726,15 +31676,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", + "persistentUuid": "f6c990a2-0436-4d92-b105-0dfb6e660076", "width": 70, - "x": -2660, - "y": -70, + "x": 980, + "y": 2730, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31746,15 +31696,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", + "persistentUuid": "a5893099-8900-4299-a738-b7fce3298011", "width": 70, - "x": -3010, - "y": -70, + "x": 980, + "y": 2590, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31766,15 +31716,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", + "persistentUuid": "dcbbbc72-6b09-477d-ada4-3b130255c0f4", "width": 70, - "x": -3080, - "y": -70, + "x": 910, + "y": 2590, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31786,15 +31736,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "45636fe2-fce7-4718-b188-2f8eff773926", + "persistentUuid": "a7a73874-e9a8-4894-845b-15cb120a4b44", "width": 70, - "x": -1890, - "y": -70, + "x": 980, + "y": 2800, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31806,15 +31756,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", + "persistentUuid": "2af6665f-5dd6-4adc-99b8-d2d15ebdfef6", "width": 70, - "x": -1820, - "y": -70, + "x": 910, + "y": 2730, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31826,15 +31776,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", + "persistentUuid": "18013dbe-d7fd-4c7e-b2d0-281a873c9a59", "width": 70, - "x": -1750, - "y": -70, + "x": 910, + "y": 2660, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -31846,31 +31796,31 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", + "persistentUuid": "4845f030-1aa1-4ea0-afaf-f8c1deb102f7", "width": 70, - "x": -2240, - "y": -70, + "x": 910, + "y": 2800, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -81, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", - "width": 70, - "x": -2170, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "22b61d57-1050-4978-b611-5fccc197aeca", + "width": 140, + "x": 630, + "y": 3150, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -31881,36 +31831,36 @@ "initialVariables": [] }, { - "angle": 0, + "angle": 14, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", - "width": 70, - "x": -2100, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "77cb1f9e-6bef-46b0-8bdb-70aa4ca296a3", + "width": 140, + "x": 350, + "y": 3150, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", - "width": 70, - "x": -2030, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "5f863ce2-76d6-4612-8531-0e72e902ace3", + "width": 140, + "x": 126, + "y": 3141, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -31921,16 +31871,16 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -81, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", - "width": 70, - "x": -1960, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "5533b630-7b6b-488a-b46c-8468b856197e", + "width": 140, + "x": 1190, + "y": 3150, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -31941,36 +31891,36 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -26, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", - "width": 70, - "x": -2310, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "441ed61f-1265-4c65-aa86-8c5c89d6227b", + "width": 140, + "x": 910, + "y": 3150, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -26, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", - "width": 70, - "x": -2380, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "e3a27c7a-f704-47e5-ac7c-2cf75d4b55a8", + "width": 140, + "x": 1470, + "y": 3150, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -31981,56 +31931,56 @@ "initialVariables": [] }, { - "angle": 0, + "angle": -26, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", - "width": 70, - "x": -1190, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "46116a74-c82b-489a-8722-14e8fc84c6cc", + "width": 140, + "x": 1584, + "y": 2125, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -26, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", - "width": 70, - "x": -1540, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "659e0f50-c913-4b0e-b434-17a61be34adb", + "width": 140, + "x": 1304, + "y": 2125, + "zOrder": 116, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 11, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "sand", - "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", - "width": 70, - "x": -1470, - "y": -70, - "zOrder": 114, + "name": "foliage", + "persistentUuid": "45d62f23-766f-4d53-83e0-679075519a57", + "width": 140, + "x": 126, + "y": 2185, + "zOrder": 116, "numberProperties": [ { "name": "animation", @@ -32045,16 +31995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", + "name": "Fences", + "persistentUuid": "e7271123-185b-4768-8c90-5c0941efa8a6", "width": 70, - "x": -1400, - "y": -70, - "zOrder": 114, + "x": 2380, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32065,16 +32015,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", + "name": "Fences", + "persistentUuid": "c1a4d02e-52a4-432e-b3f9-73bdd865f5e9", "width": 70, - "x": -1330, - "y": -70, - "zOrder": 114, + "x": 2520, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32085,16 +32035,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", + "name": "Fences", + "persistentUuid": "e7c9af17-d2d9-401c-82e1-25a4fe11322f", "width": 70, - "x": -1260, - "y": -70, - "zOrder": 114, + "x": 2450, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32105,16 +32055,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", + "name": "Fences", + "persistentUuid": "2716921d-3646-460b-a3a3-94aac43e3bf9", "width": 70, - "x": -1610, - "y": -70, - "zOrder": 114, + "x": 2590, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32125,16 +32075,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", + "name": "Fences", + "persistentUuid": "9370535f-d80e-431a-9581-de61f2017ed6", "width": 70, - "x": -1680, - "y": -70, - "zOrder": 114, + "x": 2030, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32145,16 +32095,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", + "name": "Fences", + "persistentUuid": "19dcd4a6-3f64-4558-a745-6af2aba38268", "width": 70, - "x": -3080, - "y": 840, - "zOrder": 114, + "x": 2100, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32165,16 +32115,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", + "name": "Fences", + "persistentUuid": "20689c2c-5670-485e-a31e-c7009ed56f56", "width": 70, - "x": -3080, - "y": 910, - "zOrder": 114, + "x": 2170, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32185,16 +32135,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", + "name": "Fences", + "persistentUuid": "dbff8b92-147e-412f-9187-347ed57b66e5", "width": 70, - "x": -3080, - "y": 980, - "zOrder": 114, + "x": 2240, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32205,16 +32155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", + "name": "Fences", + "persistentUuid": "2dfd74b5-524b-4452-9b4a-f952f492bf96", "width": 70, - "x": -3080, - "y": 1050, - "zOrder": 114, + "x": 2310, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32225,16 +32175,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", + "name": "Fences", + "persistentUuid": "bb1e818d-553b-455f-aa66-6f128f7012bb", "width": 70, - "x": -3080, - "y": 1120, - "zOrder": 114, + "x": 1960, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32245,16 +32195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", + "name": "Fences", + "persistentUuid": "9b83ddba-24b5-4848-9e28-6d379bccb56f", "width": 70, - "x": -3080, - "y": 1190, - "zOrder": 114, + "x": 1820, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32265,16 +32215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", + "name": "Fences", + "persistentUuid": "84e2b3f6-cd43-40a7-a4fe-cd492d3e214b", "width": 70, - "x": -3080, - "y": 1260, - "zOrder": 114, + "x": 1890, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32285,36 +32235,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", + "name": "Fences", + "persistentUuid": "0ddb1721-e496-4021-ad68-fa1c978e9d6a", "width": 70, - "x": -3080, - "y": 1330, - "zOrder": 114, + "x": 1750, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": -180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", + "name": "Fences", + "persistentUuid": "ba9b2e79-f806-4a17-9dc5-bc151b2d68f1", "width": 70, - "x": -3080, - "y": 1400, - "zOrder": 114, + "x": 2870, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], @@ -32325,16 +32275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", + "name": "Fences", + "persistentUuid": "49b551a4-aca8-49dc-b092-d9ca7987b587", "width": 70, - "x": -3080, - "y": 1470, - "zOrder": 114, + "x": 2660, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32345,16 +32295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", + "name": "Fences", + "persistentUuid": "d5cb869c-bc86-4f9c-9378-9ac312629f91", "width": 70, - "x": -3080, - "y": 1540, - "zOrder": 114, + "x": 2730, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32365,16 +32315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", + "name": "Fences", + "persistentUuid": "806686c5-3bec-4691-a9b1-4fbbd64f7ee0", "width": 70, - "x": -3080, - "y": 1610, - "zOrder": 114, + "x": 2800, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32385,16 +32335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", + "name": "Fences", + "persistentUuid": "e8bd910e-23b4-43c5-bd6f-e17a517d8d05", "width": 70, - "x": -3080, - "y": 1680, - "zOrder": 114, + "x": 2870, + "y": 2170, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32405,16 +32355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", + "name": "Fences", + "persistentUuid": "cd0f45fc-6abc-40fd-a70c-020e28e6d63b", "width": 70, - "x": -3080, - "y": 1750, - "zOrder": 114, + "x": 2870, + "y": 2100, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32425,16 +32375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", + "name": "Fences", + "persistentUuid": "08ef7399-dece-40ff-837e-252019150802", "width": 70, - "x": -3080, - "y": 1820, - "zOrder": 114, + "x": 2870, + "y": 2030, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32445,16 +32395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", + "name": "Fences", + "persistentUuid": "7d6c1c9f-0b96-4eca-818d-952f81cb9465", "width": 70, - "x": -3080, - "y": 1890, - "zOrder": 114, + "x": 2870, + "y": 1960, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32465,16 +32415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", + "name": "Fences", + "persistentUuid": "45108584-2f3b-4bab-995b-062ad59ff9ea", "width": 70, - "x": -3080, - "y": 1960, - "zOrder": 114, + "x": 2870, + "y": 2450, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32485,16 +32435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", + "name": "Fences", + "persistentUuid": "33511547-f08c-4d9c-b362-d5823875e180", "width": 70, - "x": -3080, - "y": 2030, - "zOrder": 114, + "x": 2870, + "y": 2380, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32505,16 +32455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", + "name": "Fences", + "persistentUuid": "5af4c433-0333-47fd-a7d7-0e89bbbd3a84", "width": 70, - "x": -3080, - "y": 2100, - "zOrder": 114, + "x": 2870, + "y": 2310, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32525,16 +32475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", + "name": "Fences", + "persistentUuid": "5b625785-9d13-4097-9214-cda61ec683ce", "width": 70, - "x": -3080, - "y": 2170, - "zOrder": 114, + "x": 2870, + "y": 2240, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32545,16 +32495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", + "name": "Fences", + "persistentUuid": "8250ee98-d602-4797-8cef-19ee3c240e5b", "width": 70, - "x": -3080, - "y": 2240, - "zOrder": 114, + "x": 2870, + "y": 1820, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32565,16 +32515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", + "name": "Fences", + "persistentUuid": "725eb193-5c27-4486-b8a3-2e2cfb574324", "width": 70, - "x": -3080, - "y": 70, - "zOrder": 114, + "x": 2870, + "y": 1750, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32585,16 +32535,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", + "name": "Fences", + "persistentUuid": "6e5b1020-08a2-431e-b384-ffe5e2a00704", "width": 70, - "x": -3080, - "y": 140, - "zOrder": 114, + "x": 2870, + "y": 1890, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32605,16 +32555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", + "name": "Fences", + "persistentUuid": "04e3986e-c400-4087-8328-ce90c7d6110b", "width": 70, - "x": -3080, - "y": 210, - "zOrder": 114, + "x": 2870, + "y": 2660, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32625,16 +32575,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", + "name": "Fences", + "persistentUuid": "ea44194f-7c82-4055-b779-69b3641adfc8", "width": 70, - "x": -3080, - "y": 280, - "zOrder": 114, + "x": 2870, + "y": 2590, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32645,16 +32595,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6cb0e950-9a8c-496d-bd67-774e75c04418", + "name": "Fences", + "persistentUuid": "168bbb2f-a430-4eb8-a6cc-18ab0f61476c", "width": 70, - "x": -3080, - "y": 350, - "zOrder": 114, + "x": 2870, + "y": 2520, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -32665,96 +32615,96 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "6d9dab9c-63ce-4922-9e02-ff6c19188008", + "name": "Fences", + "persistentUuid": "47e24764-d82b-4fdb-8b77-e1553ac0bdee", "width": 70, - "x": -3080, - "y": 420, - "zOrder": 114, + "x": 2870, + "y": 2730, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 90, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", + "name": "Fences", + "persistentUuid": "5e61d5be-f3d6-4120-8870-ce819be954a0", "width": 70, - "x": -3080, - "y": 490, - "zOrder": 114, + "x": 2870, + "y": 1680, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", + "name": "Fences", + "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", "width": 70, - "x": -3080, - "y": 560, - "zOrder": 114, + "x": 1680, + "y": 2800, + "zOrder": 115, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 90, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "62a4a047-24c1-487f-87bd-df3881885551", - "width": 70, - "x": -3080, - "y": 630, - "zOrder": 114, + "name": "road_block", + "persistentUuid": "f74087e8-5bf5-4c62-bb50-5af0fc20d391", + "width": 0, + "x": 1610, + "y": 1803, + "zOrder": 124, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 90, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", - "width": 70, - "x": -3080, - "y": 700, - "zOrder": 114, + "name": "road_block", + "persistentUuid": "d7d6258f-c239-4446-8764-f6081976ac1e", + "width": 0, + "x": 1610, + "y": 1944, + "zOrder": 124, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 1 } ], "stringProperties": [], @@ -32766,10 +32716,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bd831170-7ea4-422e-b57f-c6feaa014ba7", + "persistentUuid": "9ee9ff4b-f297-4f7a-8d3d-476284497305", "width": 70, - "x": -3080, - "y": 770, + "x": 3080, + "y": -210, "zOrder": 114, "numberProperties": [ { @@ -32785,16 +32735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", + "name": "sand", + "persistentUuid": "b1797207-5739-4c89-b2ab-702d203e1709", "width": 70, - "x": 1470, + "x": 3150, "y": -210, - "zOrder": 4, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], @@ -32805,16 +32755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", + "name": "sand", + "persistentUuid": "158adeed-3ba0-4bc2-8856-0bdf22b17436", "width": 70, - "x": 1470, + "x": 3080, "y": -140, - "zOrder": 4, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -32825,16 +32775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", + "name": "sand", + "persistentUuid": "a418c1ba-d731-459c-9457-04262d6d5689", "width": 70, - "x": 910, - "y": -210, - "zOrder": 5, + "x": 3150, + "y": -140, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -32845,16 +32795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", + "name": "sand", + "persistentUuid": "67b552a9-57f5-4f66-8e98-3b460ecaa71a", "width": 70, - "x": 910, - "y": -140, - "zOrder": 5, + "x": 3080, + "y": -70, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 2 } ], "stringProperties": [], @@ -32865,16 +32815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", + "name": "sand", + "persistentUuid": "183695d6-ef91-4790-bca6-96c89829f9cf", "width": 70, - "x": 1190, - "y": -210, - "zOrder": 6, + "x": 3150, + "y": -70, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 3 } ], "stringProperties": [], @@ -32885,106 +32835,31 @@ "customSize": true, "height": 70, "layer": "", - "name": "road", - "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", + "name": "sand", + "persistentUuid": "9b42062f-9087-4f70-ab84-dc5dbe943006", "width": 70, - "x": 1190, - "y": -280, - "zOrder": 6, + "x": 3080, + "y": 0, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 7 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "3b6c9f7b-aa77-4828-991d-b56ea26f63ee", - "width": 0, - "x": 1444, - "y": -142, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "6d1aea08-0699-42eb-a952-082f07447057", - "width": 0, - "x": 910, - "y": -142, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "f213373c-ee27-4b40-9713-d6ee5e0af152", - "width": 0, - "x": 1050, - "y": -211, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "9a3ce28b-b461-4cac-b2d8-ab32cc3cc65a", - "width": 0, - "x": 1178, - "y": -280, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "1df224b2-7836-4b29-a7e3-09d13e4635d5", - "width": 0, - "x": 1304, - "y": -211, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "50d7b1de-96a1-4f71-b957-e20768dc708d", + "persistentUuid": "a4ab624d-c44c-44a3-bd83-633bb0a0fdd4", "width": 70, - "x": 1540, - "y": -280, + "x": 3150, + "y": 0, "zOrder": 114, "numberProperties": [ { @@ -33001,10 +32876,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", + "persistentUuid": "30b22fdc-d3e2-4edd-b482-1f80a03b5d06", "width": 70, - "x": 1610, - "y": -280, + "x": 3080, + "y": 70, "zOrder": 114, "numberProperties": [ { @@ -33021,10 +32896,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", + "persistentUuid": "157c2b49-faa6-4983-8d9b-dd4d2e176ddf", "width": 70, - "x": 1540, - "y": -350, + "x": 3150, + "y": 70, "zOrder": 114, "numberProperties": [ { @@ -33041,10 +32916,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", + "persistentUuid": "62b12e31-88ec-42ad-9304-7796f48b87a9", "width": 70, - "x": 1610, - "y": -350, + "x": 3080, + "y": 140, "zOrder": 114, "numberProperties": [ { @@ -33055,96 +32930,21 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "950c62c8-220a-4a5c-a0cb-027e19a80ebd", - "width": 630, - "x": 910, - "y": -420, - "zOrder": 123, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "crosshair", - "persistentUuid": "3ef2ea28-0138-453d-99de-f457f24e58f5", - "width": 0, - "x": 0, - "y": 1190, - "zOrder": 1242, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "d996ba71-5299-4c8c-a851-c15165c7fb18", - "width": 420, - "x": -3640, - "y": 2170, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "ea61dde3-6225-4bfc-b020-af6f481c1676", - "width": 140, - "x": -3780, - "y": 2170, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "Debug", - "name": "reloading", - "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 1243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "379055e1-4277-4112-a273-ca7a8e7b1b58", + "persistentUuid": "23288e1a-8b18-4682-b34b-d263a7ee3712", "width": 70, - "x": -1820, - "y": 1050, + "x": 3150, + "y": 140, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33156,15 +32956,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", + "persistentUuid": "9ea4fb8a-37c8-4cae-bcc4-e987ff99f482", "width": 70, - "x": -1820, - "y": 1120, + "x": 3080, + "y": 210, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33176,15 +32976,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", + "persistentUuid": "ba79ea26-1b9c-4d76-8278-9addd200fc89", "width": 70, - "x": -1820, - "y": 1190, + "x": 3150, + "y": 210, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33196,15 +32996,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", + "persistentUuid": "ec3bedcb-b9b5-488a-ba16-69aef4dd0161", "width": 70, - "x": -1820, - "y": 1260, + "x": 3080, + "y": 280, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33216,10 +33016,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", + "persistentUuid": "56b2845b-5c41-4604-9aee-19c320439dc5", "width": 70, - "x": -1820, - "y": 1330, + "x": 3150, + "y": 280, "zOrder": 114, "numberProperties": [ { @@ -33236,15 +33036,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", + "persistentUuid": "3687e612-ed9b-42fd-b4b0-e4a6c646dc82", "width": 70, - "x": -1820, - "y": 1400, + "x": 3080, + "y": 350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33256,10 +33056,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", + "persistentUuid": "d19bf4a8-93e7-4635-831d-c23781e93f40", "width": 70, - "x": -1820, - "y": 1470, + "x": 3150, + "y": 350, "zOrder": 114, "numberProperties": [ { @@ -33276,10 +33076,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", + "persistentUuid": "d890ec14-b9f7-45f4-b4d0-3f4b6de24762", "width": 70, - "x": -1820, - "y": 1540, + "x": 3080, + "y": 420, "zOrder": 114, "numberProperties": [ { @@ -33296,15 +33096,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", + "persistentUuid": "2ac599b3-9b5d-4f47-82da-4939ed18bf83", "width": 70, - "x": -1820, - "y": 1610, + "x": 3150, + "y": 420, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33316,10 +33116,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", + "persistentUuid": "52bc591b-f4fc-4874-9be4-223e798e5a6e", "width": 70, - "x": -1820, - "y": 1680, + "x": 3080, + "y": 490, "zOrder": 114, "numberProperties": [ { @@ -33336,10 +33136,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", + "persistentUuid": "4f0e8cf8-e767-4498-a355-2cd175f4ee6c", "width": 70, - "x": -1820, - "y": 1750, + "x": 3150, + "y": 490, "zOrder": 114, "numberProperties": [ { @@ -33356,15 +33156,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", + "persistentUuid": "3084472c-b931-41d5-b91e-66acfc98004e", "width": 70, - "x": -1820, - "y": 1820, + "x": 3080, + "y": 560, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33376,10 +33176,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", + "persistentUuid": "767725d5-371b-4711-baa3-3033fd815572", "width": 70, - "x": -1820, - "y": 1890, + "x": 3150, + "y": 560, "zOrder": 114, "numberProperties": [ { @@ -33396,15 +33196,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", + "persistentUuid": "d8ac935a-3722-4f46-9bbe-0aa1e878ccae", "width": 70, - "x": -1820, - "y": 1960, + "x": 3080, + "y": 630, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33416,15 +33216,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", + "persistentUuid": "64ee35de-601a-4bbf-b297-de0218e7ab68", "width": 70, - "x": -1820, - "y": 2030, + "x": 3150, + "y": 630, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33436,15 +33236,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", + "persistentUuid": "6f3f5f40-951f-4c03-9a4f-7d3466db3a1d", "width": 70, - "x": -1820, - "y": 2100, + "x": 3080, + "y": 700, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33456,15 +33256,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", + "persistentUuid": "638af857-4eea-4d48-92e4-3204c9f66ed1", "width": 70, - "x": -1820, - "y": 980, + "x": 3150, + "y": 700, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33476,15 +33276,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", + "persistentUuid": "e0ff9a0d-aa62-43b6-8ed3-352b3be155b2", "width": 70, - "x": -1890, - "y": 1050, + "x": 3080, + "y": 770, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33496,15 +33296,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", + "persistentUuid": "997b15a5-b19b-48cf-a6b8-6eaa1a4d98bf", "width": 70, - "x": -1890, - "y": 1120, + "x": 3150, + "y": 770, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33516,10 +33316,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "14a6d93c-17cc-4c5f-8681-b463151e8b89", + "persistentUuid": "dd9b33e2-87cf-4184-93c2-94825eef0123", "width": 70, - "x": -1890, - "y": 1190, + "x": 3080, + "y": 840, "zOrder": 114, "numberProperties": [ { @@ -33536,15 +33336,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "32892402-1801-48b8-aeb9-8712ed98ce38", + "persistentUuid": "70c5fd24-219a-495e-8391-12bab4bb850b", "width": 70, - "x": -1890, - "y": 1260, + "x": 3150, + "y": 840, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33556,15 +33356,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "31150f68-fa1a-4aad-b3bd-63963073e0b8", + "persistentUuid": "4a6ff9cf-82e6-4a70-a526-a8728043c7cd", "width": 70, - "x": -1890, - "y": 1330, + "x": 3080, + "y": -280, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33576,15 +33376,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", + "persistentUuid": "f69c92c1-2a84-498c-8602-d61261815df8", "width": 70, - "x": -1890, - "y": 1400, + "x": 3150, + "y": -280, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33596,10 +33396,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", + "persistentUuid": "b3749f72-eece-4648-a292-abf23c4074d9", "width": 70, - "x": -1890, - "y": 1470, + "x": 3080, + "y": -350, "zOrder": 114, "numberProperties": [ { @@ -33616,15 +33416,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", + "persistentUuid": "ed7f0166-abfa-4191-8fa9-a46239161233", "width": 70, - "x": -1890, - "y": 1540, + "x": 3150, + "y": -350, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33636,15 +33436,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", + "persistentUuid": "f6ce4fc5-1d99-4396-9db7-2805a43325e7", "width": 70, - "x": -1890, - "y": 1610, + "x": 2940, + "y": 980, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33656,15 +33456,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", + "persistentUuid": "1eca040b-661e-4c96-9c48-dca32183af01", "width": 70, - "x": -1890, - "y": 1680, + "x": 3010, + "y": 980, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33676,15 +33476,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", + "persistentUuid": "f9db1c70-e25e-4a75-99b8-2762435e763a", "width": 70, - "x": -1890, - "y": 1750, + "x": 2940, + "y": 1050, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33696,15 +33496,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", + "persistentUuid": "809f91d5-5183-4b05-8d04-499e7919e175", "width": 70, - "x": -1890, - "y": 1820, + "x": 3010, + "y": 1050, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33716,15 +33516,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", + "persistentUuid": "cbcde2a9-9eaf-4f39-9a7a-9af9e5cea827", "width": 70, - "x": -1890, - "y": 1890, + "x": 2940, + "y": 1120, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33736,10 +33536,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", + "persistentUuid": "08cdcb23-b132-46c0-ad9a-5e27133b8d4d", "width": 70, - "x": -1890, - "y": 1960, + "x": 3010, + "y": 1120, "zOrder": 114, "numberProperties": [ { @@ -33756,15 +33556,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", + "persistentUuid": "9f57eb58-b056-4617-91b0-b8a632cc51ee", "width": 70, - "x": -1890, - "y": 2030, + "x": 2940, + "y": 1190, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33776,10 +33576,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", + "persistentUuid": "4ef6e2ab-1447-4643-bd22-fd07dba62b43", "width": 70, - "x": -1890, - "y": 2100, + "x": 3010, + "y": 1190, "zOrder": 114, "numberProperties": [ { @@ -33796,15 +33596,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", + "persistentUuid": "2bb31941-fd71-4456-a6d8-0de4f61966b4", "width": 70, - "x": -1890, - "y": 980, + "x": 2940, + "y": 1260, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33816,10 +33616,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", + "persistentUuid": "948a38d7-6bf1-440b-a47f-bcd9b6cf4abe", "width": 70, - "x": -1750, - "y": 1120, + "x": 3010, + "y": 1260, "zOrder": 114, "numberProperties": [ { @@ -33836,15 +33636,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a248f1d0-1ff3-4bef-acba-dec57fc60107", + "persistentUuid": "5f5059e3-36db-4da9-9832-c2c7ad227fe9", "width": 70, - "x": -1750, - "y": 1190, + "x": 2940, + "y": 1330, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33856,15 +33656,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0452f3da-94cc-46a1-aa88-a54962bec1c3", + "persistentUuid": "f01ab895-b3d0-4a8b-9d84-25b857346fe3", "width": 70, - "x": -1750, - "y": 1260, + "x": 3010, + "y": 1330, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33876,15 +33676,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f1c0d321-6422-45bf-a32c-37156a882fe9", + "persistentUuid": "ada0399d-8fef-41ba-9a72-965f9b8f105c", "width": 70, - "x": -1750, - "y": 1330, + "x": 2940, + "y": 1400, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33896,15 +33696,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", + "persistentUuid": "2f5f227f-b2fc-4802-b5ea-394300131322", "width": 70, - "x": -1750, + "x": 3010, "y": 1400, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33916,15 +33716,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", + "persistentUuid": "5ce903dc-bb50-4385-b863-48f707b6db90", "width": 70, - "x": -1750, + "x": 2940, "y": 1470, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33936,15 +33736,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", + "persistentUuid": "9d825cb0-f0cb-48e5-93b5-98368f03721a", "width": 70, - "x": -1750, - "y": 1540, + "x": 3010, + "y": 1470, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33956,10 +33756,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", + "persistentUuid": "2a5bab17-92b6-4dba-b8c7-492b59fa8fdf", "width": 70, - "x": -1750, - "y": 1610, + "x": 2940, + "y": 1540, "zOrder": 114, "numberProperties": [ { @@ -33976,15 +33776,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", + "persistentUuid": "64fb44af-3bd8-48b8-bb9a-29c0db1805c3", "width": 70, - "x": -1750, - "y": 1680, + "x": 3010, + "y": 1540, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -33996,10 +33796,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", + "persistentUuid": "c54ef18d-e742-41ec-a857-84b36c063902", "width": 70, - "x": -1750, - "y": 1750, + "x": 2940, + "y": 1610, "zOrder": 114, "numberProperties": [ { @@ -34016,15 +33816,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", + "persistentUuid": "48a399cb-b611-4b5a-99b6-74b831296cbf", "width": 70, - "x": -1750, - "y": 1820, + "x": 3010, + "y": 1610, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34036,10 +33836,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", + "persistentUuid": "e3fb31c9-43ab-490b-9b23-b60b90a5a6be", "width": 70, - "x": -1750, - "y": 1890, + "x": 2940, + "y": 1680, "zOrder": 114, "numberProperties": [ { @@ -34056,10 +33856,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", + "persistentUuid": "79ed71d9-b6da-4355-b4d1-b602aa1bd270", "width": 70, - "x": -1750, - "y": 1960, + "x": 3010, + "y": 1680, "zOrder": 114, "numberProperties": [ { @@ -34076,10 +33876,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", + "persistentUuid": "9cbd98a1-dac4-4fdd-bc86-8ef1fc716369", "width": 70, - "x": -1750, - "y": 2030, + "x": 2940, + "y": 1750, "zOrder": 114, "numberProperties": [ { @@ -34096,10 +33896,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", + "persistentUuid": "b949e377-dde1-4ae6-87b9-eb2a6e89b904", "width": 70, - "x": -1750, - "y": 2100, + "x": 3010, + "y": 1750, "zOrder": 114, "numberProperties": [ { @@ -34116,10 +33916,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", + "persistentUuid": "735701af-2741-4745-9790-63a267ee828e", "width": 70, - "x": -1750, - "y": 2170, + "x": 2940, + "y": 1820, "zOrder": 114, "numberProperties": [ { @@ -34136,15 +33936,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", + "persistentUuid": "190e7e9c-a4df-440c-bf74-55d70211e524", "width": 70, - "x": -1750, - "y": 1050, + "x": 3010, + "y": 1820, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34156,10 +33956,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", + "persistentUuid": "b79ef89a-7178-4b80-a263-e89a921aa6ac", "width": 70, - "x": -1890, - "y": 2170, + "x": 2940, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -34176,10 +33976,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", + "persistentUuid": "fe5ce019-ae55-44c3-9916-18ffdc65ac4c", "width": 70, - "x": -1750, - "y": 980, + "x": 3010, + "y": 1890, "zOrder": 114, "numberProperties": [ { @@ -34196,15 +33996,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", + "persistentUuid": "0f07a886-09a2-465b-9f61-990c6a4382e8", "width": 70, - "x": -1820, - "y": 2170, + "x": 2940, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34216,15 +34016,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", + "persistentUuid": "2527fd7f-3ec2-4d0f-9e60-6d55d4f5cbf5", "width": 70, - "x": -1750, - "y": 2240, + "x": 3010, + "y": 1960, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34236,15 +34036,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", + "persistentUuid": "0691f845-1af6-4545-8f7f-e6c59dd952d1", "width": 70, - "x": -1820, - "y": 2240, + "x": 2940, + "y": 2030, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34256,10 +34056,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", + "persistentUuid": "f9f94936-305e-42d2-8d7d-9e58650bce40", "width": 70, - "x": -1890, - "y": 2240, + "x": 3010, + "y": 2030, "zOrder": 114, "numberProperties": [ { @@ -34276,10 +34076,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", + "persistentUuid": "1c598e59-ed8d-450f-b2e6-f6a8b16feb6d", "width": 70, - "x": -770, - "y": 350, + "x": 2940, + "y": 910, "zOrder": 114, "numberProperties": [ { @@ -34296,15 +34096,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", + "persistentUuid": "f79831d7-5398-486c-851d-115effa61db3", "width": 70, - "x": -840, - "y": 350, + "x": 3010, + "y": 910, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34316,10 +34116,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", + "persistentUuid": "dc0eebf8-306f-4dc3-89be-ca7118e9edf0", "width": 70, - "x": -910, - "y": 350, + "x": 2940, + "y": 840, "zOrder": 114, "numberProperties": [ { @@ -34336,15 +34136,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", + "persistentUuid": "3338b8cf-0a0c-4511-b549-f5759715240f", "width": 70, - "x": -560, - "y": 350, + "x": 3010, + "y": 840, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34356,10 +34156,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", + "persistentUuid": "6b2d8984-4c06-4272-b7e7-3264e23234d1", "width": 70, - "x": -630, - "y": 350, + "x": 2940, + "y": 2240, "zOrder": 114, "numberProperties": [ { @@ -34376,10 +34176,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", + "persistentUuid": "375eee19-95f5-486b-9dc0-6622011d1803", "width": 70, - "x": -700, - "y": 350, + "x": 3010, + "y": 2240, "zOrder": 114, "numberProperties": [ { @@ -34396,15 +34196,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", + "persistentUuid": "61a73149-7a26-4c35-a70b-ffddf6e45560", "width": 70, - "x": 140, - "y": 350, + "x": 2940, + "y": 2310, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34416,15 +34216,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", + "persistentUuid": "ce414fcc-5964-427c-8aba-cde219af3107", "width": 70, - "x": -420, - "y": 350, + "x": 3010, + "y": 2310, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34436,15 +34236,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", + "persistentUuid": "363f7cc4-3049-427d-b117-f693f6b48544", "width": 70, - "x": -490, - "y": 350, + "x": 2940, + "y": 2380, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34456,15 +34256,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", + "persistentUuid": "6926c3ce-6241-4894-8a45-3f1810805225", "width": 70, - "x": 630, - "y": 350, + "x": 3010, + "y": 2380, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34476,15 +34276,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", + "persistentUuid": "da7a6745-cbd7-46dd-affa-576e6cf77f3f", "width": 70, - "x": -280, - "y": 350, + "x": 2940, + "y": 2450, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34496,15 +34296,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", + "persistentUuid": "47044eb9-420c-4107-8ae1-69014527b043", "width": 70, - "x": -350, - "y": 350, + "x": 3010, + "y": 2450, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34516,15 +34316,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", + "persistentUuid": "523b7f1f-cbcb-4381-8fbf-6e4b0ec9338a", "width": 70, - "x": 490, - "y": 350, + "x": 2940, + "y": 2520, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34536,10 +34336,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", + "persistentUuid": "abc87865-5b92-42db-9458-35183a25b219", "width": 70, - "x": 560, - "y": 350, + "x": 3010, + "y": 2520, "zOrder": 114, "numberProperties": [ { @@ -34556,10 +34356,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", + "persistentUuid": "e44952bd-0514-4fa4-b552-ea0ea39e819f", "width": 70, - "x": 700, - "y": 350, + "x": 2940, + "y": 2590, "zOrder": 114, "numberProperties": [ { @@ -34576,15 +34376,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", + "persistentUuid": "a265d631-fa9f-408a-b227-457304de3ad7", "width": 70, - "x": 210, - "y": 350, + "x": 3010, + "y": 2590, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34596,15 +34396,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", + "persistentUuid": "f160aaf2-91fb-4cdd-b0dc-41797ff8ec47", "width": 70, - "x": 350, - "y": 350, + "x": 2940, + "y": 2660, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34616,10 +34416,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", + "persistentUuid": "71add1a8-ced3-489c-9fdb-9395e22691b1", "width": 70, - "x": 420, - "y": 350, + "x": 3010, + "y": 2660, "zOrder": 114, "numberProperties": [ { @@ -34636,15 +34436,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", + "persistentUuid": "d14b557a-5e0c-4ade-bd01-97d4625d808d", "width": 70, - "x": -70, - "y": 350, + "x": 2940, + "y": 2730, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34656,15 +34456,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", + "persistentUuid": "71806cae-0d84-4322-861d-830707a2567d", "width": 70, - "x": -140, - "y": 350, + "x": 3010, + "y": 2730, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34676,15 +34476,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", + "persistentUuid": "123cf952-b22e-424d-82d0-5dc35c40f0ff", "width": 70, - "x": -210, - "y": 350, + "x": 2940, + "y": 2800, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34696,15 +34496,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", + "persistentUuid": "8e8dd259-f137-4a91-8ae4-6d55ffd32e14", "width": 70, - "x": 0, - "y": 350, + "x": 3010, + "y": 2800, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -34716,10 +34516,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", + "persistentUuid": "0958302c-4d83-45dd-aa71-ea311727f694", "width": 70, - "x": 280, - "y": 350, + "x": 2940, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -34736,105 +34536,75 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", + "persistentUuid": "695f3ee9-c4a9-46be-bc72-8b45f1adb2b1", "width": 70, - "x": 70, - "y": 350, + "x": 3010, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, - "height": 630, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, + "name": "sand", + "persistentUuid": "1385a91a-4059-4c2b-9b04-35d5a0bb01f4", + "width": 70, + "x": 2940, + "y": 2940, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 180, + "angle": 0, "customSize": true, - "height": 490, + "height": 70, "layer": "", - "name": "roofTops", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, + "name": "sand", + "persistentUuid": "3f39da00-29d3-435b-9e18-69837758ea72", + "width": 70, + "x": 3010, + "y": 2940, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "deco", - "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", - "width": 210, - "x": 1750, - "y": -140, - "zOrder": 1252, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "deco", - "persistentUuid": "288f8d6b-d873-441f-96ad-59d5c5716e5f", - "width": 210, - "x": 2100, - "y": -140, - "zOrder": 1252, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", + "persistentUuid": "1d4c1fbb-ee7d-40af-b93b-b12bcb54b43a", "width": 70, - "x": 2030, - "y": -280, + "x": 2940, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -34846,15 +34616,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", + "persistentUuid": "ee1d1a68-9895-4c96-b119-eb48e0ed9786", "width": 70, - "x": 2100, - "y": -280, + "x": 3010, + "y": 2170, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -34866,15 +34636,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", + "persistentUuid": "6477a0ae-886d-4fdb-8940-b4adba8caf37", "width": 70, - "x": 2170, - "y": -280, + "x": 2940, + "y": 2100, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -34886,10 +34656,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", + "persistentUuid": "c089291f-0aed-4658-b698-a6d5e247fb32", "width": 70, - "x": 1680, - "y": -280, + "x": 3010, + "y": 2100, "zOrder": 114, "numberProperties": [ { @@ -34906,15 +34676,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", + "persistentUuid": "f804a2b8-b77e-4d4f-ab84-32f37e80bfdb", "width": 70, - "x": 1750, - "y": -280, + "x": 2170, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -34926,15 +34696,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", + "persistentUuid": "02048fa1-fc22-4354-aa5d-1f54b0d96e75", "width": 70, - "x": 1820, - "y": -280, + "x": 2240, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -34946,10 +34716,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", + "persistentUuid": "ada9f06a-8e9b-4456-aee8-f542d4e09fa1", "width": 70, - "x": 1890, - "y": -280, + "x": 2170, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -34966,10 +34736,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", + "persistentUuid": "af3909b9-9b91-496f-820a-2fb733bf5cff", "width": 70, - "x": 1960, - "y": -280, + "x": 2240, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -34986,10 +34756,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", + "persistentUuid": "38e19f54-832e-44f9-8f20-3eada258d1dd", "width": 70, - "x": 2730, - "y": -280, + "x": 2310, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35006,10 +34776,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", + "persistentUuid": "8339acad-1cde-4da6-b905-6fc58d008d14", "width": 70, - "x": 2800, - "y": -280, + "x": 2310, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35026,15 +34796,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", + "persistentUuid": "600c2e5b-ac35-48ce-bcb7-9f8f57272037", "width": 70, - "x": 2870, - "y": -280, + "x": 1820, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35046,10 +34816,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", + "persistentUuid": "1008b10b-246f-45b3-abff-863b8a18868a", "width": 70, - "x": 2380, - "y": -280, + "x": 1890, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35066,10 +34836,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", + "persistentUuid": "97542886-57c1-4e16-98f2-9546b51093c0", "width": 70, - "x": 2450, - "y": -280, + "x": 1820, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35086,15 +34856,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", + "persistentUuid": "aef5ab2f-78e0-4036-8ee1-5fc6b662fe5f", "width": 70, - "x": 2520, - "y": -280, + "x": 1890, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35106,15 +34876,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", + "persistentUuid": "2120a881-3494-43d6-9164-03d2c8aa0270", "width": 70, - "x": 2590, - "y": -280, + "x": 1960, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35126,15 +34896,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", + "persistentUuid": "cb4c4f32-bed1-4269-9c61-17dc172c061f", "width": 70, - "x": 2660, - "y": -280, + "x": 2030, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35146,15 +34916,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", + "persistentUuid": "a7905d17-823e-422c-8ed2-802047a63797", "width": 70, - "x": 2310, - "y": -280, + "x": 1960, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35166,10 +34936,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", + "persistentUuid": "5a6ad1cc-0ebe-4499-a755-be2aa5b0570d", "width": 70, - "x": 2240, - "y": -280, + "x": 2030, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35186,10 +34956,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", + "persistentUuid": "8261608d-acbb-4d23-97e0-ba477e80acfa", "width": 70, - "x": 3010, - "y": -280, + "x": 2100, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35206,15 +34976,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", + "persistentUuid": "0d292fbc-945a-45d9-b1d3-1390f4d97f12", "width": 70, - "x": 2940, - "y": -280, + "x": 2100, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35226,10 +34996,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", + "persistentUuid": "00169f9c-f759-43aa-ad30-dadff6e4976d", "width": 70, - "x": 2030, - "y": -350, + "x": 1750, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35246,10 +35016,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", + "persistentUuid": "8a15c5a5-3eac-434d-ae73-bcbf862d015f", "width": 70, - "x": 2100, - "y": -350, + "x": 1680, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35266,15 +35036,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", + "persistentUuid": "6be504bc-8139-4253-b18a-75a3668ba45a", "width": 70, - "x": 2170, - "y": -350, + "x": 1680, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35286,10 +35056,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", + "persistentUuid": "1c730ba7-584e-4f6f-8a2b-f23512391363", "width": 70, - "x": 1680, - "y": -350, + "x": 1750, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35306,15 +35076,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", + "persistentUuid": "7df5811b-5eef-4ee6-a946-363af4f599f4", "width": 70, - "x": 1750, - "y": -350, + "x": 2870, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35326,10 +35096,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", + "persistentUuid": "313ccecf-f6a2-43dc-a30f-6a2ec8db0abe", "width": 70, - "x": 1820, - "y": -350, + "x": 2870, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35346,10 +35116,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", + "persistentUuid": "35b1a0d1-a22b-4754-8dfb-9b31ebc9d80c", "width": 70, - "x": 1890, - "y": -350, + "x": 2520, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35366,10 +35136,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", + "persistentUuid": "c11cb813-0825-484d-b037-84128ae2bdac", "width": 70, - "x": 1960, - "y": -350, + "x": 2590, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35386,15 +35156,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", + "persistentUuid": "cf07e3ce-8896-4896-9078-a8695a722cb7", "width": 70, - "x": 2730, - "y": -350, + "x": 2520, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35406,15 +35176,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", + "persistentUuid": "ef9a1474-da4a-49f2-b6d1-78e4b0a435e8", "width": 70, - "x": 2800, - "y": -350, + "x": 2590, + "y": 2940, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35426,15 +35196,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", + "persistentUuid": "293dc4f4-b2d1-4400-80af-251d1e2c8e29", "width": 70, - "x": 2870, - "y": -350, + "x": 2660, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35446,15 +35216,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", + "persistentUuid": "c0227c3b-0575-4ba1-814d-a6f48033523e", "width": 70, - "x": 2380, - "y": -350, + "x": 2730, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35466,10 +35236,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", + "persistentUuid": "8cbe2c0e-6ef4-48ec-93ab-6a67e2173fa0", "width": 70, - "x": 2450, - "y": -350, + "x": 2660, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35486,10 +35256,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", + "persistentUuid": "0314c448-5d74-481d-aed7-5162b4f96402", "width": 70, - "x": 2520, - "y": -350, + "x": 2730, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35506,15 +35276,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", + "persistentUuid": "5074403d-fe8f-4fad-a8d5-19e30f346e6d", "width": 70, - "x": 2590, - "y": -350, + "x": 2800, + "y": 2870, "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 2 + "value": 3 } ], "stringProperties": [], @@ -35526,10 +35296,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", + "persistentUuid": "0bee87dd-0872-41f8-87eb-591141a9e4ff", "width": 70, - "x": 2660, - "y": -350, + "x": 2800, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35546,10 +35316,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", + "persistentUuid": "17f7b1ee-78af-4dad-808a-d5f62d1a8954", "width": 70, - "x": 2310, - "y": -350, + "x": 2450, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35566,10 +35336,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", + "persistentUuid": "3fb1e545-4bf6-4ebe-9417-41f21c8d53f0", "width": 70, - "x": 2240, - "y": -350, + "x": 2380, + "y": 2870, "zOrder": 114, "numberProperties": [ { @@ -35586,10 +35356,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", + "persistentUuid": "64cbd0ef-1c49-4ac8-bd9a-1923f268efb5", "width": 70, - "x": 3010, - "y": -350, + "x": 2380, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35606,10 +35376,10 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", + "persistentUuid": "c67936d9-de7a-4498-a1cc-749dabd07a97", "width": 70, - "x": 2940, - "y": -350, + "x": 2450, + "y": 2940, "zOrder": 114, "numberProperties": [ { @@ -35621,20 +35391,20 @@ "initialVariables": [] }, { - "angle": 90, - "customSize": false, - "height": 0, + "angle": 0, + "customSize": true, + "height": 70, "layer": "", - "name": "road_block", - "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", - "width": 0, - "x": 3010, - "y": -294, - "zOrder": 124, + "name": "sand", + "persistentUuid": "a9d26cf8-c2c6-4d30-a103-eb8bed8e2925", + "width": 70, + "x": 1120, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -35645,16 +35415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", + "name": "sand", + "persistentUuid": "5d0872ec-5354-4cac-a6d5-5fe5e54b94fe", "width": 70, - "x": 2100, - "y": -210, - "zOrder": 115, + "x": 1190, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35665,16 +35435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", + "name": "sand", + "persistentUuid": "7fc67a94-9cc9-49c7-a23e-ec7929c976eb", "width": 70, - "x": 2030, - "y": -210, - "zOrder": 115, + "x": 1120, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35685,16 +35455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", + "name": "sand", + "persistentUuid": "6230dcc8-7764-48b1-8392-cec8b826eda3", "width": 70, - "x": 1960, - "y": -210, - "zOrder": 115, + "x": 1190, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -35705,16 +35475,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", + "name": "sand", + "persistentUuid": "377c99b3-66d7-445a-a6d7-945dc7300194", "width": 70, - "x": 1890, - "y": -210, - "zOrder": 115, + "x": 350, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35725,16 +35495,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", + "name": "sand", + "persistentUuid": "24f140c7-5104-4366-8023-ce2a2741f30c", "width": 70, - "x": 1820, - "y": -210, - "zOrder": 115, + "x": 420, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -35745,16 +35515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", + "name": "sand", + "persistentUuid": "0b64bb96-a729-4131-8a8c-a5dd4fd3c8c1", "width": 70, - "x": 1750, - "y": -210, - "zOrder": 115, + "x": 350, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35765,12 +35535,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", + "name": "sand", + "persistentUuid": "72afa7df-2709-4112-ab53-7f0303eacfb2", "width": 70, - "x": 3010, - "y": 0, - "zOrder": 115, + "x": 420, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -35785,16 +35555,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", + "name": "sand", + "persistentUuid": "4aac1e7d-b51d-42c6-8dfb-9cc0d830c7f6", "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, + "x": 490, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -35805,12 +35575,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", + "name": "sand", + "persistentUuid": "46da4b4a-22ad-436c-812b-b20088180454", "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, + "x": 490, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -35825,32 +35595,32 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", + "name": "sand", + "persistentUuid": "7bb55f5f-0b1b-4057-8fec-712630ef2d51", "width": 70, - "x": 3010, - "y": -140, - "zOrder": 115, + "x": 0, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", + "name": "sand", + "persistentUuid": "a3b55c2f-b34e-4b13-acbd-91fde3219d55", "width": 70, - "x": 3010, - "y": -210, - "zOrder": 115, + "x": 70, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -35865,16 +35635,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", + "name": "sand", + "persistentUuid": "25b63eef-2bd9-44c6-aa6e-44ae15382969", "width": 70, - "x": 2940, - "y": -210, - "zOrder": 115, + "x": 0, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35885,16 +35655,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", + "name": "sand", + "persistentUuid": "381ae918-a98e-4360-9290-ebf808256776", "width": 70, - "x": 2870, - "y": -210, - "zOrder": 115, + "x": 70, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35905,16 +35675,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", + "name": "sand", + "persistentUuid": "ee158e05-dd9d-4af9-8c2e-9fdc8b874d3a", "width": 70, - "x": 2800, - "y": -210, - "zOrder": 115, + "x": 140, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -35925,16 +35695,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", + "name": "sand", + "persistentUuid": "96f637e6-0f80-497c-aa46-0107ac00b481", "width": 70, - "x": 2730, - "y": -210, - "zOrder": 115, + "x": 210, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35945,16 +35715,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", + "name": "sand", + "persistentUuid": "41964124-f593-406a-906d-78dfa9e752e5", "width": 70, - "x": 2660, - "y": -210, - "zOrder": 115, + "x": 140, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35965,16 +35735,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", + "name": "sand", + "persistentUuid": "d248ab1e-d63d-4e34-94c9-1f6b59bd14ec", "width": 70, - "x": 2590, - "y": -210, - "zOrder": 115, + "x": 210, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -35985,16 +35755,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", + "name": "sand", + "persistentUuid": "4b61dafc-1609-421b-bed7-d39216b1adbc", "width": 70, - "x": 2520, - "y": -210, - "zOrder": 115, + "x": 280, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36005,16 +35775,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", + "name": "sand", + "persistentUuid": "e4fdf9a4-5535-4883-8449-83dd9ac069e7", "width": 70, - "x": 2450, - "y": -210, - "zOrder": 115, + "x": 280, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36025,16 +35795,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", + "name": "sand", + "persistentUuid": "1ffa26a2-7c6f-4ba9-9a40-8eb3d5f2dd15", "width": 70, - "x": 2380, - "y": -210, - "zOrder": 115, + "x": -70, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36045,16 +35815,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", + "name": "sand", + "persistentUuid": "2ee3482c-c697-4811-91c8-158d8fedaf86", "width": 70, - "x": 2310, - "y": -210, - "zOrder": 115, + "x": -140, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36065,16 +35835,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", + "name": "sand", + "persistentUuid": "dee244e5-4836-45e3-ab62-a2caf92d167d", "width": 70, - "x": 2240, - "y": -210, - "zOrder": 115, + "x": -140, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36085,16 +35855,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", + "name": "sand", + "persistentUuid": "d71dacc7-4173-482d-9cbf-76aae714c050", "width": 70, - "x": 2170, - "y": -210, - "zOrder": 115, + "x": -70, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36105,12 +35875,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", + "name": "sand", + "persistentUuid": "f785d620-5ee1-49e2-93ee-8db3bc96a1ba", "width": 70, - "x": 3010, - "y": 280, - "zOrder": 115, + "x": 1050, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -36125,12 +35895,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", + "name": "sand", + "persistentUuid": "5a65da36-2606-417d-9c89-bc97712f6de6", "width": 70, - "x": 3010, - "y": 210, - "zOrder": 115, + "x": 1050, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -36145,12 +35915,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", + "name": "sand", + "persistentUuid": "217b60a2-29cf-413d-8483-843424d7923c", "width": 70, - "x": 3010, - "y": 140, - "zOrder": 115, + "x": 700, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -36165,16 +35935,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", + "name": "sand", + "persistentUuid": "fdb93f2f-c58f-4a38-a56c-a91782114d5b", "width": 70, - "x": 3010, - "y": 70, - "zOrder": 115, + "x": 770, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36185,16 +35955,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", + "name": "sand", + "persistentUuid": "1bc4442e-c035-49b6-befe-de5850b5c65b", "width": 70, - "x": 3010, - "y": 560, - "zOrder": 115, + "x": 700, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36205,16 +35975,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", + "name": "sand", + "persistentUuid": "98e0e73d-732b-4c89-bea8-bccf24c50260", "width": 70, - "x": 3010, - "y": 490, - "zOrder": 115, + "x": 770, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36225,16 +35995,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", + "name": "sand", + "persistentUuid": "fc946573-e7b3-47bc-bf9c-3a88df516152", "width": 70, - "x": 3010, - "y": 420, - "zOrder": 115, + "x": 840, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36245,16 +36015,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", + "name": "sand", + "persistentUuid": "82764079-5b47-43c7-9fe4-8547cc2a93ca", "width": 70, - "x": 3010, - "y": 350, - "zOrder": 115, + "x": 910, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36265,36 +36035,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", + "name": "sand", + "persistentUuid": "62258e2f-a743-4623-9801-83e424cdf9fe", "width": 70, - "x": 2940, - "y": 770, - "zOrder": 115, + "x": 840, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -180, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", + "name": "sand", + "persistentUuid": "a2f0f3fe-cd92-4c6d-ae48-f9e8e9d08f4d", "width": 70, - "x": 3010, - "y": 770, - "zOrder": 115, + "x": 910, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 2 } ], "stringProperties": [], @@ -36305,12 +36075,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", + "name": "sand", + "persistentUuid": "76ef79f5-a4a1-4ceb-9ec6-77b94b7cdd34", "width": 70, - "x": 3010, - "y": 700, - "zOrder": 115, + "x": 980, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -36325,16 +36095,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", + "name": "sand", + "persistentUuid": "66db1afc-3032-4ebb-b28d-20cd0ee3481a", "width": 70, - "x": 3010, - "y": 630, - "zOrder": 115, + "x": 980, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36345,16 +36115,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", + "name": "sand", + "persistentUuid": "5894286c-870d-45e6-aaeb-875275e78517", "width": 70, - "x": 2450, - "y": 770, - "zOrder": 115, + "x": 630, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36365,16 +36135,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", + "name": "sand", + "persistentUuid": "ef277cc6-fbd8-450e-bcb5-7b92cde98201", "width": 70, - "x": 2590, - "y": 770, - "zOrder": 115, + "x": 560, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36385,16 +36155,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", + "name": "sand", + "persistentUuid": "9ad26e6b-8e48-460a-a99c-da34439eac07", "width": 70, - "x": 2520, - "y": 770, - "zOrder": 115, + "x": 560, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36405,16 +36175,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", + "name": "sand", + "persistentUuid": "e1c9e3eb-714a-40f7-9c63-4794f6125b13", "width": 70, - "x": 2660, - "y": 770, - "zOrder": 115, + "x": 630, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36425,16 +36195,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", + "name": "sand", + "persistentUuid": "6cd5885e-31c4-4f47-83ef-b4b03e6daab9", "width": 70, - "x": 2730, - "y": 770, - "zOrder": 115, + "x": 1750, + "y": 3080, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36445,16 +36215,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", + "name": "sand", + "persistentUuid": "a480ce00-5937-42bc-8fb6-d54e918660b0", "width": 70, - "x": 2800, - "y": 770, - "zOrder": 115, + "x": 1680, + "y": 3010, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36465,16 +36235,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", + "name": "sand", + "persistentUuid": "e12a51a6-0c17-4cd2-b1e7-6ca891fcf230", "width": 70, - "x": 2870, - "y": 770, - "zOrder": 115, + "x": 1680, + "y": 3080, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36485,16 +36255,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", + "name": "sand", + "persistentUuid": "b58d2948-22b7-44c6-b07f-5c16f6b9d2b1", "width": 70, - "x": 2100, - "y": 770, - "zOrder": 115, + "x": 1750, + "y": 3010, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36505,16 +36275,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", + "name": "sand", + "persistentUuid": "df6e1896-3fb1-471a-b644-4350a6b41c51", "width": 70, - "x": 2170, - "y": 770, - "zOrder": 115, + "x": 1750, + "y": 3150, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36525,16 +36295,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", + "name": "sand", + "persistentUuid": "5216a0cf-1afa-417d-b318-5323c1ad4b28", "width": 70, - "x": 2240, - "y": 770, - "zOrder": 115, + "x": 1680, + "y": 3150, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36545,16 +36315,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", + "name": "sand", + "persistentUuid": "cac65707-2130-46c6-9150-bef4f9c330ae", "width": 70, - "x": 2310, - "y": 770, - "zOrder": 115, + "x": 1750, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36565,16 +36335,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", + "name": "sand", + "persistentUuid": "aa1d9363-4217-493f-9c8f-a13a9e5bfa36", "width": 70, - "x": 2380, - "y": 770, - "zOrder": 115, + "x": 1750, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36585,16 +36355,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", + "name": "sand", + "persistentUuid": "d4e718d2-e3c1-476c-9049-4eb624a01d47", "width": 70, - "x": 2030, - "y": 770, - "zOrder": 115, + "x": 1400, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36605,16 +36375,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", + "name": "sand", + "persistentUuid": "4141e308-5677-4685-ab69-11fa5910b691", "width": 70, - "x": 1680, - "y": 770, - "zOrder": 115, + "x": 1470, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 3 } ], "stringProperties": [], @@ -36625,16 +36395,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", + "name": "sand", + "persistentUuid": "84253ec8-9e27-4c12-8aae-f4c325920ca2", "width": 70, - "x": 1890, - "y": 770, - "zOrder": 115, + "x": 1400, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36645,16 +36415,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", + "name": "sand", + "persistentUuid": "21f4ac88-6b92-4479-8349-285ddede5773", "width": 70, - "x": 1960, - "y": 770, - "zOrder": 115, + "x": 1470, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36665,16 +36435,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", + "name": "sand", + "persistentUuid": "aab3920b-2d81-47d8-9336-10981b8f1624", "width": 70, - "x": 1750, - "y": 770, - "zOrder": 115, + "x": 1540, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -36685,16 +36455,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", + "name": "sand", + "persistentUuid": "c00a7288-6b54-4dfc-a34a-a23a2c2c1e7a", "width": 70, - "x": 1820, - "y": 770, - "zOrder": 115, + "x": 1610, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 2 } ], "stringProperties": [], @@ -36705,36 +36475,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", + "name": "sand", + "persistentUuid": "889ac785-6223-4387-899b-67157d80281e", "width": 70, - "x": 1680, - "y": 140, - "zOrder": 115, + "x": 1540, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", + "name": "sand", + "persistentUuid": "b882bbf4-f210-40d8-9009-25d7aef580c1", "width": 70, - "x": 1680, - "y": 210, - "zOrder": 115, + "x": 1610, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 2 } ], "stringProperties": [], @@ -36745,16 +36515,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", + "name": "sand", + "persistentUuid": "11643d97-345c-405c-b55c-a43bace67833", "width": 70, "x": 1680, - "y": 700, - "zOrder": 115, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36765,36 +36535,36 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", + "name": "sand", + "persistentUuid": "dae9b41d-1a41-4edd-a3c8-79abceee0a46", "width": 70, "x": 1680, - "y": 630, - "zOrder": 115, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", + "name": "sand", + "persistentUuid": "8dddb32f-54e4-4187-b4f8-28f1f2c10020", "width": 70, - "x": 1680, - "y": 490, - "zOrder": 115, + "x": 1330, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 0 + "value": 3 } ], "stringProperties": [], @@ -36805,12 +36575,12 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", + "name": "sand", + "persistentUuid": "5e82e91a-527e-4464-a809-98c5fa27b2e0", "width": 70, - "x": 1680, - "y": -140, - "zOrder": 115, + "x": 1260, + "y": 3220, + "zOrder": 114, "numberProperties": [ { "name": "animation", @@ -36821,20 +36591,20 @@ "initialVariables": [] }, { - "angle": -90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", + "name": "sand", + "persistentUuid": "c9ec91aa-2a8d-4908-baca-4ff267122385", "width": 70, - "x": 1680, - "y": -210, - "zOrder": 115, + "x": 1260, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 4 + "value": 3 } ], "stringProperties": [], @@ -36845,16 +36615,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", + "name": "sand", + "persistentUuid": "e189d7da-d75e-4a7c-8a2b-70d244f0de6e", "width": 70, - "x": 1680, - "y": 0, - "zOrder": 115, + "x": 1330, + "y": 3290, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 2 } ], "stringProperties": [], @@ -36862,19 +36632,19 @@ }, { "angle": 0, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1680, - "y": -70, - "zOrder": 115, + "name": "road_block", + "persistentUuid": "c35bcf53-b789-4163-8995-d72b80c4c806", + "width": 0, + "x": -122, + "y": 3188, + "zOrder": 124, "numberProperties": [ { "name": "animation", - "value": 3 + "value": 1 } ], "stringProperties": [], @@ -36885,212 +36655,207 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", + "name": "trash_movable", + "persistentUuid": "531cda43-5daa-48a2-9b26-6dea1106bd1f", "width": 70, - "x": 1680, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "x": 1890, + "y": 2730, + "zOrder": 1254, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": -180, - "customSize": true, - "height": 70, + "angle": 54, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "ed415228-77d3-436c-847f-b90b6c9520db", + "width": 0, + "x": 140, + "y": 3290, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 5 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -47, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "5df41048-4014-4755-82c5-412eac15d5a4", + "width": 0, + "x": 560, + "y": 3229, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 18, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "637a61c4-0533-45b0-84cb-21e8d85631c8", + "width": 0, + "x": 1190, + "y": 3290, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 28, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "14e6320a-368a-413a-ade1-8bb6fc9ac942", + "width": 0, + "x": 1689, + "y": 3150, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 53, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "7415f961-d4b6-4b0b-acf1-6c1843edf4dc", + "width": 0, + "x": 2109, + "y": 2901, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 9 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -26, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "b7c52dee-dcfa-4864-a3fb-2e6a098e1754", + "width": 0, + "x": 2520, + "y": 2940, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -38, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "ca0a8b2e-569e-4146-86b7-9d350f89d8ee", + "width": 0, + "x": 2870, + "y": 2879, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -107, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "cd023872-90a4-4c72-b921-3763b8e7078e", + "width": 0, + "x": 3010, + "y": 2730, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 20, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "9acc6143-5f47-47df-9ebd-dd14d974ad5e", + "width": 0, + "x": 2957, + "y": 2450, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 10 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 134, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2240, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "6a6266c7-7c08-43e9-9b1a-2e564d003738", + "width": 0, + "x": 3010, + "y": 2030, + "zOrder": 1255, "numberProperties": [ { "name": "animation", @@ -37101,16 +36866,16 @@ "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 68, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "52ce10ae-e9fa-4b28-b900-a3ee6d4f5d7c", + "width": 0, + "x": 2969, + "y": 1610, + "zOrder": 1255, "numberProperties": [ { "name": "animation", @@ -37121,20 +36886,20 @@ "initialVariables": [] }, { - "angle": 0, - "customSize": true, + "angle": -58, + "customSize": false, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", + "name": "trash_movable", + "persistentUuid": "ec4a4612-c1fb-40c5-8b9d-816e781460bf", "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 115, + "x": 3010, + "y": 1120, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 10 } ], "stringProperties": [], @@ -37145,16 +36910,16 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", + "name": "sand", + "persistentUuid": "89cc239b-3682-42b7-852e-1567691db2e3", "width": 70, - "x": 2030, - "y": 1680, - "zOrder": 115, + "x": 3080, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -37165,52 +36930,52 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", + "name": "sand", + "persistentUuid": "dc720b0a-4873-4073-a02f-43c60047fff0", "width": 70, - "x": 1890, - "y": 1680, - "zOrder": 115, + "x": 3150, + "y": 910, + "zOrder": 114, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -112, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1960, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "dcd05f20-59a6-4ab4-b3c8-d540a3979301", + "width": 0, + "x": 3150, + "y": 630, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -118, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1750, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "487647e1-3ee7-4b30-b24b-3307608b22f8", + "width": 0, + "x": 3096, + "y": 210, + "zOrder": 1236, "numberProperties": [ { "name": "animation", @@ -37221,20 +36986,20 @@ "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": -60, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1820, - "y": 1680, - "zOrder": 115, + "name": "trash_movable", + "persistentUuid": "7f101c6e-eb6c-4b96-a4b9-6c6e23592c43", + "width": 0, + "x": 3150, + "y": -140, + "zOrder": 1255, "numberProperties": [ { "name": "animation", - "value": 1 + "value": 3 } ], "stringProperties": [], @@ -37243,80 +37008,66 @@ { "angle": 0, "customSize": true, - "height": 70, + "height": 770, "layer": "", - "name": "Fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "locked": true, + "name": "grass_tiled", + "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", + "sealed": true, + "width": 1540, + "x": 1680, + "y": 1120, + "zOrder": 2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 350, "layer": "", - "name": "Fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "locked": true, + "name": "grass_tiled", + "persistentUuid": "baf5ced5-a3dd-423c-bff1-e4ab4a316c63", + "sealed": true, + "width": 2100, + "x": -140, + "y": 3150, + "zOrder": 2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 1750, "layer": "", - "name": "Fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "locked": true, + "name": "grass_tiled", + "persistentUuid": "aba688b4-8fa1-4ea4-86d2-c130686bbad3", + "sealed": true, + "width": 2030, + "x": -1120, + "y": -490, + "zOrder": 2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 280, "layer": "", - "name": "Fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2870, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "name": "grass_tiled", + "persistentUuid": "ecbfecde-16b0-4863-8299-8a2fb59fb93a", + "width": 140, + "x": -1260, + "y": -490, + "zOrder": 1256, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -37325,15879 +37076,390 @@ "customSize": true, "height": 70, "layer": "", - "name": "Fences", - "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", - "width": 70, - "x": 2870, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "name": "grass_tiled", + "persistentUuid": "102f5637-9e1a-443d-a42d-aa0c73fb3177", + "width": 2450, + "x": 910, + "y": -490, + "zOrder": 1257, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 280, "layer": "", - "name": "Fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "name": "grass_tiled", + "persistentUuid": "d7469110-1aac-4cab-b910-0c060b0abce0", + "width": 140, + "x": -2730, + "y": 3360, + "zOrder": 1258, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 140, "layer": "", - "name": "Fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "name": "grass_tiled", + "persistentUuid": "41374744-530b-4bcf-82f3-f7dda8530f63", + "width": 140, + "x": -280, + "y": 3360, + "zOrder": 1259, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, - "customSize": true, - "height": 70, + "angle": 90, + "customSize": false, + "height": 0, "layer": "", - "name": "Fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "name": "road_block", + "persistentUuid": "4244cce5-d7c9-4b94-9c12-a8bf726dc0a8", + "width": 0, + "x": -3234, + "y": 3810, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "01638110-3d70-42e3-8611-9ce8ea7c4f2d", + "width": 0, + "x": -3232, + "y": 3672, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "depth": 1, + "height": 3990, "layer": "", - "name": "Fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", + "name": "road_1", + "persistentUuid": "e583ab96-139f-4b62-945d-1665d25abd31", "width": 70, - "x": 2870, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "x": -3500, + "y": 3640, + "zOrder": 6, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 0, + "angle": 180, "customSize": true, - "height": 70, + "depth": 1, + "height": 3990, "layer": "", - "name": "Fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", + "name": "road_1", + "persistentUuid": "962bf66c-4701-4b9b-acc3-8c2d1a932210", "width": 70, - "x": 2870, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], + "x": -2940, + "y": 3640, + "zOrder": 6, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 3990, "layer": "", - "name": "Fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", + "name": "road_2", + "persistentUuid": "a549ac99-8158-4b76-928a-56a418b49cd3", "width": 70, - "x": 2870, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7fa497d3-5121-4e0b-84b6-4e12c1c44d66", - "width": 70, - "x": 2870, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9a771218-d4ea-406d-b2dd-fd7351bc23ea", - "width": 70, - "x": 2870, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2dbca21b-5e6b-4d4d-8976-aaea8703eeb3", - "width": 70, - "x": 1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "703fdde6-2050-4fa4-856e-b85284f6996e", - "width": 70, - "x": 1680, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1478f30b-7503-461e-9ea5-9decf73fcf4c", - "width": 70, - "x": 1680, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "da452c08-2e23-44dd-8b98-e5aa754e47c7", - "width": 70, - "x": 1680, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ddd9a7ed-4293-43b7-8543-1de0cbbce567", - "width": 70, - "x": 1680, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cf9eb196-e355-47a8-b46f-746d74a1b86e", - "width": 70, - "x": 1680, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "18c5aa67-40c3-41ab-b783-21df9b0c7050", - "width": 70, - "x": 1680, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "438d72bd-c8a0-46f4-bb07-856674079261", - "width": 70, - "x": 1680, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27ef65da-eded-43f3-94b5-10d769e8a421", - "width": 70, - "x": 1680, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4ec95727-e908-4bd3-b387-7a088f2d76a4", - "width": 70, - "x": 1680, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cbf61d9-aea5-415a-8da6-f92a294e7cfe", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7ee0dec-cf16-46e3-8bb2-5d591daf98ee", - "width": 70, - "x": 2800, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99b61099-fe13-4aad-91e5-2ed17e72d818", - "width": 70, - "x": 2800, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "23216464-7ed5-4691-bd64-270041c71bc6", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d2e2a94-4d96-4dd8-9326-3d19c3b8abf8", - "width": 70, - "x": 2870, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b87579eb-3594-46c9-9041-f57d35f3d467", - "width": 70, - "x": 2800, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d1c96981-5b9c-45fd-85ef-d6e6f688fcdd", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f770ae38-6cf1-43c1-9dd3-e05ddbf08b99", - "width": 70, - "x": 2800, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad53adb5-864b-4135-950a-e1d5d9d7cf85", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b82a114-f3c3-4740-a8f7-b48cfa5c5d99", - "width": 70, - "x": 2800, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6da719ce-c1d0-4b01-aa52-e3b5546a4d62", - "width": 70, - "x": 2870, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e2279d2-6918-4ed7-8240-848e3c8c78f7", - "width": 70, - "x": 2800, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f64611c-bcf8-4cfe-b9bc-4e47b67a2488", - "width": 70, - "x": 2800, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e88c98ac-7951-4aa3-9e31-f9b2b05407cf", - "width": 70, - "x": 2870, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "486c386a-059a-4fe7-8314-d619895e9b80", - "width": 70, - "x": 2800, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ed4d93ac-142c-4e1d-8ae7-2b5612d8e95f", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3f7a230-60cf-4c83-97b1-79d91c9d485c", - "width": 70, - "x": 2800, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd4e7a23-eb7e-4593-a9c2-b0834d17822f", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8e3e0e68-07ed-45a2-97a0-bdd25501621e", - "width": 70, - "x": 2800, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "752f28bb-6b1a-4686-abba-2e883c0bebb0", - "width": 70, - "x": 2870, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "481c8e7f-3737-4447-a44b-0e923d0a4c08", - "width": 70, - "x": 2800, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4f45a42-eea2-4805-b077-1043b118d1f4", - "width": 70, - "x": 2870, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "910e5a86-7a57-46ff-a5ce-bdd42a094b3a", - "width": 70, - "x": 1680, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c898e9b-2202-4950-a5b6-cdb31db630c8", - "width": 70, - "x": 1750, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d88c9e5-94b3-4239-8489-8ef27a11dc50", - "width": 70, - "x": 1750, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15598824-aa7b-407c-bb2c-cee76aaa7782", - "width": 70, - "x": 1680, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65b69922-ed59-4e10-ae2c-10bfceb0eaf1", - "width": 70, - "x": 1890, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0ff9cf6-97fa-41f2-bb18-18861c2b9dfb", - "width": 70, - "x": 2030, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db4bd46e-8dee-461f-bc19-0fa9a03bb795", - "width": 70, - "x": 1890, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "daf91861-b6ba-4e1e-a176-748bb2dd6a52", - "width": 70, - "x": 2030, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2fccca62-a84e-472b-b954-9bee063c2a6f", - "width": 70, - "x": 2030, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2d28a9d-d10e-416d-95c6-4163c2b215dc", - "width": 70, - "x": 1890, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e019c3c-e3e2-4c16-b9a3-a702a96d7854", - "width": 70, - "x": 1750, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4350553f-34e9-45b0-8b96-fcf672aa2158", - "width": 70, - "x": 1680, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aac11c90-9d76-4193-9c07-10ab73620297", - "width": 70, - "x": 1680, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6078343a-d421-474a-ba9d-678bfe5a4ffb", - "width": 70, - "x": 1960, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54cde620-fdbf-4813-8cc9-2751218fcd99", - "width": 70, - "x": 1960, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bf0f90f0-dc77-4bcc-8daa-7338d7c64c4c", - "width": 70, - "x": 1960, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "908e2f99-6c21-4866-b8df-9538ea5a54ae", - "width": 70, - "x": 1680, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80c4ec29-d6d0-4444-b171-61da6af6bf57", - "width": 70, - "x": 1750, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0aedcf97-4e4d-468f-aa54-be942a0a50fc", - "width": 70, - "x": 1750, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c01178c1-8011-40f4-be7e-595009c44079", - "width": 70, - "x": 1680, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78e44b3b-923a-4295-903c-8d8be5f0c4fe", - "width": 70, - "x": 1890, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "43f98d3c-40d2-4723-9f4c-12e9c9b80931", - "width": 70, - "x": 1820, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80eec100-7df4-4d9a-9149-313f0085fa22", - "width": 70, - "x": 1890, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17ed8a8c-db68-4a98-84e5-d592fcaa0fae", - "width": 70, - "x": 1820, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d932241a-c80f-4a4c-b6f9-0c7a763853f0", - "width": 70, - "x": 1820, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87ed1e5a-bee9-4fc1-ba2b-3831947cdfed", - "width": 70, - "x": 1890, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ccddc433-ad8e-47da-8334-0b9a59548864", - "width": 70, - "x": 1750, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d2c37fbe-65f3-471a-951c-065ad365cb43", - "width": 70, - "x": 1680, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a5f9c46-3001-4f1b-8dcd-97221fd0409d", - "width": 70, - "x": 1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "537e6e1b-6aed-4759-923e-5b2b9ab669df", - "width": 70, - "x": 1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "10766b48-f334-4f00-9633-67a6cd56361b", - "width": 70, - "x": 1960, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "29692a65-4d8c-43cc-b44a-240bcb386887", - "width": 70, - "x": 1680, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc7ed33c-3579-4f06-b47a-b1472d7e6aed", - "width": 70, - "x": 2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d7437d18-8a09-4bd7-a9f8-772d863d9809", - "width": 70, - "x": 2030, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef05e03a-c4bc-43bb-b9c4-10756d148a00", - "width": 70, - "x": 2030, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -23, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "35369171-dcf7-4add-919a-c77646405910", - "width": 140, - "x": 2916, - "y": 51, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "08268a92-32f8-43da-a699-95806c75b214", - "width": 140, - "x": 2926, - "y": 295, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "89edcecc-0111-4d07-b7dc-cd4e5c4c1943", - "width": 140, - "x": 2914, - "y": 515, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -81, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "3721e960-fc06-4ba7-89ca-d4c77402b696", - "width": 140, - "x": 2929, - "y": 712, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "081fc014-41e5-4cdf-908d-f642704a7c65", - "width": 140, - "x": 2926, - "y": -81, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -27, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "72b4108f-25e7-4de8-bed5-d77c85a9dd58", - "width": 140, - "x": 2774, - "y": -91, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 38, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "80b69df7-87de-4c9e-9378-6705e93a9dd0", - "width": 140, - "x": 2560, - "y": -97, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": false, - "height": 350, - "layer": "", - "name": "roofTops", - "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", - "width": 420, - "x": 815, - "y": 2080, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 770, - "layer": "", - "name": "roofTops", - "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", - "width": 770, - "x": -20, - "y": 1960, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", - "width": 70, - "x": 700, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f03cd06d-d1e8-40a7-be2e-f711eada215b", - "width": 70, - "x": 840, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4c4520ac-dcc7-46fc-9a06-d2f0f53d7b4c", - "width": 70, - "x": 770, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "db19dc14-1100-4578-a295-c698ec22f654", - "width": 70, - "x": 910, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a744f5d3-ad1b-4834-bcf0-a373a2aa47d3", - "width": 70, - "x": 980, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "df28d3f4-1b4a-4456-bdff-106006d1949d", - "width": 70, - "x": 1050, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ffa6d047-cf0c-4235-a922-5e840460bf66", - "width": 70, - "x": 1120, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d7c9abdd-33b9-4c21-9db1-5a241036e7d4", - "width": 70, - "x": 350, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8a3acc38-b2fb-4af6-bcb8-4cff087b89a2", - "width": 70, - "x": 420, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "535b6aea-b142-4dfc-ab34-7b70067f8ebc", - "width": 70, - "x": 490, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b2c87575-c14b-4f69-8043-c74e4988a5d6", - "width": 70, - "x": 560, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "51ce2a94-fccf-434a-a35e-db676fa2cf9b", - "width": 70, - "x": 630, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1f6240f8-353e-45a2-b4c1-0327c4a1c0a0", - "width": 70, - "x": 280, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "75e8953f-a21a-4e82-9a7e-3bf0703efbe0", - "width": 70, - "x": 140, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "664c2efb-60b0-4c55-9f50-c2a0aa2e6f06", - "width": 70, - "x": 210, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c7173c46-3789-49f8-8fe8-f66b78aedb3c", - "width": 70, - "x": 70, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "758827aa-6243-4d66-bd23-0f33d8e83444", - "width": 70, - "x": 0, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4ee0c84f-f0c2-4532-a197-808f7e994298", - "width": 70, - "x": 1680, - "y": 2380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fee1dd8d-c255-4958-81eb-34ed9cc976d4", - "width": 70, - "x": 1680, - "y": 2310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dbcfe7c0-5ba0-4435-9139-df2b5ffeac6b", - "width": 70, - "x": 1680, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ea82cddb-ac13-4c1d-8285-58e07a9dd129", - "width": 70, - "x": 1680, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "138a6def-b202-4c3f-8457-26f694ffe0b8", - "width": 70, - "x": 1680, - "y": 2660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c9249796-de6c-444c-9633-c0c036e74644", - "width": 70, - "x": 1680, - "y": 2590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5689059c-8816-4f90-ad45-e4b87ecae9fe", - "width": 70, - "x": 1680, - "y": 2520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ec8edcc8-0b1b-460c-b89e-e05ba1463374", - "width": 70, - "x": 1680, - "y": 2450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "26c03c8d-60af-4858-8c38-1cdd099ce62b", - "width": 70, - "x": 1610, - "y": 2940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a66054ae-0246-4618-ac82-4ee578692086", - "width": 70, - "x": 1610, - "y": 2870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "074bf4ff-bf6c-429d-9c31-387ee9f83395", - "width": 70, - "x": 1680, - "y": 2730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "003cd580-aade-47c1-a2df-db399e302c27", - "width": 70, - "x": 1610, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3bfa7108-442c-41a0-af7e-86dcaf05b69c", - "width": 70, - "x": 1610, - "y": 3080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "db39049c-ff66-48e2-a98b-e5246c9bab2b", - "width": 70, - "x": 1610, - "y": 3010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2b457b59-a8c3-462a-9b3d-1ab0acffd720", - "width": 70, - "x": 1190, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "60287c70-e7c0-4b3b-9874-dbe61be12c06", - "width": 70, - "x": 1260, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2e56e3f5-b9e0-4f4e-b179-cb51a85003b6", - "width": 70, - "x": 1330, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a14bbb22-3457-42e4-8151-6d478cfc36ba", - "width": 70, - "x": 1400, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6a28a485-b5d6-419d-81c2-e2ed69cfb0df", - "width": 70, - "x": 1470, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c17a0093-b97c-47aa-a638-9fbb0f4cab15", - "width": 70, - "x": 1540, - "y": 3150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "747cb77b-f5c4-4ff8-ad53-c842d40f3abf", - "width": 70, - "x": 0, - "y": 2380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e4ccf47e-8584-4ffc-9df3-3b9218f3a566", - "width": 70, - "x": 0, - "y": 2310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45bcee2b-7b28-4117-887a-038572e454e9", - "width": 70, - "x": 0, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6dc8fa62-6545-4293-8fb5-5c360836d5b2", - "width": 70, - "x": 0, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd979be9-1dd6-461d-b490-60e608ff3aee", - "width": 70, - "x": 0, - "y": 2660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ba972223-5331-48f4-87a7-4076ede13dc9", - "width": 70, - "x": 0, - "y": 2590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "35a53d64-17b0-4726-a956-5b565492b321", - "width": 70, - "x": 0, - "y": 2520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5ae70e97-c405-46ea-aae5-7f504698f6cc", - "width": 70, - "x": 0, - "y": 2450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "98e19e2b-7048-4adc-9633-91e95182b93d", - "width": 70, - "x": 0, - "y": 2940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "de084cd6-25bc-45f0-9fbc-b4bf80f72dda", - "width": 70, - "x": 0, - "y": 2870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1bccf72a-3a8a-4f48-b4b8-5415cb79826c", - "width": 70, - "x": 0, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9898dcb0-d207-4f3a-bbbc-c2dd89f66586", - "width": 70, - "x": 0, - "y": 2730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "829c963f-15e1-4ac1-add3-da88cc2cad2e", - "width": 70, - "x": 0, - "y": 3080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3f29cf5d-8a39-4a50-8ff9-3ce5069a0513", - "width": 70, - "x": 0, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "269cb788-212d-4b6d-a564-9c1b13d3e877", - "width": 70, - "x": 1610, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "26d4094a-25a1-4c0d-aa06-dade9878b5a1", - "width": 70, - "x": 630, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a988f5ea-f8e0-45f5-9544-4e14f5ccfd7b", - "width": 70, - "x": 770, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e08c5d0c-1826-488f-9b64-dd31703fdf3d", - "width": 70, - "x": 700, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "88e6dfd1-a4b1-44b5-a0d3-642da1455ec9", - "width": 70, - "x": 840, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2e6f2410-f832-4631-85a0-07d6eeb4e464", - "width": 70, - "x": 910, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "460977dc-3446-44db-ab0f-0d223866b051", - "width": 70, - "x": 980, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7608ee28-9760-490c-8d94-f94fad504325", - "width": 70, - "x": 1050, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "da5cdf80-61b2-4ffd-94e3-61c86760f39c", - "width": 70, - "x": 210, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "011b9989-045d-4a30-9cfe-b01abd000d82", - "width": 70, - "x": 280, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "379a55a7-ea5c-4836-a9e9-0874d09f08ff", - "width": 70, - "x": 350, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0dbf86dc-38c8-45a7-8330-ace138b4edb8", - "width": 70, - "x": 140, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3c714d1a-036c-4606-ae34-b828eb71fd63", - "width": 70, - "x": 70, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56adb359-6c0d-4cac-a58f-e27cd140e27f", - "width": 70, - "x": 1120, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5c2206fd-4293-4567-94f7-fe5cd158125e", - "width": 70, - "x": 1680, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "659684c4-2f45-46b0-a21a-a06fc3a9760e", - "width": 70, - "x": 1680, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3c363a86-8994-4bd7-9b60-0e0bb1a310d6", - "width": 70, - "x": 1470, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f6c107b1-1f6a-4db1-896f-15f0b574fefa", - "width": 70, - "x": 1540, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f9835191-ac46-4d0e-aff6-2b3eb6688515", - "width": 70, - "x": 1610, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f4fc9e52-7596-4aaa-8ad0-4987f7d1b592", - "width": 70, - "x": 1330, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a97989da-7671-4fa1-9216-a619c494f7ec", - "width": 70, - "x": 1400, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a8333718-b610-4507-a25a-af6f50753590", - "width": 70, - "x": 1260, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "41d98456-46f2-47e1-822a-de6fc87fa557", - "width": 70, - "x": 1190, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "205dc4d3-73ec-4b35-b062-d607744dea6b", - "width": 70, - "x": 490, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc345a7f-bbe1-4e1c-a410-ffa7c9e7c587", - "width": 70, - "x": 560, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb435e2a-9547-4353-90bb-6dc674fae5d6", - "width": 70, - "x": 420, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c737963-9284-4c4a-a5bd-ecbc42b6aa8e", - "width": 70, - "x": 420, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ac48281-b081-4d55-abd7-59a796ca929c", - "width": 70, - "x": 420, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d2bab83f-0b21-4147-9f64-aabc02f2f60c", - "width": 70, - "x": 490, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "686a085e-73b5-4e46-ac2f-f25118bc27ae", - "width": 70, - "x": 560, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92b36048-1921-433c-a106-c75de40dff81", - "width": 70, - "x": 490, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56ef937d-e997-48ec-88a2-04444dd08508", - "width": 70, - "x": 560, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7432bde4-6b7d-4c9b-9346-e18782fa953a", - "width": 70, - "x": 630, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9aec6bad-e750-4e42-8d5e-76abf5ec3844", - "width": 70, - "x": 840, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "219265f3-dd0c-412c-94dc-e667cdf58341", - "width": 70, - "x": 770, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61ae6366-39d3-48f8-baf1-77dc2151e5ac", - "width": 70, - "x": 700, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87578644-b4fb-4108-a395-7fc48e5293fe", - "width": 70, - "x": 630, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20403a3a-bfb7-4282-a534-4ba54a4142ea", - "width": 70, - "x": 700, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a30cd11c-0cbe-4cec-b716-83e095303b98", - "width": 70, - "x": 770, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3231895-c246-4063-8d76-de2968df7132", - "width": 70, - "x": 980, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "662cab6c-3f75-4c95-a5e5-ff8351682c43", - "width": 70, - "x": 980, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f9a478d-dc4f-44cd-b402-5bd3bcfb75a5", - "width": 70, - "x": 840, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abfda71c-02cf-4acf-8427-f0f42ed47574", - "width": 70, - "x": 980, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a22d3727-b966-4b47-af99-92ffb3eab656", - "width": 70, - "x": 910, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea9c2ccd-116d-4dd4-a10e-50e3cf70c7b8", - "width": 70, - "x": 910, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcac54e4-f5f1-4fb3-8353-77f0b7778b75", - "width": 70, - "x": 910, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "192b3569-e9b9-43d5-998b-c37e2c81bd71", - "width": 70, - "x": 980, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d7019eb-7659-4e1c-90c7-55654867e06e", - "width": 70, - "x": 910, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c519c90-6114-4b71-bf2f-a57d09fa1234", - "width": 70, - "x": 980, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e673ff3-b8a7-4f50-8f2c-4ec3be3b006b", - "width": 70, - "x": 980, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e614d0c7-27f2-4975-ba8a-ae6ca166d59b", - "width": 70, - "x": 910, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65b9f9bf-f73a-407d-8cbc-e3a13dc53144", - "width": 70, - "x": 910, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c55ca6a1-004d-41b1-9bb3-d315777ba5c8", - "width": 70, - "x": 910, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "915b7bc4-d865-4d44-b00b-491c4b2d2b2b", - "width": 70, - "x": 980, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f808326e-021a-4cd5-a68f-713be215bb49", - "width": 70, - "x": 1050, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90ff0c58-7ec7-4da3-a774-e007ef5efd5d", - "width": 70, - "x": 1050, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd9243de-317f-407a-afc2-796a1a192af0", - "width": 70, - "x": 980, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9051282c-ce48-4fb4-924d-afb4945ac327", - "width": 70, - "x": 1050, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6f9e88f-caed-4be8-806a-8441460cec6d", - "width": 70, - "x": 1050, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f6c990a2-0436-4d92-b105-0dfb6e660076", - "width": 70, - "x": 980, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5893099-8900-4299-a738-b7fce3298011", - "width": 70, - "x": 980, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dcbbbc72-6b09-477d-ada4-3b130255c0f4", - "width": 70, - "x": 910, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7a73874-e9a8-4894-845b-15cb120a4b44", - "width": 70, - "x": 980, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2af6665f-5dd6-4adc-99b8-d2d15ebdfef6", - "width": 70, - "x": 910, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18013dbe-d7fd-4c7e-b2d0-281a873c9a59", - "width": 70, - "x": 910, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4845f030-1aa1-4ea0-afaf-f8c1deb102f7", - "width": 70, - "x": 910, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -81, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "22b61d57-1050-4978-b611-5fccc197aeca", - "width": 140, - "x": 630, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 14, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "77cb1f9e-6bef-46b0-8bdb-70aa4ca296a3", - "width": 140, - "x": 350, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "5f863ce2-76d6-4612-8531-0e72e902ace3", - "width": 140, - "x": 126, - "y": 3141, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -81, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "5533b630-7b6b-488a-b46c-8468b856197e", - "width": 140, - "x": 1190, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "441ed61f-1265-4c65-aa86-8c5c89d6227b", - "width": 140, - "x": 910, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "e3a27c7a-f704-47e5-ac7c-2cf75d4b55a8", - "width": 140, - "x": 1470, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "46116a74-c82b-489a-8722-14e8fc84c6cc", - "width": 140, - "x": 1584, - "y": 2125, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "659e0f50-c913-4b0e-b434-17a61be34adb", - "width": 140, - "x": 1304, - "y": 2125, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "45d62f23-766f-4d53-83e0-679075519a57", - "width": 140, - "x": 126, - "y": 2185, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e7271123-185b-4768-8c90-5c0941efa8a6", - "width": 70, - "x": 2380, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c1a4d02e-52a4-432e-b3f9-73bdd865f5e9", - "width": 70, - "x": 2520, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e7c9af17-d2d9-401c-82e1-25a4fe11322f", - "width": 70, - "x": 2450, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2716921d-3646-460b-a3a3-94aac43e3bf9", - "width": 70, - "x": 2590, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9370535f-d80e-431a-9581-de61f2017ed6", - "width": 70, - "x": 2030, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "19dcd4a6-3f64-4558-a745-6af2aba38268", - "width": 70, - "x": 2100, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "20689c2c-5670-485e-a31e-c7009ed56f56", - "width": 70, - "x": 2170, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dbff8b92-147e-412f-9187-347ed57b66e5", - "width": 70, - "x": 2240, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2dfd74b5-524b-4452-9b4a-f952f492bf96", - "width": 70, - "x": 2310, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "bb1e818d-553b-455f-aa66-6f128f7012bb", - "width": 70, - "x": 1960, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9b83ddba-24b5-4848-9e28-6d379bccb56f", - "width": 70, - "x": 1820, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "84e2b3f6-cd43-40a7-a4fe-cd492d3e214b", - "width": 70, - "x": 1890, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0ddb1721-e496-4021-ad68-fa1c978e9d6a", - "width": 70, - "x": 1750, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ba9b2e79-f806-4a17-9dc5-bc151b2d68f1", - "width": 70, - "x": 2870, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "49b551a4-aca8-49dc-b092-d9ca7987b587", - "width": 70, - "x": 2660, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d5cb869c-bc86-4f9c-9378-9ac312629f91", - "width": 70, - "x": 2730, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "806686c5-3bec-4691-a9b1-4fbbd64f7ee0", - "width": 70, - "x": 2800, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e8bd910e-23b4-43c5-bd6f-e17a517d8d05", - "width": 70, - "x": 2870, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cd0f45fc-6abc-40fd-a70c-020e28e6d63b", - "width": 70, - "x": 2870, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "08ef7399-dece-40ff-837e-252019150802", - "width": 70, - "x": 2870, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7d6c1c9f-0b96-4eca-818d-952f81cb9465", - "width": 70, - "x": 2870, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45108584-2f3b-4bab-995b-062ad59ff9ea", - "width": 70, - "x": 2870, - "y": 2450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "33511547-f08c-4d9c-b362-d5823875e180", - "width": 70, - "x": 2870, - "y": 2380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5af4c433-0333-47fd-a7d7-0e89bbbd3a84", - "width": 70, - "x": 2870, - "y": 2310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b625785-9d13-4097-9214-cda61ec683ce", - "width": 70, - "x": 2870, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8250ee98-d602-4797-8cef-19ee3c240e5b", - "width": 70, - "x": 2870, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "725eb193-5c27-4486-b8a3-2e2cfb574324", - "width": 70, - "x": 2870, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6e5b1020-08a2-431e-b384-ffe5e2a00704", - "width": 70, - "x": 2870, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "04e3986e-c400-4087-8328-ce90c7d6110b", - "width": 70, - "x": 2870, - "y": 2660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ea44194f-7c82-4055-b779-69b3641adfc8", - "width": 70, - "x": 2870, - "y": 2590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "168bbb2f-a430-4eb8-a6cc-18ab0f61476c", - "width": 70, - "x": 2870, - "y": 2520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "47e24764-d82b-4fdb-8b77-e1553ac0bdee", - "width": 70, - "x": 2870, - "y": 2730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5e61d5be-f3d6-4120-8870-ce819be954a0", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", - "width": 70, - "x": 1680, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "f74087e8-5bf5-4c62-bb50-5af0fc20d391", - "width": 0, - "x": 1610, - "y": 1803, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "d7d6258f-c239-4446-8764-f6081976ac1e", - "width": 0, - "x": 1610, - "y": 1944, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9ee9ff4b-f297-4f7a-8d3d-476284497305", - "width": 70, - "x": 3080, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b1797207-5739-4c89-b2ab-702d203e1709", - "width": 70, - "x": 3150, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "158adeed-3ba0-4bc2-8856-0bdf22b17436", - "width": 70, - "x": 3080, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a418c1ba-d731-459c-9457-04262d6d5689", - "width": 70, - "x": 3150, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "67b552a9-57f5-4f66-8e98-3b460ecaa71a", - "width": 70, - "x": 3080, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "183695d6-ef91-4790-bca6-96c89829f9cf", - "width": 70, - "x": 3150, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9b42062f-9087-4f70-ab84-dc5dbe943006", - "width": 70, - "x": 3080, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4ab624d-c44c-44a3-bd83-633bb0a0fdd4", - "width": 70, - "x": 3150, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30b22fdc-d3e2-4edd-b482-1f80a03b5d06", - "width": 70, - "x": 3080, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "157c2b49-faa6-4983-8d9b-dd4d2e176ddf", - "width": 70, - "x": 3150, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62b12e31-88ec-42ad-9304-7796f48b87a9", - "width": 70, - "x": 3080, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "23288e1a-8b18-4682-b34b-d263a7ee3712", - "width": 70, - "x": 3150, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9ea4fb8a-37c8-4cae-bcc4-e987ff99f482", - "width": 70, - "x": 3080, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba79ea26-1b9c-4d76-8278-9addd200fc89", - "width": 70, - "x": 3150, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec3bedcb-b9b5-488a-ba16-69aef4dd0161", - "width": 70, - "x": 3080, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56b2845b-5c41-4604-9aee-19c320439dc5", - "width": 70, - "x": 3150, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3687e612-ed9b-42fd-b4b0-e4a6c646dc82", - "width": 70, - "x": 3080, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d19bf4a8-93e7-4635-831d-c23781e93f40", - "width": 70, - "x": 3150, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d890ec14-b9f7-45f4-b4d0-3f4b6de24762", - "width": 70, - "x": 3080, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2ac599b3-9b5d-4f47-82da-4939ed18bf83", - "width": 70, - "x": 3150, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "52bc591b-f4fc-4874-9be4-223e798e5a6e", - "width": 70, - "x": 3080, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4f0e8cf8-e767-4498-a355-2cd175f4ee6c", - "width": 70, - "x": 3150, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3084472c-b931-41d5-b91e-66acfc98004e", - "width": 70, - "x": 3080, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "767725d5-371b-4711-baa3-3033fd815572", - "width": 70, - "x": 3150, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d8ac935a-3722-4f46-9bbe-0aa1e878ccae", - "width": 70, - "x": 3080, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64ee35de-601a-4bbf-b297-de0218e7ab68", - "width": 70, - "x": 3150, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f3f5f40-951f-4c03-9a4f-7d3466db3a1d", - "width": 70, - "x": 3080, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "638af857-4eea-4d48-92e4-3204c9f66ed1", - "width": 70, - "x": 3150, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0ff9a0d-aa62-43b6-8ed3-352b3be155b2", - "width": 70, - "x": 3080, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "997b15a5-b19b-48cf-a6b8-6eaa1a4d98bf", - "width": 70, - "x": 3150, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dd9b33e2-87cf-4184-93c2-94825eef0123", - "width": 70, - "x": 3080, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "70c5fd24-219a-495e-8391-12bab4bb850b", - "width": 70, - "x": 3150, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a6ff9cf-82e6-4a70-a526-a8728043c7cd", - "width": 70, - "x": 3080, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f69c92c1-2a84-498c-8602-d61261815df8", - "width": 70, - "x": 3150, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3749f72-eece-4648-a292-abf23c4074d9", - "width": 70, - "x": 3080, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ed7f0166-abfa-4191-8fa9-a46239161233", - "width": 70, - "x": 3150, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f6ce4fc5-1d99-4396-9db7-2805a43325e7", - "width": 70, - "x": 2940, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1eca040b-661e-4c96-9c48-dca32183af01", - "width": 70, - "x": 3010, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9db1c70-e25e-4a75-99b8-2762435e763a", - "width": 70, - "x": 2940, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "809f91d5-5183-4b05-8d04-499e7919e175", - "width": 70, - "x": 3010, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cbcde2a9-9eaf-4f39-9a7a-9af9e5cea827", - "width": 70, - "x": 2940, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08cdcb23-b132-46c0-ad9a-5e27133b8d4d", - "width": 70, - "x": 3010, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f57eb58-b056-4617-91b0-b8a632cc51ee", - "width": 70, - "x": 2940, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ef6e2ab-1447-4643-bd22-fd07dba62b43", - "width": 70, - "x": 3010, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2bb31941-fd71-4456-a6d8-0de4f61966b4", - "width": 70, - "x": 2940, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "948a38d7-6bf1-440b-a47f-bcd9b6cf4abe", - "width": 70, - "x": 3010, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5f5059e3-36db-4da9-9832-c2c7ad227fe9", - "width": 70, - "x": 2940, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f01ab895-b3d0-4a8b-9d84-25b857346fe3", - "width": 70, - "x": 3010, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ada0399d-8fef-41ba-9a72-965f9b8f105c", - "width": 70, - "x": 2940, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f5f227f-b2fc-4802-b5ea-394300131322", - "width": 70, - "x": 3010, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ce903dc-bb50-4385-b863-48f707b6db90", - "width": 70, - "x": 2940, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9d825cb0-f0cb-48e5-93b5-98368f03721a", - "width": 70, - "x": 3010, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a5bab17-92b6-4dba-b8c7-492b59fa8fdf", - "width": 70, - "x": 2940, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64fb44af-3bd8-48b8-bb9a-29c0db1805c3", - "width": 70, - "x": 3010, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c54ef18d-e742-41ec-a857-84b36c063902", - "width": 70, - "x": 2940, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48a399cb-b611-4b5a-99b6-74b831296cbf", - "width": 70, - "x": 3010, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e3fb31c9-43ab-490b-9b23-b60b90a5a6be", - "width": 70, - "x": 2940, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79ed71d9-b6da-4355-b4d1-b602aa1bd270", - "width": 70, - "x": 3010, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cbd98a1-dac4-4fdd-bc86-8ef1fc716369", - "width": 70, - "x": 2940, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b949e377-dde1-4ae6-87b9-eb2a6e89b904", - "width": 70, - "x": 3010, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "735701af-2741-4745-9790-63a267ee828e", - "width": 70, - "x": 2940, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "190e7e9c-a4df-440c-bf74-55d70211e524", - "width": 70, - "x": 3010, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b79ef89a-7178-4b80-a263-e89a921aa6ac", - "width": 70, - "x": 2940, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe5ce019-ae55-44c3-9916-18ffdc65ac4c", - "width": 70, - "x": 3010, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f07a886-09a2-465b-9f61-990c6a4382e8", - "width": 70, - "x": 2940, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2527fd7f-3ec2-4d0f-9e60-6d55d4f5cbf5", - "width": 70, - "x": 3010, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0691f845-1af6-4545-8f7f-e6c59dd952d1", - "width": 70, - "x": 2940, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9f94936-305e-42d2-8d7d-9e58650bce40", - "width": 70, - "x": 3010, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1c598e59-ed8d-450f-b2e6-f6a8b16feb6d", - "width": 70, - "x": 2940, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f79831d7-5398-486c-851d-115effa61db3", - "width": 70, - "x": 3010, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc0eebf8-306f-4dc3-89be-ca7118e9edf0", - "width": 70, - "x": 2940, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3338b8cf-0a0c-4511-b549-f5759715240f", - "width": 70, - "x": 3010, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b2d8984-4c06-4272-b7e7-3264e23234d1", - "width": 70, - "x": 2940, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "375eee19-95f5-486b-9dc0-6622011d1803", - "width": 70, - "x": 3010, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61a73149-7a26-4c35-a70b-ffddf6e45560", - "width": 70, - "x": 2940, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ce414fcc-5964-427c-8aba-cde219af3107", - "width": 70, - "x": 3010, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "363f7cc4-3049-427d-b117-f693f6b48544", - "width": 70, - "x": 2940, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6926c3ce-6241-4894-8a45-3f1810805225", - "width": 70, - "x": 3010, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da7a6745-cbd7-46dd-affa-576e6cf77f3f", - "width": 70, - "x": 2940, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47044eb9-420c-4107-8ae1-69014527b043", - "width": 70, - "x": 3010, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "523b7f1f-cbcb-4381-8fbf-6e4b0ec9338a", - "width": 70, - "x": 2940, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abc87865-5b92-42db-9458-35183a25b219", - "width": 70, - "x": 3010, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e44952bd-0514-4fa4-b552-ea0ea39e819f", - "width": 70, - "x": 2940, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a265d631-fa9f-408a-b227-457304de3ad7", - "width": 70, - "x": 3010, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f160aaf2-91fb-4cdd-b0dc-41797ff8ec47", - "width": 70, - "x": 2940, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "71add1a8-ced3-489c-9fdb-9395e22691b1", - "width": 70, - "x": 3010, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d14b557a-5e0c-4ade-bd01-97d4625d808d", - "width": 70, - "x": 2940, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "71806cae-0d84-4322-861d-830707a2567d", - "width": 70, - "x": 3010, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "123cf952-b22e-424d-82d0-5dc35c40f0ff", - "width": 70, - "x": 2940, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8e8dd259-f137-4a91-8ae4-6d55ffd32e14", - "width": 70, - "x": 3010, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0958302c-4d83-45dd-aa71-ea311727f694", - "width": 70, - "x": 2940, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "695f3ee9-c4a9-46be-bc72-8b45f1adb2b1", - "width": 70, - "x": 3010, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1385a91a-4059-4c2b-9b04-35d5a0bb01f4", - "width": 70, - "x": 2940, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f39da00-29d3-435b-9e18-69837758ea72", - "width": 70, - "x": 3010, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d4c1fbb-ee7d-40af-b93b-b12bcb54b43a", - "width": 70, - "x": 2940, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee1d1a68-9895-4c96-b119-eb48e0ed9786", - "width": 70, - "x": 3010, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6477a0ae-886d-4fdb-8940-b4adba8caf37", - "width": 70, - "x": 2940, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c089291f-0aed-4658-b698-a6d5e247fb32", - "width": 70, - "x": 3010, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f804a2b8-b77e-4d4f-ab84-32f37e80bfdb", - "width": 70, - "x": 2170, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02048fa1-fc22-4354-aa5d-1f54b0d96e75", - "width": 70, - "x": 2240, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ada9f06a-8e9b-4456-aee8-f542d4e09fa1", - "width": 70, - "x": 2170, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af3909b9-9b91-496f-820a-2fb733bf5cff", - "width": 70, - "x": 2240, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38e19f54-832e-44f9-8f20-3eada258d1dd", - "width": 70, - "x": 2310, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8339acad-1cde-4da6-b905-6fc58d008d14", - "width": 70, - "x": 2310, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "600c2e5b-ac35-48ce-bcb7-9f8f57272037", - "width": 70, - "x": 1820, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1008b10b-246f-45b3-abff-863b8a18868a", - "width": 70, - "x": 1890, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "97542886-57c1-4e16-98f2-9546b51093c0", - "width": 70, - "x": 1820, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aef5ab2f-78e0-4036-8ee1-5fc6b662fe5f", - "width": 70, - "x": 1890, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2120a881-3494-43d6-9164-03d2c8aa0270", - "width": 70, - "x": 1960, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb4c4f32-bed1-4269-9c61-17dc172c061f", - "width": 70, - "x": 2030, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7905d17-823e-422c-8ed2-802047a63797", - "width": 70, - "x": 1960, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a6ad1cc-0ebe-4499-a755-be2aa5b0570d", - "width": 70, - "x": 2030, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8261608d-acbb-4d23-97e0-ba477e80acfa", - "width": 70, - "x": 2100, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d292fbc-945a-45d9-b1d3-1390f4d97f12", - "width": 70, - "x": 2100, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00169f9c-f759-43aa-ad30-dadff6e4976d", - "width": 70, - "x": 1750, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a15c5a5-3eac-434d-ae73-bcbf862d015f", - "width": 70, - "x": 1680, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6be504bc-8139-4253-b18a-75a3668ba45a", - "width": 70, - "x": 1680, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1c730ba7-584e-4f6f-8a2b-f23512391363", - "width": 70, - "x": 1750, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7df5811b-5eef-4ee6-a946-363af4f599f4", - "width": 70, - "x": 2870, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "313ccecf-f6a2-43dc-a30f-6a2ec8db0abe", - "width": 70, - "x": 2870, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "35b1a0d1-a22b-4754-8dfb-9b31ebc9d80c", - "width": 70, - "x": 2520, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c11cb813-0825-484d-b037-84128ae2bdac", - "width": 70, - "x": 2590, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf07e3ce-8896-4896-9078-a8695a722cb7", - "width": 70, - "x": 2520, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef9a1474-da4a-49f2-b6d1-78e4b0a435e8", - "width": 70, - "x": 2590, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "293dc4f4-b2d1-4400-80af-251d1e2c8e29", - "width": 70, - "x": 2660, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0227c3b-0575-4ba1-814d-a6f48033523e", - "width": 70, - "x": 2730, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8cbe2c0e-6ef4-48ec-93ab-6a67e2173fa0", - "width": 70, - "x": 2660, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0314c448-5d74-481d-aed7-5162b4f96402", - "width": 70, - "x": 2730, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5074403d-fe8f-4fad-a8d5-19e30f346e6d", - "width": 70, - "x": 2800, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0bee87dd-0872-41f8-87eb-591141a9e4ff", - "width": 70, - "x": 2800, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17f7b1ee-78af-4dad-808a-d5f62d1a8954", - "width": 70, - "x": 2450, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3fb1e545-4bf6-4ebe-9417-41f21c8d53f0", - "width": 70, - "x": 2380, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64cbd0ef-1c49-4ac8-bd9a-1923f268efb5", - "width": 70, - "x": 2380, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c67936d9-de7a-4498-a1cc-749dabd07a97", - "width": 70, - "x": 2450, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9d26cf8-c2c6-4d30-a103-eb8bed8e2925", - "width": 70, - "x": 1120, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d0872ec-5354-4cac-a6d5-5fe5e54b94fe", - "width": 70, - "x": 1190, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fc67a94-9cc9-49c7-a23e-ec7929c976eb", - "width": 70, - "x": 1120, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6230dcc8-7764-48b1-8392-cec8b826eda3", - "width": 70, - "x": 1190, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "377c99b3-66d7-445a-a6d7-945dc7300194", - "width": 70, - "x": 350, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24f140c7-5104-4366-8023-ce2a2741f30c", - "width": 70, - "x": 420, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b64bb96-a729-4131-8a8c-a5dd4fd3c8c1", - "width": 70, - "x": 350, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72afa7df-2709-4112-ab53-7f0303eacfb2", - "width": 70, - "x": 420, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4aac1e7d-b51d-42c6-8dfb-9cc0d830c7f6", - "width": 70, - "x": 490, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "46da4b4a-22ad-436c-812b-b20088180454", - "width": 70, - "x": 490, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bb55f5f-0b1b-4057-8fec-712630ef2d51", - "width": 70, - "x": 0, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a3b55c2f-b34e-4b13-acbd-91fde3219d55", - "width": 70, - "x": 70, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "25b63eef-2bd9-44c6-aa6e-44ae15382969", - "width": 70, - "x": 0, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "381ae918-a98e-4360-9290-ebf808256776", - "width": 70, - "x": 70, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee158e05-dd9d-4af9-8c2e-9fdc8b874d3a", - "width": 70, - "x": 140, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "96f637e6-0f80-497c-aa46-0107ac00b481", - "width": 70, - "x": 210, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41964124-f593-406a-906d-78dfa9e752e5", - "width": 70, - "x": 140, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d248ab1e-d63d-4e34-94c9-1f6b59bd14ec", - "width": 70, - "x": 210, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b61dafc-1609-421b-bed7-d39216b1adbc", - "width": 70, - "x": 280, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4fdf9a4-5535-4883-8449-83dd9ac069e7", - "width": 70, - "x": 280, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ffa26a2-7c6f-4ba9-9a40-8eb3d5f2dd15", - "width": 70, - "x": -70, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2ee3482c-c697-4811-91c8-158d8fedaf86", - "width": 70, - "x": -140, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dee244e5-4836-45e3-ab62-a2caf92d167d", - "width": 70, - "x": -140, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d71dacc7-4173-482d-9cbf-76aae714c050", - "width": 70, - "x": -70, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f785d620-5ee1-49e2-93ee-8db3bc96a1ba", - "width": 70, - "x": 1050, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a65da36-2606-417d-9c89-bc97712f6de6", - "width": 70, - "x": 1050, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "217b60a2-29cf-413d-8483-843424d7923c", - "width": 70, - "x": 700, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdb93f2f-c58f-4a38-a56c-a91782114d5b", - "width": 70, - "x": 770, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1bc4442e-c035-49b6-befe-de5850b5c65b", - "width": 70, - "x": 700, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98e0e73d-732b-4c89-bea8-bccf24c50260", - "width": 70, - "x": 770, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc946573-e7b3-47bc-bf9c-3a88df516152", - "width": 70, - "x": 840, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82764079-5b47-43c7-9fe4-8547cc2a93ca", - "width": 70, - "x": 910, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62258e2f-a743-4623-9801-83e424cdf9fe", - "width": 70, - "x": 840, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a2f0f3fe-cd92-4c6d-ae48-f9e8e9d08f4d", - "width": 70, - "x": 910, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76ef79f5-a4a1-4ceb-9ec6-77b94b7cdd34", - "width": 70, - "x": 980, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66db1afc-3032-4ebb-b28d-20cd0ee3481a", - "width": 70, - "x": 980, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5894286c-870d-45e6-aaeb-875275e78517", - "width": 70, - "x": 630, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef277cc6-fbd8-450e-bcb5-7b92cde98201", - "width": 70, - "x": 560, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9ad26e6b-8e48-460a-a99c-da34439eac07", - "width": 70, - "x": 560, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e1c9e3eb-714a-40f7-9c63-4794f6125b13", - "width": 70, - "x": 630, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6cd5885e-31c4-4f47-83ef-b4b03e6daab9", - "width": 70, - "x": 1750, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a480ce00-5937-42bc-8fb6-d54e918660b0", - "width": 70, - "x": 1680, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e12a51a6-0c17-4cd2-b1e7-6ca891fcf230", - "width": 70, - "x": 1680, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b58d2948-22b7-44c6-b07f-5c16f6b9d2b1", - "width": 70, - "x": 1750, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df6e1896-3fb1-471a-b644-4350a6b41c51", - "width": 70, - "x": 1750, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5216a0cf-1afa-417d-b318-5323c1ad4b28", - "width": 70, - "x": 1680, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cac65707-2130-46c6-9150-bef4f9c330ae", - "width": 70, - "x": 1750, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aa1d9363-4217-493f-9c8f-a13a9e5bfa36", - "width": 70, - "x": 1750, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4e718d2-e3c1-476c-9049-4eb624a01d47", - "width": 70, - "x": 1400, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4141e308-5677-4685-ab69-11fa5910b691", - "width": 70, - "x": 1470, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "84253ec8-9e27-4c12-8aae-f4c325920ca2", - "width": 70, - "x": 1400, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21f4ac88-6b92-4479-8349-285ddede5773", - "width": 70, - "x": 1470, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aab3920b-2d81-47d8-9336-10981b8f1624", - "width": 70, - "x": 1540, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c00a7288-6b54-4dfc-a34a-a23a2c2c1e7a", - "width": 70, - "x": 1610, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "889ac785-6223-4387-899b-67157d80281e", - "width": 70, - "x": 1540, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b882bbf4-f210-40d8-9009-25d7aef580c1", - "width": 70, - "x": 1610, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11643d97-345c-405c-b55c-a43bace67833", - "width": 70, - "x": 1680, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dae9b41d-1a41-4edd-a3c8-79abceee0a46", - "width": 70, - "x": 1680, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8dddb32f-54e4-4187-b4f8-28f1f2c10020", - "width": 70, - "x": 1330, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e82e91a-527e-4464-a809-98c5fa27b2e0", - "width": 70, - "x": 1260, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9ec91aa-2a8d-4908-baca-4ff267122385", - "width": 70, - "x": 1260, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e189d7da-d75e-4a7c-8a2b-70d244f0de6e", - "width": 70, - "x": 1330, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "c35bcf53-b789-4163-8995-d72b80c4c806", - "width": 0, - "x": -122, - "y": 3188, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "trash_movable", - "persistentUuid": "531cda43-5daa-48a2-9b26-6dea1106bd1f", - "width": 70, - "x": 1890, - "y": 2730, - "zOrder": 1254, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 54, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "ed415228-77d3-436c-847f-b90b6c9520db", - "width": 0, - "x": 140, - "y": 3290, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -47, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "5df41048-4014-4755-82c5-412eac15d5a4", - "width": 0, - "x": 560, - "y": 3229, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 18, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "637a61c4-0533-45b0-84cb-21e8d85631c8", - "width": 0, - "x": 1190, - "y": 3290, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 28, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "14e6320a-368a-413a-ade1-8bb6fc9ac942", - "width": 0, - "x": 1689, - "y": 3150, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 53, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "7415f961-d4b6-4b0b-acf1-6c1843edf4dc", - "width": 0, - "x": 2109, - "y": 2901, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "b7c52dee-dcfa-4864-a3fb-2e6a098e1754", - "width": 0, - "x": 2520, - "y": 2940, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -38, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "ca0a8b2e-569e-4146-86b7-9d350f89d8ee", - "width": 0, - "x": 2870, - "y": 2879, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -107, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "cd023872-90a4-4c72-b921-3763b8e7078e", - "width": 0, - "x": 3010, - "y": 2730, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 20, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "9acc6143-5f47-47df-9ebd-dd14d974ad5e", - "width": 0, - "x": 2957, - "y": 2450, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 134, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "6a6266c7-7c08-43e9-9b1a-2e564d003738", - "width": 0, - "x": 3010, - "y": 2030, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 68, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "52ce10ae-e9fa-4b28-b900-a3ee6d4f5d7c", - "width": 0, - "x": 2969, - "y": 1610, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -58, - "customSize": false, - "height": 70, - "layer": "", - "name": "trash_movable", - "persistentUuid": "ec4a4612-c1fb-40c5-8b9d-816e781460bf", - "width": 70, - "x": 3010, - "y": 1120, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89cc239b-3682-42b7-852e-1567691db2e3", - "width": 70, - "x": 3080, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc720b0a-4873-4073-a02f-43c60047fff0", - "width": 70, - "x": 3150, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -112, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "dcd05f20-59a6-4ab4-b3c8-d540a3979301", - "width": 0, - "x": 3150, - "y": 630, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -118, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "487647e1-3ee7-4b30-b24b-3307608b22f8", - "width": 0, - "x": 3096, - "y": 210, - "zOrder": 1236, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -60, - "customSize": false, - "height": 0, - "layer": "", - "name": "trash_movable", - "persistentUuid": "7f101c6e-eb6c-4b96-a4b9-6c6e23592c43", - "width": 0, - "x": 3150, - "y": -140, - "zOrder": 1255, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", - "sealed": true, - "width": 1540, - "x": 1680, - "y": 1120, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "baf5ced5-a3dd-423c-bff1-e4ab4a316c63", - "sealed": true, - "width": 2100, - "x": -140, - "y": 3150, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "aba688b4-8fa1-4ea4-86d2-c130686bbad3", - "width": 2030, - "x": -1120, - "y": -490, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "ecbfecde-16b0-4863-8299-8a2fb59fb93a", - "width": 140, - "x": -1260, - "y": -490, - "zOrder": 1256, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "102f5637-9e1a-443d-a42d-aa0c73fb3177", - "width": 2450, - "x": 910, - "y": -490, - "zOrder": 1257, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "d7469110-1aac-4cab-b910-0c060b0abce0", - "width": 140, - "x": -2730, - "y": 3360, - "zOrder": 1258, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "41374744-530b-4bcf-82f3-f7dda8530f63", - "width": 140, - "x": -280, - "y": 3360, - "zOrder": 1259, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "38a806fb-516e-4754-8b47-2d0062ed55cf", - "width": 350, - "x": -3570, - "y": 3640, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "fdf2b692-7cbc-41fb-bd1d-bfe8719bb4d1", - "width": 350, - "x": -3150, - "y": 3640, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "1b0f0c9a-4810-4d6c-bd33-862d91616564", - "width": 350, - "x": -3150, - "y": 3990, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "76a36fac-78ea-426e-b5a8-7d0a264d945f", - "width": 350, - "x": -3570, - "y": 3990, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "e9b113e4-2c3c-4005-a601-ae1051b77e40", - "width": 350, - "x": -3150, - "y": 4340, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "f9e7ef8a-c8c2-478b-90c1-0a4e92327c28", - "width": 350, - "x": -3570, - "y": 4340, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "895e459d-af96-428b-9650-a2714ef3d04b", - "width": 350, - "x": -3150, - "y": 4690, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "e12b8a99-ac10-44b3-ac99-4d9b1f24db16", - "width": 350, - "x": -3570, - "y": 4690, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "092c2f41-e17c-4a41-bf4a-7e7596a32bbe", - "width": 350, - "x": -3150, - "y": 5040, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "53c646ac-98b4-4cff-bbf4-ece1c712089d", - "width": 350, - "x": -3570, - "y": 5040, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "ce70ba42-80db-4a95-a346-7db0a71a2034", - "width": 350, - "x": -3150, - "y": 5390, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "a3cf8ee3-3c6b-48ea-a8c6-6f3c002c759e", - "width": 350, - "x": -3570, - "y": 5390, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "94d3ce29-5648-45a3-a9df-234333d1c1d6", - "width": 350, - "x": -3150, - "y": 5740, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "3f599dd2-8069-4e8f-8982-14219715ea60", - "width": 350, - "x": -3570, - "y": 5740, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "3e3317b1-d82c-4c9f-9b71-a612550f8391", - "width": 350, - "x": -3150, - "y": 6090, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "f2cb5fa1-2572-4c2f-a744-4f61637e4c3a", - "width": 350, - "x": -3570, - "y": 6090, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "b0f2a5ec-b67c-4496-a304-6bc3a32fcd72", - "width": 350, - "x": -3150, - "y": 6440, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "485cd6d0-5660-42cc-8abe-d5b64cf4eacc", - "width": 350, - "x": -3570, - "y": 6440, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "9b937dfc-9d28-450d-b8c1-80834df3aabf", - "width": 350, - "x": -3150, - "y": 6790, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "50086363-198c-43d6-9e21-d07de2f2638f", - "width": 350, - "x": -3570, - "y": 6790, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "77b08fc1-04cd-4040-8bb1-c1e9edec7b56", - "width": 350, - "x": -3150, - "y": 7140, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "f49921fa-2095-4a09-95e2-41523f510132", - "width": 350, - "x": -3570, - "y": 7140, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "4244cce5-d7c9-4b94-9c12-a8bf726dc0a8", - "width": 0, - "x": -3234, - "y": 3810, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "01638110-3d70-42e3-8611-9ce8ea7c4f2d", - "width": 0, - "x": -3232, - "y": 3672, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 3990, - "layer": "", - "name": "road_1", - "persistentUuid": "e583ab96-139f-4b62-945d-1665d25abd31", - "width": 70, - "x": -3500, - "y": 3640, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "depth": 1, - "height": 3990, - "layer": "", - "name": "road_1", - "persistentUuid": "962bf66c-4701-4b9b-acc3-8c2d1a932210", - "width": 70, - "x": -2940, - "y": 3640, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3990, - "layer": "", - "name": "road_2", - "persistentUuid": "a549ac99-8158-4b76-928a-56a418b49cd3", - "width": 70, - "x": -3220, - "y": 3640, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "367b9fb5-f764-47a9-abf0-b4bca3be3e64", - "width": 0, - "x": -3232, - "y": 3990, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "5f5776b6-0228-4b20-b536-48c3a449edf8", - "width": 0, - "x": -3232, - "y": 4200, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "699a89e0-f262-4922-94f4-06b677b1690e", - "width": 0, - "x": -3232, - "y": 4410, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "9343d17c-7821-403e-bec3-1ea7e8c34047", - "width": 0, - "x": -3235, - "y": 4620, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "aa4ebfe0-4339-402d-a4a2-3f3f9aa09888", - "width": 0, - "x": -3231, - "y": 4830, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "e50ff460-d090-4876-b460-3e13f875d7ea", - "width": 0, - "x": -3233, - "y": 5040, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "e12d6482-65fc-4eec-bb1c-af70e2f5b587", - "width": 0, - "x": -3232, - "y": 5250, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "eeeff3f5-f20b-4b65-a8ca-ef0a18a694dc", - "width": 0, - "x": -3234, - "y": 5460, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "d9cf91a6-0d2d-481e-9d5f-3c76bc9fb8d3", - "width": 0, - "x": -3233, - "y": 5670, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "6889692b-bb8a-42f5-b92e-7d05884c3956", - "width": 0, - "x": -3233, - "y": 5880, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "9b1b9e09-c7d4-44b3-9099-cc28987bc93d", - "width": 0, - "x": -3233, - "y": 6090, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "99b93efe-61bd-4898-a661-f4f073ff5daf", - "width": 0, - "x": -3232, - "y": 6300, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "d161e608-d6a7-4475-b6b1-c724d1ec524d", - "width": 0, - "x": -3232, - "y": 6510, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "d061e83a-2103-444d-a61e-36eee1a38700", - "width": 0, - "x": -3233, - "y": 6720, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "1e5c958a-d494-4bf4-b1dd-efcb1c13d9aa", - "width": 0, - "x": -3235, - "y": 6930, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", - "width": 0, - "x": -3234, - "y": 7140, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3920, - "layer": "", - "name": "concrete_1", - "persistentUuid": "e50b3ae6-01f4-498f-a424-fbe09e890138", - "width": 70, - "x": -3570, - "y": 3640, - "zOrder": -2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3920, - "layer": "", - "name": "concrete_1", - "persistentUuid": "9c82384e-7f20-4090-9104-2af969cc37d2", - "width": 70, - "x": -2870, - "y": 3640, - "zOrder": -2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "concrete_1", - "persistentUuid": "e7a6ff30-5b2a-44b8-8da9-b91a57a61740", - "width": 140, - "x": -2870, - "y": 3570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "concrete_1", - "persistentUuid": "56857c88-d539-4ba6-a8a7-6353fa6b857c", - "width": 140, - "x": -3640, - "y": 3570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3845, - "layer": "", - "name": "hidden_separate", - "persistentUuid": "0ef98db6-7d9e-4b22-b706-6a5abfdfdf6b", - "width": 15, - "x": -2814, - "y": 3640, - "zOrder": 12615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3845, - "layer": "", - "name": "hidden_separate", - "persistentUuid": "1b7bf7dc-0ec4-4303-ae2e-d04e742028db", - "width": 15, - "x": -3567, - "y": 3640, - "zOrder": 12615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "94388d24-a7b5-4459-80ce-eb0c863cb0dc", - "width": 70, - "x": 3220, - "y": 3080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b79fc1bc-fab8-4c27-9b03-4787305df5de", - "width": 70, - "x": 3220, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c9f53b1-3dd9-443d-8985-d3f69dd1b3d2", - "width": 70, - "x": 3220, - "y": 3010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b9d5620-26e0-488c-8bbc-92cd2227063e", - "width": 70, - "x": 3220, - "y": 2940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cab0ab87-48a8-4d14-ae31-190c2a4c6611", - "width": 70, - "x": 3220, - "y": 2870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "10a2d0b9-7176-4684-9adb-78b19cc4c766", - "width": 70, - "x": 3220, - "y": 2800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a900117-b1c4-4e5a-9d5c-956f1696793b", - "width": 70, - "x": 3220, - "y": 2730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6fd3a72b-33e0-4abd-aa56-86223ce7ffa6", - "width": 70, - "x": 3220, - "y": 2660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "135e5de9-4fd6-40ee-9622-8060eca75481", - "width": 70, - "x": 3220, - "y": 2590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0176bf7c-d318-4bda-93d5-59175384cb96", - "width": 70, - "x": 3220, - "y": 2520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "60b06f8a-1cad-4f3f-9819-beefaddff3cb", - "width": 70, - "x": 3220, - "y": 2450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f3c6867-a1eb-4132-99f8-53787743649d", - "width": 70, - "x": 3220, - "y": 2380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd3ee937-5aec-4274-9445-42c159fff743", - "width": 70, - "x": 3220, - "y": 2310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "50455268-0d3c-4af4-9b30-f43a9bf5e60a", - "width": 70, - "x": 3220, - "y": 2240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f4db797-87a8-421f-aeb9-44eca0f6646f", - "width": 70, - "x": 3220, - "y": 2170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6cdff58-852e-4695-8503-e1d3c3848487", - "width": 70, - "x": 3220, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "792d138e-cfc5-45a6-85fb-8f1eff956449", - "width": 70, - "x": 3220, - "y": 2030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbbaec7e-98ad-40e3-8d7a-7ce89ee9d960", - "width": 70, - "x": 3220, - "y": 1960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11b3b9ce-300b-4d51-9010-a4e81a9c1c9f", - "width": 70, - "x": 3220, - "y": 1890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a466cb5-d0f5-4db1-8815-2725528d5a83", - "width": 70, - "x": 3220, - "y": 1820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd664f6c-a628-41dc-891a-4570a6ced4e9", - "width": 70, - "x": 3220, - "y": 1750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34e3797e-9ddc-4da5-b3d7-6d2915d650a3", - "width": 70, - "x": 3220, - "y": 1680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04d6b381-a25f-4599-9871-48e3f5cbd248", - "width": 70, - "x": 3220, - "y": 1610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "279b179e-be17-4963-8286-1a4d32adff43", - "width": 70, - "x": 3220, - "y": 1540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "656615c1-a607-4c86-a9d7-b17ad00f6a9c", - "width": 70, - "x": 3220, - "y": 1470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "675decc9-3e72-48de-bda2-c640154893fb", - "width": 70, - "x": 3220, - "y": 1400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c16812c4-5fcf-4be4-a095-85dc6095fcff", - "width": 70, - "x": 3360, - "y": 1120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f1c6247-a682-4d92-b2e6-5e8c76545498", - "width": 70, - "x": 3220, - "y": 1120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "362f2a14-9977-4d17-8c19-c1f1e9d7c349", - "width": 70, - "x": 3220, - "y": 1190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "023f9fba-6d0a-46e6-b68e-d464ec02022a", - "width": 70, - "x": 3220, - "y": 1260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f121e5f-b6f5-4d2b-b007-623617562250", - "width": 70, - "x": 3220, - "y": 1330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac740f90-4902-427e-9cc9-033c28ace14a", - "width": 70, - "x": 3290, - "y": 1120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b5317dc4-8507-46e7-a18c-887c11f0eadb", - "width": 70, - "x": 3360, - "y": 980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "549246ff-f158-4a4c-9fba-a8f2fff3dab1", - "width": 70, - "x": 3360, - "y": 1050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b00f3f7-5bfb-4ff2-a2c0-a9005456b248", - "width": 70, - "x": 3360, - "y": 840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "457fc91e-1c85-48ae-a464-63df3f73216a", - "width": 70, - "x": 3360, - "y": 910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5f70c009-fc0a-4e01-b03d-de00f54fe71c", - "width": 70, - "x": 3360, - "y": 700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5d4ae15-fde0-4321-b4a7-bef52ee5d524", - "width": 70, - "x": 3360, - "y": 770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "619c4678-e015-4925-b2ed-0c121d72a713", - "width": 70, - "x": 3360, - "y": 630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcba22e3-24b1-4534-ae12-a284ad147dc1", - "width": 70, - "x": 3360, - "y": 490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cfacffdd-6eff-4c29-ba16-c431274dffbf", - "width": 70, - "x": 3360, - "y": 560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "32bade4a-abd7-4447-b76c-15a9eb466996", - "width": 70, - "x": 3360, - "y": 350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c8c5633-9311-424e-964a-5b1b85a4360c", - "width": 70, - "x": 3360, - "y": 420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f78446a2-5335-4085-b80e-165fe3c89973", - "width": 70, - "x": 3360, - "y": 280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dd529572-e275-4fcd-bda2-c27691c2f794", - "width": 70, - "x": 3360, - "y": 140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "685641d0-85dd-4757-bdc1-ace0751f9d12", - "width": 70, - "x": 3360, - "y": 210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc6070c6-bd4d-44d7-a032-560258940ab3", - "width": 70, - "x": 3360, - "y": 0, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5edf1410-2ae0-4fc0-8004-932fe3f41a62", - "width": 70, - "x": 3360, - "y": 70, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "858a8d10-e09b-4b1e-97c9-cf064a1192a7", - "width": 70, - "x": 3360, - "y": -70, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a01ca1ae-4382-49bd-9338-fe0db674a97c", - "width": 70, - "x": 3360, - "y": -210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc560ad0-d360-4616-9dde-81c119176c6f", - "width": 70, - "x": 3360, - "y": -140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17941190-a016-45ae-a02a-c9b00d17a0a5", - "width": 70, - "x": 3360, - "y": -350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "daa50f30-0807-4ded-a9d5-378bf482aeb7", - "width": 70, - "x": 3360, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6d6e601-dc66-4377-af95-351c5c69913f", - "width": 70, - "x": 3360, - "y": -420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c3a8caa-08b4-4be6-85c1-4845cea12b44", - "width": 70, - "x": 3360, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8912593e-238a-402d-8c03-522b39025b59", - "width": 70, - "x": 3360, - "y": -490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2bb9cce-842e-465c-a426-25df49e8e94d", - "width": 70, - "x": 3220, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9ed216a3-2dd0-4c79-9df6-1229fbfa651a", - "width": 70, - "x": 3290, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e26992d-3cc1-4ac4-886c-856e77490f80", - "width": 70, - "x": 3150, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe175bd9-b38a-482a-96a6-44f763fb93d6", - "width": 70, - "x": 3010, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63e9f096-b087-4a80-a9e8-ca90a1716352", - "width": 70, - "x": 3080, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b70b588b-4871-4ced-8924-f337b4705463", - "width": 70, - "x": 2870, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5f5bb7ce-1901-4449-aa98-a106e266ad85", - "width": 70, - "x": 2940, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bce86c0-61b3-44cb-b9b2-3db17c52fc49", - "width": 70, - "x": 2800, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11335e74-c246-48ec-83d7-17a6883fb477", - "width": 70, - "x": 2660, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "650a66c7-048c-4b4d-b789-e48c56584955", - "width": 70, - "x": 2730, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7282b7c5-1952-4431-82a5-77fd892dcd29", - "width": 70, - "x": 2520, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "209f6d74-6121-4d25-ae7a-647c84c42000", - "width": 70, - "x": 2590, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ed4d28f9-657d-42a9-bd09-93a50a038693", - "width": 70, - "x": 2450, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4e50ecb8-1a91-4ed4-ae3c-7c31e594bd31", - "width": 70, - "x": 2310, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "74652814-ab4d-4d2b-af09-79c63b5eac91", - "width": 70, - "x": 2380, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ac3d6a8-0ae1-4541-becc-caf3d5174909", - "width": 70, - "x": 2170, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20ff5682-0280-41f1-8a1d-fa4929f9c87a", - "width": 70, - "x": 2240, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86adae75-7bb5-4d4c-bf8f-954d4b3a9f9a", - "width": 70, - "x": 2100, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390c118d-79e4-4543-8759-0b92aa005b75", - "width": 70, - "x": 1960, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90baef04-0161-46f8-9267-5fc7b0ad8942", - "width": 70, - "x": 2030, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "757db44f-7073-486e-8528-708bd2b805ec", - "width": 70, - "x": 1820, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99b03627-dcc0-4d81-a7da-ea133547b728", - "width": 70, - "x": 1890, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8d220bb-981c-4d72-929d-6c8fc23826b1", - "width": 70, - "x": 1750, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c2f43d6-176a-4d66-a50a-76938360776f", - "width": 70, - "x": 1610, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eff35083-0e24-4b52-a0a9-c1ea23d99c38", - "width": 70, - "x": 1680, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3f20d88-0720-4b00-ad5f-fccc89653564", - "width": 70, - "x": 1470, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56d4ef48-db22-4982-beac-f0080b174d2e", - "width": 70, - "x": 1540, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f8dc6a9-b98d-4d56-b273-3ec6264b8f80", - "width": 70, - "x": 1400, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57b86dce-5f73-4ca1-93b6-8d8c80239d50", - "width": 70, - "x": 1260, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf38cfb9-8dee-40bb-a76d-122b6286b475", - "width": 70, - "x": 1330, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b04bc9b9-cb4f-4632-a11c-ca202d10ed0c", - "width": 70, - "x": 1120, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f08e198c-7111-4b7d-9c5f-317256ff187f", - "width": 70, - "x": 1190, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b0fc4606-a63d-4657-a77e-1b58a51db8a0", - "width": 70, - "x": 1050, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28d46a35-dbb5-47c4-a828-89d9973ce77d", - "width": 70, - "x": 910, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbf24c27-1a1d-42a5-8778-ed89d1464e1f", - "width": 70, - "x": 980, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "29821c79-1179-4590-b1e2-3a4414e5baed", - "width": 70, - "x": 770, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c48ff7f2-4315-46a2-bfa5-1780f8c9bd70", - "width": 70, - "x": 840, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9ac4d792-388f-41a8-990d-7518e8de5448", - "width": 70, - "x": 700, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e3b2f2c-b8e1-4002-93d9-b18a715cf627", - "width": 70, - "x": 560, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df9ef22a-ff2d-4057-8c01-9a06267d7030", - "width": 70, - "x": 630, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad6b6f2f-75aa-465c-956f-71751c4151c0", - "width": 70, - "x": 420, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a3afc854-94b1-4c17-89af-b1fe613b9c11", - "width": 70, - "x": 490, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41740329-469a-4a06-a44d-691b7be807b5", - "width": 70, - "x": 350, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5a1d06b-cc36-4b13-9ec7-e8c8e89b4b2e", - "width": 70, - "x": 210, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85b5b2f7-5dd2-4000-90c6-89738792b208", - "width": 70, - "x": 280, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ab7c020-60c5-48ab-9fbf-9015351e020e", - "width": 70, - "x": 70, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98b54d38-f449-4742-8df6-591b6e3bc649", - "width": 70, - "x": 140, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "136c3de1-dc5a-4b96-85b2-c915013f40c4", - "width": 70, - "x": 0, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77ec8611-ceae-4e03-bbb4-f85c8d24fb4a", - "width": 70, - "x": -140, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98d1041b-497f-43dd-aaef-f809e83c7b4a", - "width": 70, - "x": -70, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78fd1653-ceb1-4c1d-9b71-fc2b0f7ec1af", - "width": 70, - "x": -280, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33136b65-a02e-4f8c-8c71-e71c89a6633f", - "width": 70, - "x": -210, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e93db3a6-7a5c-4452-923c-edd69a7761e7", - "width": 70, - "x": -350, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ed0310f-dec5-4ef4-b04d-52aea874685c", - "width": 70, - "x": -490, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f02967aa-a453-4229-b22c-d6534c8444e6", - "width": 70, - "x": -420, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ff254f8-9e05-4174-92cd-5c181c625c77", - "width": 70, - "x": -630, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3ce8f49-8b3b-4204-b150-9b0195291cd2", - "width": 70, - "x": -560, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e1b17b1a-d6c2-4378-b2cd-463346c62059", - "width": 70, - "x": -700, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "650571d4-f621-4fa4-aa44-8cf2c0919f04", - "width": 70, - "x": -840, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1611245c-bc2e-46a3-a079-008772bb7864", - "width": 70, - "x": -770, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d44ee69d-105e-4f21-a317-7e9b0dee0d28", - "width": 70, - "x": -980, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ffbf0d5d-933d-426d-a123-cee94004f5a2", - "width": 70, - "x": -910, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba7ba34e-adb0-44e8-9477-31846ff9aa96", - "width": 70, - "x": -1050, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b78742f-4c55-484a-987c-98616c943f47", - "width": 70, - "x": -1190, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62ffc145-ef8d-4c79-ac57-63de60c36dbe", - "width": 70, - "x": -1120, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3d618bcd-742f-4d91-9d83-d19d550e3e49", - "width": 70, - "x": -1330, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b23747c-9eba-4e55-a1e1-aff819eb63c8", - "width": 70, - "x": -1260, - "y": -560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da20492f-2dd2-4a51-92ea-96177966a9b2", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06122561-c496-483d-8088-49580c0f56a1", - "width": 70, - "x": -1330, - "y": -350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19bc68cf-02d1-49c0-a830-740c994872b8", - "width": 70, - "x": -1330, - "y": -420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4c74dce-ea3c-4822-bca7-32611a6144da", - "width": 70, - "x": -1400, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9910a106-0125-4601-8a39-e06519e89634", - "width": 70, - "x": -1330, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9062d14-7ba6-4b87-8374-53f68fe934e1", - "width": 70, - "x": -1470, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01e52db8-7762-486e-b7d2-2d9bc130c5f0", - "width": 70, - "x": -1610, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f95fe236-4dd7-4d88-83e2-c6b1c03fc230", - "width": 70, - "x": -1540, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ee84145-539e-4bc2-9fc3-607ff569e551", - "width": 70, - "x": -1750, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0a96cd9-7cd2-4b03-84ec-8a451578092a", - "width": 70, - "x": -1680, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e74b463f-c72a-4d2a-a655-13feb0372e1d", - "width": 70, - "x": -1820, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9defc10c-44b2-4b9f-b962-11b5c45c6248", - "width": 70, - "x": -1960, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e811e998-78a2-4af3-9688-6691c988cb01", - "width": 70, - "x": -1890, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03dbad85-4229-498f-adf4-3ed4c0dbddc8", - "width": 70, - "x": -2100, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fedf77ad-2a78-49e9-b145-793d956f9257", - "width": 70, - "x": -2030, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bebe5ec7-e3ca-4f85-ae58-34115e8152c6", - "width": 70, - "x": -2170, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0db70097-eb8a-4757-a2de-7541bc5be232", - "width": 70, - "x": -2310, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f1d7bf6-0002-4737-86ad-432427ae86a3", - "width": 70, - "x": -2240, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8899f4cd-3ebc-4e12-a671-c8373e8a4203", - "width": 70, - "x": -2450, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aee826ec-8a73-4e21-be60-70786ba88d31", - "width": 70, - "x": -2380, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb3e0c4e-a7f8-4a12-8c08-59ae8d5d89e1", - "width": 70, - "x": -2520, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "039d6300-1223-43fe-942f-8ab7d93dacd2", - "width": 70, - "x": -2660, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7b70ebf-d9d3-4768-83f0-db16853a30e9", - "width": 70, - "x": -2590, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "75fed58e-85d5-47ca-bed1-d6dd79323ba0", - "width": 70, - "x": -2800, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d69e8744-1c90-414e-86d8-2a04c39ef734", - "width": 70, - "x": -2730, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91b0cad5-809f-4833-8784-4da42b5437f7", - "width": 70, - "x": -2870, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82bafb28-25e4-4458-bc5e-a5e29759af5f", - "width": 70, - "x": -3010, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b2711a1-b5d2-49ca-955b-d6958a17750e", - "width": 70, - "x": -2940, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f34c78c0-21dd-465e-b947-edffdee4d4b0", - "width": 70, - "x": -3150, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d38022d8-916c-46a9-b994-187d6e5e39b6", - "width": 70, - "x": -3080, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14933627-d0d8-47de-a1f2-7ce90e1a1391", - "width": 70, - "x": -3220, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f3e85c4c-5b31-4d97-a0b7-480df8cf275e", - "width": 70, - "x": -3290, - "y": -210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f54f34b-2c2c-4a8a-b4e2-af5d66a058ac", - "width": 70, - "x": -3290, - "y": -280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d2af84e1-4e75-4c7c-afa5-e3250d07d890", - "width": 70, - "x": -3290, - "y": 1540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f5bfa69-943b-40dc-abdc-a33f502d923a", - "width": 70, - "x": -3290, - "y": 1400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "641f4bd7-fe5e-4e78-9bc0-7fc5c28160cc", - "width": 70, - "x": -3290, - "y": 1470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cd43f2a6-749e-4d57-a814-4017e62a8c8e", - "width": 70, - "x": -3290, - "y": 1260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7ea945e9-9ff4-4870-90cc-f09ce2b7248c", - "width": 70, - "x": -3290, - "y": 1330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cc6ab81-e4f0-48be-a8be-390e272eb779", - "width": 70, - "x": -3290, - "y": 1120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3076899-e1c3-43e8-bd53-875a9a70dc65", - "width": 70, - "x": -3290, - "y": 1190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08544fd1-0c80-4885-8e76-dba5f2fffeb5", - "width": 70, - "x": -3290, - "y": 1050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8368e519-ba16-401e-be9c-eb0ceee1a423", - "width": 70, - "x": -3290, - "y": 910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b53a926-6153-4a5d-9521-359778857fb9", - "width": 70, - "x": -3290, - "y": 980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef73b9db-284a-453f-93ac-1b6b7a788e2a", - "width": 70, - "x": -3290, - "y": 770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6ccd18e-9d6a-482c-9804-d4ad31613233", - "width": 70, - "x": -3290, - "y": 840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a71f5853-ffb1-4cb1-b457-a283189eeaa2", - "width": 70, - "x": -3290, - "y": 700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "139f6c0f-0131-47d5-bbc5-4a631827b0f0", - "width": 70, - "x": -3290, - "y": 560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa6b92d2-659e-4002-a0be-5b1a9a0a2ee2", - "width": 70, - "x": -3290, - "y": 630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59da5ecd-d5c7-4509-9ecb-c0702e4b00f7", - "width": 70, - "x": -3290, - "y": 420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d57ccba-493e-48e5-88b9-a8cb7f88aee6", - "width": 70, - "x": -3290, - "y": 490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7828ec8f-f13c-4600-97f0-137d1b60dd0a", - "width": 70, - "x": -3290, - "y": 350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "55d5e67d-236a-4f01-a473-e9df030503c6", - "width": 70, - "x": -3290, - "y": 210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e9c5264-0855-4510-a4c2-71aef0a65611", - "width": 70, - "x": -3290, - "y": 280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cbac1b55-cd1a-421c-a2cb-8edf13fe245c", - "width": 70, - "x": -3290, - "y": 70, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c966e96-637f-4cb5-ab3e-2023d28c61f6", - "width": 70, - "x": -3290, - "y": 140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a2122340-5e8b-4e0e-bfbe-1d4e75e08296", - "width": 70, - "x": -3290, - "y": 0, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f6f8dbd7-6e16-4498-ae82-235d430d9ee7", - "width": 70, - "x": -3290, - "y": -140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "808253ab-1c68-4d02-ac5f-ed4895b5b4b7", - "width": 70, - "x": -3290, - "y": -70, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "502e2d15-39b4-43c4-a1d3-0f0bc01d9bda", - "width": 70, - "x": -3850, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9b701e1-4aee-43e6-8da4-5a6a7a3c7f00", - "width": 70, - "x": -3850, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "695606fe-1db6-4282-98eb-6bb19ea1fa7e", - "width": 70, - "x": -3850, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "461f5c84-d581-4efd-8159-05e66e4d62a9", - "width": 70, - "x": -3850, - "y": 3290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d02bcdc0-8029-436f-befc-4651ad35ed1b", - "width": 70, - "x": -3850, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3101ba4d-9b0a-4eeb-9c33-6ba99cea6f8b", - "width": 70, - "x": -3850, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d96fd09f-6410-4bf0-873f-1bf766577966", - "width": 70, - "x": -3850, - "y": 3220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f6926772-c12a-4503-8807-9e3ef4997894", - "width": 70, - "x": -3850, - "y": 3080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "520bfb63-3d3b-4d28-8f17-38c142e594ed", - "width": 70, - "x": -3850, - "y": 2940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "43a406a1-0a44-4d51-97dc-a31ec8b46650", - "width": 70, - "x": -3850, - "y": 3010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18d923ce-cc0c-45b7-917b-b84976e470fe", - "width": 70, - "x": -3850, - "y": 2800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1640d36a-f3e1-401f-8cd0-af50b64b8460", - "width": 70, - "x": -3850, - "y": 2870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f540b5-9e0e-44ca-b97b-68fb732286d3", - "width": 70, - "x": -3850, - "y": 2730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "104d8795-f8d8-4314-a6d4-fb903f500948", - "width": 70, - "x": -3850, - "y": 2590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e1e019ef-38d7-4086-bdc8-b5bad935c164", - "width": 70, - "x": -3850, - "y": 2660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d803da1b-c82d-48c5-9726-ac630b99f8e1", - "width": 70, - "x": -3850, - "y": 2450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4843dfc7-a004-4c0b-bfdf-828bd7948df3", - "width": 70, - "x": -3850, - "y": 2520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3667ee87-b3fa-4c4d-97ea-666bb0422d80", - "width": 70, - "x": -3850, - "y": 2380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a3387ff-07dd-4a4a-9b28-251ad71299f3", - "width": 70, - "x": -3850, - "y": 2240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e46099d7-9249-4945-bec0-3d602a52397c", - "width": 70, - "x": -3850, - "y": 2310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a8f6763-bf36-4072-bfef-fcd29cef11c6", - "width": 70, - "x": -3850, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "52196847-1b63-4e8b-a51a-cb067fdb6587", - "width": 70, - "x": -3850, - "y": 2170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc6eaf67-2645-4284-82f8-5875b2044213", - "width": 70, - "x": -3780, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "981a61ec-42b8-4948-a979-570d1b4138c4", - "width": 70, - "x": -3640, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05e0f8b4-9cef-4376-bb44-c62794de2e1f", - "width": 70, - "x": -3710, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2e5ba6f9-5e45-447d-9f94-8226ca186213", - "width": 70, - "x": -3290, - "y": 1960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64369bf7-1b3d-45c6-95dc-1d6a36eea540", - "width": 70, - "x": -3290, - "y": 1820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31bd6ae9-29f6-4f9d-a028-6b8669707c94", - "width": 70, - "x": -3290, - "y": 1890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3524fbb1-ec7e-4967-b2b0-3572615b1d30", - "width": 70, - "x": -3290, - "y": 1680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e8c4be4-e09e-4aee-8e3d-d931b6fe090b", - "width": 70, - "x": -3290, - "y": 1750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd69541d-ec74-4cc1-b9f5-d5361c707e5d", - "width": 70, - "x": -3290, - "y": 1610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cd0fbc8b-3389-4d59-a0ee-80daaa3321e9", - "width": 70, - "x": -3290, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85269525-53e0-47f9-8095-2a9d0e278a24", - "width": 70, - "x": -3570, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "398ba9c3-3b93-4aca-be59-d6b06429d715", - "width": 70, - "x": -3290, - "y": 2030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01d0b9e9-41ab-4e56-bc13-063bbdc601b4", - "width": 70, - "x": -3430, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "addba33e-2474-4fdb-99d3-0971b560b6cc", - "width": 70, - "x": -3500, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65327d57-0519-4532-9b40-dce324341caa", - "width": 70, - "x": -3360, - "y": 2100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e99730b-5365-45bd-8bba-bda0adb591de", - "width": 70, - "x": -350, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6078403-6860-45f3-885f-8c46e25f5f04", - "width": 70, - "x": -350, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d834c819-7174-4c2e-8519-53e4c41d7ae4", - "width": 70, - "x": -420, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9746178d-0016-4455-9589-a45c4dfeb0ad", - "width": 70, - "x": -350, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a994d75-2502-4ff8-9673-2c5a8c186a80", - "width": 70, - "x": -490, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e780ceb-1c86-47f3-818b-39a949bb900e", - "width": 70, - "x": -630, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e588f9b6-17ba-4dee-9616-9c44aaa4ad07", - "width": 70, - "x": -560, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d3cd763c-3a87-4168-9045-d8104692b29a", - "width": 70, - "x": -770, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0b822e1-1c2f-47be-aeb7-37c72973580f", - "width": 70, - "x": -700, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c608f7fb-2e15-45fa-950e-490bbcdb904d", - "width": 70, - "x": -840, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b1c159a-827a-4993-8827-7fa939453849", - "width": 70, - "x": -980, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4bd34845-b206-439c-87f4-4559b45288fc", - "width": 70, - "x": -910, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "681936f0-0740-4df4-8a8b-ec8b26b43717", - "width": 70, - "x": -1120, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e39835a-c41e-4e9f-9914-63fe5d475191", - "width": 70, - "x": -1050, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c79e4d1c-f29c-4529-bb17-e946a1ca5886", - "width": 70, - "x": -1190, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9dcc459-588e-4d90-a699-0783d330a1a9", - "width": 70, - "x": -1330, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "49a56c43-3abb-4376-b4f0-0eebe197b97f", - "width": 70, - "x": -1260, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6ecbaa4-6fe4-4674-8abc-16810882f095", - "width": 70, - "x": -1470, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ba78387-45f8-4da0-8522-2257f3f7f70b", - "width": 70, - "x": -1400, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c40dbf1-7e7a-49d2-aa1f-6e1fa812bbe4", - "width": 70, - "x": -1540, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b119512-90fe-4e41-9020-9986f46cec15", - "width": 70, - "x": -1680, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "222468dd-48f4-4733-a462-20502de63c7e", - "width": 70, - "x": -1610, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d2bff3fe-08fb-4dff-942d-f2701ad5ac73", - "width": 70, - "x": -1820, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "55dc1d9a-a750-4aa4-b98a-670c6ee64126", - "width": 70, - "x": -1750, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "350420a3-639f-4254-bed6-c175787bb722", - "width": 70, - "x": -1890, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0c45e33-91ff-4a7b-8b7b-c66b39b83c63", - "width": 70, - "x": -2030, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "232f4fdb-207f-4fff-a634-884cb463dc08", - "width": 70, - "x": -1960, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c6a1c43-374a-4b4b-96b4-518ff6748d78", - "width": 70, - "x": -2170, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "68e95d90-bea7-4b2d-b8b5-ed676543a301", - "width": 70, - "x": -2100, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2320340-830f-44e8-bb6b-d770ec9dfd34", - "width": 70, - "x": -2240, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "176f09b6-32b3-4892-a626-99bf335b06c4", - "width": 70, - "x": -2380, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a570c37-c3b2-42d0-b784-5fcc36720b52", - "width": 70, - "x": -2310, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6cad8849-c196-4793-8e5b-6ee74a4c3f19", - "width": 70, - "x": -2520, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b633f17-41be-499f-85e2-df4cce4c64b2", - "width": 70, - "x": -2450, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a2e934f-52c8-44c4-b05b-40c8e4b42ece", - "width": 70, - "x": -2590, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c6e3bed-d4c6-4915-a160-e7fa043d2fdc", - "width": 70, - "x": 1610, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ace4863f-fcd7-42e8-8f48-594c7dfc8daa", - "width": 70, - "x": 1680, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec7a4f3f-7f12-41df-b88e-ea24bb690a79", - "width": 70, - "x": 1470, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58359a24-e04a-44c9-9e37-2b73e9ffb749", - "width": 70, - "x": 1540, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f4ff474-9007-4114-9252-153e2b20fee9", - "width": 70, - "x": 1400, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f01b19cb-e6e2-46a0-8ca8-85df499105bb", - "width": 70, - "x": 1260, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01c99f14-1b12-4e1d-99b5-a5a0e3e8d4bd", - "width": 70, - "x": 1330, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83f71c41-ba48-4b83-85c7-c45f1ff390d9", - "width": 70, - "x": 1120, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf36c780-6e3e-4fbc-8976-b34764ccf629", - "width": 70, - "x": 1190, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d02beee8-b3a8-4690-8c8e-020251c71e7b", - "width": 70, - "x": 1050, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "09f4f831-1b0a-47a3-91eb-7bfa4d200e0f", - "width": 70, - "x": 910, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86462c1c-c6b3-4cc8-be86-1e51c1584955", - "width": 70, - "x": 980, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8c263d25-3e7f-45b8-bc9e-5583d7fc1f33", - "width": 70, - "x": 770, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79632306-a03c-41d3-b7a9-73ba6e58e09e", - "width": 70, - "x": 840, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9fca6bee-89e2-4750-8a9c-e7d15702eec8", - "width": 70, - "x": 700, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "35613c0c-25b5-4b14-a401-550b69b57c1e", - "width": 70, - "x": 560, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "x": -3220, + "y": 3640, + "zOrder": 6, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", - "width": 70, - "x": 630, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "367b9fb5-f764-47a9-abf0-b4bca3be3e64", + "width": 0, + "x": -3232, + "y": 3990, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", - "width": 70, - "x": 420, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "5f5776b6-0228-4b20-b536-48c3a449edf8", + "width": 0, + "x": -3232, + "y": 4200, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", - "width": 70, - "x": 490, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "699a89e0-f262-4922-94f4-06b677b1690e", + "width": 0, + "x": -3232, + "y": 4410, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", - "width": 70, - "x": 350, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "9343d17c-7821-403e-bec3-1ea7e8c34047", + "width": 0, + "x": -3235, + "y": 4620, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", - "width": 70, - "x": 210, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "aa4ebfe0-4339-402d-a4a2-3f3f9aa09888", + "width": 0, + "x": -3231, + "y": 4830, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", - "width": 70, - "x": 280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "e50ff460-d090-4876-b460-3e13f875d7ea", + "width": 0, + "x": -3233, + "y": 5040, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", - "width": 70, - "x": 70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "e12d6482-65fc-4eec-bb1c-af70e2f5b587", + "width": 0, + "x": -3232, + "y": 5250, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", - "width": 70, - "x": 140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "eeeff3f5-f20b-4b65-a8ca-ef0a18a694dc", + "width": 0, + "x": -3234, + "y": 5460, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", - "width": 70, - "x": 0, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "d9cf91a6-0d2d-481e-9d5f-3c76bc9fb8d3", + "width": 0, + "x": -3233, + "y": 5670, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", - "width": 70, - "x": -140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "6889692b-bb8a-42f5-b92e-7d05884c3956", + "width": 0, + "x": -3233, + "y": 5880, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", - "width": 70, - "x": -70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "9b1b9e09-c7d4-44b3-9099-cc28987bc93d", + "width": 0, + "x": -3233, + "y": 6090, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", - "width": 70, - "x": -280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "99b93efe-61bd-4898-a661-f4f073ff5daf", + "width": 0, + "x": -3232, + "y": 6300, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a4a0982-f49f-4bbe-8e28-204e8c88f840", - "width": 70, - "x": -210, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ad82d6e-20fa-442a-adbe-998e513a0c36", - "width": 70, - "x": 1960, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c34886-cde4-463b-b857-6538e1f41a93", - "width": 70, - "x": 1960, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", - "width": 70, - "x": 1960, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "d161e608-d6a7-4475-b6b1-c724d1ec524d", + "width": 0, + "x": -3232, + "y": 6510, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", - "width": 70, - "x": 1820, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "d061e83a-2103-444d-a61e-36eee1a38700", + "width": 0, + "x": -3233, + "y": 6720, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", - "width": 70, - "x": 1890, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "1e5c958a-d494-4bf4-b1dd-efcb1c13d9aa", + "width": 0, + "x": -3235, + "y": 6930, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 90, - "customSize": true, - "height": 70, + "customSize": false, + "height": 0, "layer": "", - "name": "sand", - "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", - "width": 70, - "x": 1750, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "road_block", + "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", + "width": 0, + "x": -3234, + "y": 7140, + "zOrder": 12610, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 3920, "layer": "", - "name": "sand", - "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", + "name": "concrete_1", + "persistentUuid": "e50b3ae6-01f4-498f-a424-fbe09e890138", "width": 70, - "x": 1960, - "y": 3290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "x": -3570, + "y": 3640, + "zOrder": -2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { "angle": 0, "customSize": true, - "height": 70, + "height": 3920, "layer": "", - "name": "sand", - "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", + "name": "concrete_1", + "persistentUuid": "9c82384e-7f20-4090-9104-2af969cc37d2", "width": 70, - "x": 1960, - "y": 3220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "x": -2870, + "y": 3640, + "zOrder": -2, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, @@ -53206,136 +37468,116 @@ "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", - "width": 70, - "x": 1960, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], + "name": "concrete_1", + "persistentUuid": "e7a6ff30-5b2a-44b8-8da9-b91a57a61740", + "width": 140, + "x": -2870, + "y": 3570, + "zOrder": 1, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", - "name": "sand", - "persistentUuid": "b32bc620-2222-4888-a0ba-b142ceed1637", - "width": 70, - "x": 2030, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "concrete_1", + "persistentUuid": "56857c88-d539-4ba6-a8a7-6353fa6b857c", + "width": 140, + "x": -3640, + "y": 3570, + "zOrder": 1, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, - "height": 70, + "height": 3845, "layer": "", - "name": "sand", - "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "hidden_separate", + "persistentUuid": "0ef98db6-7d9e-4b22-b706-6a5abfdfdf6b", + "width": 15, + "x": -2814, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, - "height": 70, + "height": 3845, "layer": "", - "name": "sand", - "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", - "width": 70, - "x": 2870, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], + "name": "hidden_separate", + "persistentUuid": "1b7bf7dc-0ec4-4303-ae2e-d04e742028db", + "width": 15, + "x": -3567, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", + "persistentUuid": "b79fc1bc-fab8-4c27-9b03-4787305df5de", "width": 70, - "x": 2660, + "x": 3220, "y": 3150, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", + "persistentUuid": "c16812c4-5fcf-4be4-a095-85dc6095fcff", "width": 70, - "x": 2730, - "y": 3150, + "x": 3360, + "y": 1120, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 0, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", + "persistentUuid": "1f1c6247-a682-4d92-b2e6-5e8c76545498", "width": 70, - "x": 2590, - "y": 3150, + "x": 3220, + "y": 1120, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], @@ -53347,95 +37589,95 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", + "persistentUuid": "ac740f90-4902-427e-9cc9-033c28ace14a", "width": 70, - "x": 2450, - "y": 3150, + "x": 3290, + "y": 1120, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 5 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": -90, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", + "persistentUuid": "6c3a8caa-08b4-4be6-85c1-4845cea12b44", "width": 70, - "x": 2520, - "y": 3150, + "x": 3360, + "y": -560, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", + "persistentUuid": "3d618bcd-742f-4d91-9d83-d19d550e3e49", "width": 70, - "x": 2310, - "y": 3150, + "x": -1330, + "y": -560, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", + "persistentUuid": "9910a106-0125-4601-8a39-e06519e89634", "width": 70, - "x": 2380, - "y": 3150, + "x": -1330, + "y": -280, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", + "persistentUuid": "2f54f34b-2c2c-4a8a-b4e2-af5d66a058ac", "width": 70, - "x": 2240, - "y": 3150, + "x": -3290, + "y": -280, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], @@ -53447,55 +37689,55 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", + "persistentUuid": "502e2d15-39b4-43c4-a1d3-0f0bc01d9bda", "width": 70, - "x": 2100, - "y": 3150, + "x": -3850, + "y": 3640, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", + "persistentUuid": "4a8f6763-bf36-4072-bfef-fcd29cef11c6", "width": 70, - "x": 2170, - "y": 3150, + "x": -3850, + "y": 2100, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", + "persistentUuid": "cd0fbc8b-3389-4d59-a0ee-80daaa3321e9", "width": 70, - "x": 3010, - "y": 3150, + "x": -3290, + "y": 2100, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], @@ -53507,30 +37749,30 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", + "persistentUuid": "6e99730b-5365-45bd-8bba-bda0adb591de", "width": 70, - "x": 3080, - "y": 3150, + "x": -350, + "y": 3500, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], "initialVariables": [] }, { - "angle": 90, + "angle": 180, "customSize": true, "height": 70, "layer": "", "name": "sand", - "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", + "persistentUuid": "c6078403-6860-45f3-885f-8c46e25f5f04", "width": 70, - "x": 2940, - "y": 3150, + "x": -350, + "y": 3430, "zOrder": 12616, "numberProperties": [ { @@ -53547,15 +37789,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", + "persistentUuid": "9746178d-0016-4455-9589-a45c4dfeb0ad", "width": 70, - "x": 3150, - "y": 3150, + "x": -350, + "y": 3360, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], @@ -53567,15 +37809,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", + "persistentUuid": "6a2e934f-52c8-44c4-b05b-40c8e4b42ece", "width": 70, "x": -2590, - "y": 3430, + "y": 3360, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], @@ -53587,15 +37829,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", + "persistentUuid": "69c34886-cde4-463b-b857-6538e1f41a93", "width": 70, - "x": -2590, + "x": 1960, "y": 3500, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 4 } ], "stringProperties": [], @@ -53607,15 +37849,15 @@ "height": 70, "layer": "", "name": "sand", - "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", + "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", "width": 70, - "x": -2590, - "y": 3570, + "x": 1960, + "y": 3150, "zOrder": 12616, "numberProperties": [ { "name": "animation", - "value": 6 + "value": 7 } ], "stringProperties": [], @@ -53721,26 +37963,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18caad8d-db60-44a7-97da-14ea41c53569", - "width": 70, - "x": -3850, - "y": 3570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 90, "customSize": true, @@ -53781,66 +38003,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "3606b58e-ebda-4f4d-a9f0-d71800e92246", - "width": 2380, - "x": -350, - "y": 3500, - "zOrder": 126, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "Water_cover", - "persistentUuid": "54c0db0a-e705-4967-bfd0-c5605536b4c8", - "width": 70, - "x": 1960, - "y": 3150, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "ba7f2656-6d9f-4069-8640-c52fe8cca255", - "width": 1260, - "x": 2030, - "y": 3150, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "Water_cover", - "persistentUuid": "8acc75b9-9d6b-46b2-8b1c-e0855d4af942", - "width": 70, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, @@ -53871,21 +38033,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "3025dfca-2a78-42fe-88ea-f5b5201ce6a3", - "width": 2170, - "x": -2520, - "y": 3360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, @@ -53901,21 +38048,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "name": "Water_cover", - "persistentUuid": "48dcf900-a30a-4257-af94-b974326e3bf8", - "width": 70, - "x": 3360, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, @@ -53931,66 +38063,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "d8d703b7-023b-4239-9846-13360a5bd1cb", - "width": 2030, - "x": -3290, - "y": -280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "Water_cover", - "persistentUuid": "bea045f7-b983-4e23-a5ac-50bd4c1a44ac", - "width": 70, - "x": -3290, - "y": -210, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "56d52b0e-7060-4707-8279-45068ec4eefc", - "width": 560, - "x": -3850, - "y": 2100, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "Water_cover", - "persistentUuid": "edcb6f9a-2c16-46a5-83ff-a2281a89d842", - "width": 70, - "x": -3850, - "y": 2170, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, { "angle": 0, "customSize": true, @@ -54081,32 +38153,6 @@ "stringProperties": [], "initialVariables": [] }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "door", - "persistentUuid": "99f5ac72-0a60-4827-987e-71768de59cb4", - "width": 140, - "x": -980, - "y": 560, - "zOrder": 12643562, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "2" - }, - { - "name": "Direction", - "type": "string", - "value": "-90" - } - ] - }, { "angle": 0, "customSize": true, @@ -54958,6 +39004,563 @@ "numberProperties": [], "stringProperties": [], "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1610, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "e808c05e-213a-4671-b512-155e1fb20abe", + "width": 70, + "x": -3290, + "y": -70, + "zOrder": 12643571, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 490, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "d216e664-4e93-432f-be5c-c13c75728a3a", + "width": 70, + "x": -3290, + "y": 1610, + "zOrder": 12643572, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "keepRatio": true, + "layer": "", + "name": "beach_sand_4", + "persistentUuid": "e3055e6b-8c42-4dfb-94fa-8b626c6a8a2b", + "width": 0, + "x": -3290, + "y": 1540, + "zOrder": 12643573, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "keepRatio": true, + "layer": "", + "name": "beach_sand_4", + "persistentUuid": "4e9776f2-5fa4-419a-b1c9-172ff7f53b89", + "width": 0, + "x": -3290, + "y": -140, + "zOrder": 12643574, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "ce577b45-a6b9-497e-9826-80bf62d34195", + "width": 0, + "x": -3290, + "y": -210, + "zOrder": 12643575, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "depth": 1, + "height": 1890, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "9dc9d21b-2551-47a7-9ba8-de2477d628b3", + "width": 70, + "x": -2310, + "y": -1190, + "zOrder": 12643576, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 210, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "fc99620b-efa0-4423-b409-4333981f99fa", + "width": 70, + "x": -1330, + "y": -490, + "zOrder": 12643577, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "depth": 1, + "height": 4620, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "944ff9df-5eb5-4138-ab44-389d729de5c0", + "width": 70, + "x": 1015, + "y": -2835, + "zOrder": 12643578, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 1610, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "e1abebbd-1c29-4518-885d-6b3637008bb0", + "width": 70, + "x": 3360, + "y": -490, + "zOrder": 12643579, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 1960, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "15b64135-8005-43f8-a718-3fad1159a1ea", + "width": 70, + "x": 3220, + "y": 1190, + "zOrder": 12643580, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "depth": 1, + "height": 1190, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "75ddf69d-bd91-4c7b-93ca-a2ddd37075bc", + "width": 70, + "x": 2590, + "y": 2590, + "zOrder": 12643581, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 280, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "59c35021-d15e-4982-9c84-17befd0dbb04", + "width": 70, + "x": 1960, + "y": 3220, + "zOrder": 12643582, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "depth": 1, + "height": 2240, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "c835d827-2cfe-4677-86bf-21daba8db012", + "width": 70, + "x": 805, + "y": 2415, + "zOrder": 12643583, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "depth": 1, + "height": 2170, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "8f12d25d-1f43-48b7-8f14-9d8d3452adfb", + "width": 70, + "x": -1470, + "y": 2310, + "zOrder": 12643584, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 210, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "bad60d0e-beff-4bbe-bad6-f5f79bcf20e6", + "width": 70, + "x": -2590, + "y": 3430, + "zOrder": 12643585, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1470, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "fcf800ac-2631-4fa0-92f2-22565a7b0157", + "width": 70, + "x": -3850, + "y": 2170, + "zOrder": 12643586, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "depth": 1, + "height": 490, + "keepRatio": true, + "layer": "", + "name": "beach_sand_3", + "persistentUuid": "72892592-bdeb-4da5-bd8d-bbd5b71fc8bf", + "width": 70, + "x": -3570, + "y": 1890, + "zOrder": 12643587, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1330, + "keepRatio": true, + "layer": "", + "name": "beach_sand_5", + "persistentUuid": "0709e65f-1d89-4157-86ad-ac5ee89f8ad3", + "width": 210, + "x": -1890, + "y": 980, + "zOrder": 12643588, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 210, + "keepRatio": true, + "layer": "", + "name": "beach_sand_5", + "persistentUuid": "1a801f94-7819-44df-88a1-e03d676c8822", + "width": 490, + "x": -2450, + "y": 560, + "zOrder": 12643589, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 70, + "keepRatio": true, + "layer": "", + "name": "beach_sand_5", + "persistentUuid": "75213ac3-53f4-4305-b31b-a1b82dfd36ae", + "width": 210, + "x": -2450, + "y": 770, + "zOrder": 12643590, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 2310, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "bc083076-2ade-4c19-904b-d4b5a3bcccbd", + "width": 140, + "x": -3080, + "y": 140, + "zOrder": 12643591, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 210, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "5401eaa7-7d6e-448b-8b29-7bec83d37494", + "width": 2170, + "x": -3080, + "y": -70, + "zOrder": 12643591, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 140, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "e67786ac-78da-4bcb-8759-ac86d33bf5f3", + "width": 560, + "x": -3640, + "y": 2310, + "zOrder": 12643592, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1120, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "bcc033ff-f866-476b-8df0-2dab37df45c0", + "width": 140, + "x": -3640, + "y": 2450, + "zOrder": 12643593, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1470, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "718fe720-9528-4a47-8406-352fddaf6f87", + "width": 140, + "x": 770, + "y": -350, + "zOrder": 12643594, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 140, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "1082519b-b5eb-47aa-a4a0-aee5eb02416d", + "width": 280, + "x": -1190, + "y": -210, + "zOrder": 12643594, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 1190, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "f5d51ae2-0626-4e89-aa13-f2989857f9da", + "width": 140, + "x": -910, + "y": 1260, + "zOrder": 12643594, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 140, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "6d869079-e74e-491b-9812-08c2e8398eaa", + "width": 1820, + "x": -910, + "y": 1120, + "zOrder": 12643594, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 140, + "keepRatio": true, + "layer": "", + "name": "beach_sand_6", + "persistentUuid": "ef3fd12c-7f5b-45e6-972a-da8238ea3301", + "width": 1960, + "x": -1190, + "y": -350, + "zOrder": 12643594, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 3850, + "keepRatio": true, + "layer": "", + "name": "Bridge", + "persistentUuid": "837f7806-c647-44c3-9868-98ff6e4a4a4f", + "width": 300, + "x": -3100, + "y": 3710, + "zOrder": 12643595, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 3850, + "keepRatio": true, + "layer": "", + "name": "Bridge", + "persistentUuid": "1dbb9dd6-901b-42f3-983f-a71c727b0001", + "width": 300, + "x": -3570, + "y": 3710, + "zOrder": 12643595, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "keepRatio": true, + "layer": "", + "name": "crosshair", + "persistentUuid": "808484fa-24aa-4068-9347-4591d049c015", + "width": 0, + "x": -210, + "y": 1190, + "zOrder": 12643596, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 34, + "keepRatio": true, + "layer": "Debug", + "name": "fps", + "persistentUuid": "7a76b0af-6c17-4bb9-b114-4c8700fe0ab5", + "width": 419, + "x": 630, + "y": 0, + "zOrder": 12643597, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] } ], "objects": [ @@ -57660,13 +42263,13 @@ "effects": [], "behaviors": [ { + "name": "Anchor", + "type": "AnchorBehavior::AnchorBehavior", "bottomEdgeAnchor": 0, "leftEdgeAnchor": 0, - "name": "Anchor", "relativeToOriginalWindowSize": true, "rightEdgeAnchor": 2, "topEdgeAnchor": 0, - "type": "AnchorBehavior::AnchorBehavior", "useLegacyBottomAndRightAnchors": false } ], @@ -59462,11 +44065,11 @@ }, { "assetStoreId": "", - "height": 32, + "height": 70, "name": "beach_sand_2", "texture": "assets\\Road\\map_edge\\tile_19.png", "type": "TiledSpriteObject::TiledSprite", - "width": 32, + "width": 70, "variables": [], "effects": [], "behaviors": [] @@ -61844,7 +46447,7 @@ ] }, { - "adaptCollisionMaskAutomatically": true, + "adaptCollisionMaskAutomatically": false, "assetStoreId": "", "name": "icons", "type": "Sprite", @@ -61873,7 +46476,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/uziSilencer.png", "points": [], "originPoint": { @@ -61887,26 +46490,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -61921,40 +46505,21 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/uziLongSilencer.png", "points": [], "originPoint": { "name": "origine", - "x": 121.5, - "y": 64.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "x": 121.5, + "y": 64.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] } ] } @@ -61969,7 +46534,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/uziLong.png", "points": [], "originPoint": { @@ -61983,26 +46548,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62017,7 +46563,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/uzi.png", "points": [], "originPoint": { @@ -62031,26 +46577,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62065,7 +46592,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/sniper.png", "points": [], "originPoint": { @@ -62079,26 +46606,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62113,7 +46621,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/shotgunShort.png", "points": [], "originPoint": { @@ -62127,26 +46635,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62161,7 +46650,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/shotgun.png", "points": [], "originPoint": { @@ -62175,26 +46664,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62209,7 +46679,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/rocketlauncherModern.png", "points": [], "originPoint": { @@ -62223,26 +46693,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62257,7 +46708,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/rocketlauncher.png", "points": [], "originPoint": { @@ -62271,26 +46722,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62305,7 +46737,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/pistolSilencer.png", "points": [], "originPoint": { @@ -62319,26 +46751,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62353,7 +46766,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/pistol.png", "points": [], "originPoint": { @@ -62367,26 +46780,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62401,7 +46795,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/machinegunLauncher.png", "points": [], "originPoint": { @@ -62415,26 +46809,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62449,7 +46824,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/machinegun.png", "points": [], "originPoint": { @@ -62463,26 +46838,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62497,7 +46853,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/knifeRound_smooth.png", "points": [], "originPoint": { @@ -62511,26 +46867,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62545,7 +46882,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/knifeRound_sharp.png", "points": [], "originPoint": { @@ -62559,26 +46896,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62593,7 +46911,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/knife_smooth.png", "points": [], "originPoint": { @@ -62607,26 +46925,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62641,7 +46940,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/knife_sharp.png", "points": [], "originPoint": { @@ -62655,26 +46954,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62689,7 +46969,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/grenadeVintage.png", "points": [], "originPoint": { @@ -62703,26 +46983,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62737,7 +46998,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/grenadeSmoke.png", "points": [], "originPoint": { @@ -62751,26 +47012,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62785,7 +47027,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/grenadeFlash.png", "points": [], "originPoint": { @@ -62799,26 +47041,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62833,7 +47056,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/grenade.png", "points": [], "originPoint": { @@ -62847,26 +47070,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62881,7 +47085,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/flamethrower_short.png", "points": [], "originPoint": { @@ -62895,26 +47099,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -62929,7 +47114,7 @@ "timeBetweenFrames": 0.08, "sprites": [ { - "hasCustomCollisionMask": true, + "hasCustomCollisionMask": false, "image": "assets/weapons/icons/flamethrower_long.png", "points": [], "originPoint": { @@ -62943,26 +47128,7 @@ "x": 0, "y": 0 }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 169, - "y": 1 - }, - { - "x": 169, - "y": 129 - }, - { - "x": 0, - "y": 129 - } - ] - ] + "customCollisionMask": [] } ] } @@ -63080,6 +47246,102 @@ ] } ] + }, + { + "assetStoreId": "", + "height": 70, + "name": "beach_sand_3", + "texture": "assets/Road/map_edge/tile_12.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 70, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 70, + "name": "beach_sand_4", + "texture": "assets/Road/map_edge/tile_11.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 70, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 70, + "name": "beach_sand_5", + "texture": "assets/Road/sand/dirt.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 70, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 70, + "name": "beach_sand_6", + "texture": "assets/Road/side_walk/sand.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 70, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 302, + "name": "Bridge", + "texture": "assets/bridge/bridge.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 300, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "fps", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "fps", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": { + "b": 112, + "g": 112, + "r": 112 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "fps", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "112;112;112" + } } ], "objectsFolderStructure": { @@ -63143,6 +47405,9 @@ { "objectName": "reloading" }, + { + "objectName": "fps" + }, { "objectName": "debugToggle" }, @@ -63234,6 +47499,18 @@ { "objectName": "beach_sand_2" }, + { + "objectName": "beach_sand_6" + }, + { + "objectName": "beach_sand_3" + }, + { + "objectName": "beach_sand_4" + }, + { + "objectName": "beach_sand_5" + }, { "objectName": "sand_1" }, @@ -63269,6 +47546,9 @@ { "objectName": "bridge" }, + { + "objectName": "Bridge" + }, { "objectName": "road_2" }, @@ -63488,7 +47768,6 @@ "colorG": 176, "colorR": 74, "creationTime": 0, - "folded": true, "name": "ZOrders", "source": "", "type": "BuiltinCommonInstructions::Group", @@ -63587,6 +47866,16 @@ "=", "-10" ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "beach_sand_6", + "=", + "-11" + ] } ] },