diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f60b8f5b7..36f31839f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,14 +81,14 @@ jobs: cd Project/build/gdExport npm i --save-dev electron-builder export PYTHON_PATH=/usr/bin/python3 - ./node_modules/.bin/electron-builder -m dmg + ./node_modules/.bin/electron-builder - name: Upload a Build Artifact uses: actions/upload-artifact@v2 with: # Upload all potential executables name: mac - path: Project/build/gdExport/dist/*.dmg + path: Project/build/gdExport/dist/*.* build_for_windows: runs-on: windows-latest diff --git a/scripts/collect-layout-data.py b/scripts/collect-layout-data.py new file mode 100644 index 000000000..71ff94315 --- /dev/null +++ b/scripts/collect-layout-data.py @@ -0,0 +1,72 @@ +# +# Declan Reid 2024 +# +# This is a simple script to collect all the data from a +# layout file in a format usable in scripts. +# +# To run this script, invoke it from the root of the repo as such: +# $ python3 scripts/collect-layout-data.py src/layouts/{scene}.json +# For example: +# $ python3 scripts/collect-layout-data.py src/layouts/city.json +# This will generate a new version of the file in the root of the repo. +# You can then open this file and use the data to your heart's content. +# + + +# +# THIS SCRIPT IS NOT COMPLETE, BUT IS FUNCTIONAL IN SOME FORM +# + +import sys +import json + +if len(sys.argv) < 2: + print("There's not enough arguments!") + exit() + +filePath = sys.argv[1] + +print("Opening "+str(filePath)+"...") + +try: + fileToConvert = open(filePath, 'r') + print("Success!") +except FileNotFoundError: + print("Failed! That file doesn't seem to exist!") + exit() + +print("Converting the file to JSON type...") + +try: + fileJSON = json.loads(fileToConvert.read()) + fileToConvert.close() + print("Success!") +except json.decoder.JSONDecodeError: + print("Failed! Something about that JSON isn't right!") + exit() + +print("Collecting objects...") + +try: + objects = fileJSON["instances"] + print("Success!") +except KeyError: + print("Failed! The objects section (instances) was unable to be found!") + exit() + +print("Time to iterate!") + +object_names = [ + +] + +for object in objects: + if object["name"] not in object_names: + object_names.append(object["name"]) + +print(object_names) + +# print('{') +# for name in sorted(object_names): +# print('"'+name+'": 1,') +# print('}') \ No newline at end of file diff --git a/scripts/layer-correction.py b/scripts/layer-correction.py new file mode 100644 index 000000000..79047a2b3 --- /dev/null +++ b/scripts/layer-correction.py @@ -0,0 +1,148 @@ +# +# Declan Reid 2024 +# +# This is a simple script to fix z-layers on objects. +# This will set all objects to an established "correct" height, +# ensuring that we aren't getting objects with a Z Order of 12643524. +# +# To run this script, invoke it from the root of the repo as such: +# $ python3 scripts/layer-correction.py src/layouts/{scene}.json +# For example: +# $ python3 scripts/layer-correction.py src/layouts/city.json +# This will generate a new version of the file in the root of the repo. +# You can then copy this file into the layouts folder. +# + +values = { + "AmmoText": 98, # How much ammo you have + "Fences": 5, # Fences + "Health": 98, # Health + "Niko": 50, # Player + "Placeholder": 49, # This acts as the player collision + "Transitions": 1, # Fading into rooms + "Water": 0, # This is water + "Water_cover": 0, # This is non-swimmable water, used under sand edges + "Wheel_info": 98, # Which weapon is being used + "You_lose": 99, # WASTED + "ammo": 45, # Ammo found that you can reload with + "beach_sand_1": 1, # The main sand on a beach + "beach_sand_2": 1, # The outer sand on a beach + "bridge": 10, # The frame above the bridge + "concrete_1": 1, # Pathing on the side of the bridge + "crossair": 100, # Crosshair + "deco": 55, # Things like umbrellas + "door": 1, # Door trigger + "energy": 45, # Ammo for taser + "flame_thrower_fire": 53, # Fire from the flamethrower + "flame_thrower_fire_collision": 53, # Collision for the fire from the flamethrower + "foliage": 54, # Trees + "grass_tiled": 1, # Grass + "green_leaves_particle": 48, # Particles from walking into a tree + "ground_1": 1, # The basketball ground + "ground_elements": 1, # Lines on the court + "gun1": 1, # Pistol + "gun2": 1, # Rifle + "gun3": 1, # Flamethrower + "gun4": 1, # Sniper + "gun5": 1, # Rocket Launcher + "hidden_separate": 1, # Used as bridge border + "mele1": 1, # Taser + "mele2": 1, # Knife + "mouse_point": 100, # Little black square. Perhaps the old crosshair + "reloading": 1, # "Reloading" text + "road": 1, # This is all forms of the road + "road_1": 1, # This is an extra version of the road, used in the lower map. + "road_2": 1, # This is an extra version of the road, used in the lower map. + "road_3": 1, # This is an extra version of the road, used in the lower map. + "road_4": 1, # This is an extra version of the road, used in the lower map. + "road_block": 4, # Temp road barriers + "roof_tops": 60, # Roof + "sand": 1, # This is all forms of sand + "sand_1": 1, # This is an extra version of the sand, used in the lower map. + "sand_2": 1, # This is an extra version of the sand, used in the lower map. + "sports_equipments": 6, # Basketball hoop + "sports_equipments_movable": 6, # Basketball + "trash_movable": 6, # The pushable boxes + "weapon_icons": 98, # Weapon icons + "weaponholding": 98, # Name of held weapon +} + + + + +import sys +import json + +if len(sys.argv) < 2: + print("There's not enough arguments!") + exit() + +filePath = sys.argv[1] + +print("Opening %s..." % filePath) + +try: + fileToConvert = open(filePath, 'r') + print("Success!") +except FileNotFoundError: + print("Failed! That file doesn't seem to exist!") + exit() + +print("Converting the file to JSON type...") + +try: + fileJSON = json.loads(fileToConvert.read()) + fileToConvert.close() + print("Success!") +except json.decoder.JSONDecodeError: + print("Failed! Something about that JSON isn't right!") + exit() + +print("Collecting objects...") + +try: + instances = fileJSON["instances"] + print("Success!") +except KeyError: + print("Failed! The objects section (instances) was unable to be found!") + exit() + +print("Time to iterate!") + +try: + changedThings = False + + for instance in instances: + if instance["name"] in values: + if not instance["zOrder"] == values[instance["name"]]: + instance["zOrder"] = values[instance["name"]] + changedThings = True + print('Changed the zOrder of %s with uuid %s to %s' % (instance["name"], instance["persistentUuid"], values[instance["name"]])) + else: + print('Instance of %s and uuid %s did not have a set value and was not changed.' % (instance["name"], instance["persistentUuid"])) + + if not changedThings: + print('Nothing changed! Exiting...') + exit() + +except Exception as e: + print('An exception occured while iterating through instances.') + print(e) + exit() + +print('Saving instances list back to json') +fileJSON["instances"] = instances + +fileName = filePath.split('/')[-1] +print("Saving json to file %s" % fileName) + +try: + file = open(fileName, 'w') + file.write(str(fileJSON).replace('\'', '"').replace('True', 'true').replace('False', 'false')) + file.close() +except Exception as e: + print('Some went wrong while saving to %s' % fileName) + print(e) + exit() + +print('Done!') \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/alignobject.json b/src/eventsFunctionsExtensions/alignobject.json index a62a95c72..e443c4811 100644 --- a/src/eventsFunctionsExtensions/alignobject.json +++ b/src/eventsFunctionsExtensions/alignobject.json @@ -44,6 +44,8 @@ "I0kdjvsICFML0APq45CZjZ6PyEQ2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Align object to horizontal center in screen.", diff --git a/src/eventsFunctionsExtensions/backgroundscene.json b/src/eventsFunctionsExtensions/backgroundscene.json deleted file mode 100644 index 0659c15f4..000000000 --- a/src/eventsFunctionsExtensions/backgroundscene.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "author": "", - "description": "", - "extensionNamespace": "", - "fullName": "", - "helpPath": "", - "iconUrl": "", - "name": "BackgroundScene", - "previewIconUrl": "", - "shortDescription": "", - "version": "", - "tags": [ - "" - ], - "eventsFunctions": [ - { - "description": "", - "fullName": "", - "functionType": "Action", - "name": "onFirstSceneLoaded", - "sentence": "", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "_RoomManager__RoomsRegistered", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "_RoomManager__RoomsRegistered", - "=", - "1" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BackgroundScene::loadBGScene" - }, - "parameters": [ - "", - "\"Rooms\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [], - "objectGroups": [] - }, - { - "description": "Loads a scene in the background", - "fullName": "Load a scene in the background", - "functionType": "Action", - "name": "loadBGScene", - "sentence": "Load the scene _PARAM1_ in the background", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": "const runtimeGame = runtimeScene.getGame();\nruntimeGame.scenes = runtimeGame.scenes || {};\nconst name = eventsFunctionContext.getArgument(\"sceneName\");\n\nfor(let layout of runtimeGame.getGameData().layouts) {\n if(layout.name === name) {\n const newScene = new gdjs.RuntimeScene(runtimeGame);\n newScene.loadFromScene(layout);\n runtimeGame.scenes[name] = newScene;\n newScene.onPause(); // Scene is paused for now\n break;\n }\n}\n", - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ], - "parameters": [ - { - "codeOnly": false, - "defaultValue": "", - "description": "Name of the scene to load", - "longDescription": "", - "name": "sceneName", - "optional": false, - "supplementaryInformation": "", - "type": "sceneName" - } - ], - "objectGroups": [] - }, - { - "description": "Pasues the current scene and switches to a background loaded scene.", - "fullName": "Pause scene and go to background scene", - "functionType": "Action", - "name": "switchToBGScene", - "sentence": "Pause current scene and go to background scene _PARAM1_", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": "const runtimeGame = runtimeScene.getGame();\nruntimeGame.scenes = runtimeGame.scenes || {};\nconst name = eventsFunctionContext.getArgument(\"sceneName\");\nconst newScene = runtimeGame.scenes[name];\n\nif(newScene) {\n runtimeScene.onPause();\n newScene.onResume();\n runtimeGame._sceneStack._stack.push(newScene);\n}\n", - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ], - "parameters": [ - { - "codeOnly": false, - "defaultValue": "", - "description": "Background Scene name to switch to", - "longDescription": "", - "name": "sceneName", - "optional": false, - "supplementaryInformation": "", - "type": "sceneName" - } - ], - "objectGroups": [] - }, - { - "description": "Brings the current Scene back in background and switch back to the previous scene", - "fullName": "Switch back to previous scene", - "functionType": "Action", - "name": "switchBack", - "sentence": "Switch back to paused scene", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": "const runtimeGame = runtimeScene.getGame();\nruntimeGame.scenes = runtimeGame.scenes || {};\n\nif (runtimeGame._sceneStack._stack.length <= 1) return null;\n\nruntimeGame._sceneStack._stack.pop();\n\n// Tell the new current scene it's being resumed\nconst currentScene = runtimeGame._sceneStack._stack[runtimeGame._sceneStack._stack.length - 1];\nif (currentScene) {\n currentScene.onResume();\n}\n", - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ], - "parameters": [], - "objectGroups": [] - } - ], - "eventsBasedBehaviors": [] -} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/bounce.json b/src/eventsFunctionsExtensions/bounce.json index 0ddd9ca44..bb941f291 100644 --- a/src/eventsFunctionsExtensions/bounce.json +++ b/src/eventsFunctionsExtensions/bounce.json @@ -29,6 +29,8 @@ "wWP8BSlAW0UP4NeaHa2LcmmDzmH2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/button.json b/src/eventsFunctionsExtensions/button.json deleted file mode 100644 index f25154f8c..000000000 --- a/src/eventsFunctionsExtensions/button.json +++ /dev/null @@ -1,1006 +0,0 @@ -{ - "author": "Paulo Amaral (@paulera)", - "category": "", - "extensionNamespace": "", - "fullName": "Button", - "helpPath": "", - "iconUrl": "", - "name": "Button", - "previewIconUrl": "", - "shortDescription": "Allows a Sprite to behave as a clickable button and optionally to be activated via keyboard.", - "version": "1.0", - "description": "Allows a Sprite to behave as a clickable button and optionally to be activated via keyboard.", - "tags": [ - "button", - "click", - "mouse", - "key" - ], - "authorIds": [], - "dependencies": [], - "eventsFunctions": [], - "eventsBasedBehaviors": [ - { - "description": "Interactive button that can be activated using the mouse or touch.", - "fullName": "Interactive button", - "name": "InteractiveButton", - "objectType": "Sprite", - "eventsFunctions": [ - { - "fullName": "", - "functionType": "Action", - "name": "onCreated", - "sentence": "", - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Set the initial state of ClickCaptured:\n-1 = No capture whatsoever\n0 = The click started outside the object\n1 = The click started on the object" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "-1" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "fullName": "", - "functionType": "Action", - "name": "doStepPreEvents", - "sentence": "", - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "If the behaviour have names set for the animation to use for various button states, apply it." - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Animation set", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "StrEqual" - }, - "parameters": [ - "Object.Behavior::PropertyANIMATION_DISABLED()", - "!=", - "\"\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "Object", - "Object.Behavior::PropertyANIMATION_DISABLED()" - ] - }, - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "-1" - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "StrEqual" - }, - "parameters": [ - "Object.Behavior::PropertyANIMATION_UP()", - "!=", - "\"\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "Object", - "Object.Behavior::PropertyANIMATION_UP()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "Object", - "Behavior", - "" - ] - }, - { - "type": { - "value": "StrEqual" - }, - "parameters": [ - "Object.Behavior::PropertyANIMATION_OVER()", - "!=", - "\"\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "Object", - "Object.Behavior::PropertyANIMATION_OVER()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isDown" - }, - "parameters": [ - "Object", - "Behavior", - "" - ] - }, - { - "type": { - "value": "StrEqual" - }, - "parameters": [ - "Object.Behavior::PropertyANIMATION_DOWN()", - "!=", - "\"\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "Object", - "Object.Behavior::PropertyANIMATION_DOWN()" - ] - } - ] - } - ] - } - ], - "parameters": [] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "If there is no click captured but there was a touch, set ClickCaptured to indicate if it happened outside the object (0) or inside the object (1)" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "-1" - ] - }, - { - "type": { - "value": "SourisBouton" - }, - "parameters": [ - "", - "Left" - ] - }, - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "Object", - "", - "", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "1" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "SourisSurObjet" - }, - "parameters": [ - "Object", - "", - "", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "0" - ] - } - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "Trigger after a button was clicked and released", - "fullName": "Clicked and released (full click)", - "functionType": "Condition", - "name": "isClicked", - "sentence": "_PARAM0_ was clicked with mouse/touch", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "False" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "A full click is considered when it was started on the object (ClickCaptured ==1), and the mouse is released on the object." - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "Object", - "", - "yes", - "" - ] - }, - { - "type": { - "value": "MouseButtonReleased" - }, - "parameters": [ - "", - "Left" - ] - }, - { - "type": { - "value": "VarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "1" - ] - }, - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "True" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "Trigger when the cursor is over the button", - "fullName": "Mouse is over", - "functionType": "Condition", - "name": "isHover", - "sentence": "Cursor is over _PARAM0_", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "False" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Can only consider hover effects if it happens when there is no Click happening (ClickCaptured == -1), or when the click started in the button without finishing (ClickCaptured == 1).\n\nCan't use in mobile device. On mobile, if the user drag the touch to the button and release on it, it is left in hover state." - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "Object", - "", - "", - "" - ] - }, - { - "type": { - "value": "VarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "!=", - "0" - ] - }, - { - "type": { - "inverted": true, - "value": "SystemInfo::IsMobile" - }, - "parameters": [] - }, - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "True" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "The mouse/touch is held over the button", - "fullName": "Is down", - "functionType": "Condition", - "name": "isDown", - "sentence": "_PARAM0_ is pressed down", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "False" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "To consider the button down event properly, need to check ClickCaptured state to make sure there is a click started on the button. Otherwise, it would respond to a drag event passing by (cursor on object + mouse button is down)" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "Object", - "", - "yes", - "" - ] - }, - { - "type": { - "value": "SourisBouton" - }, - "parameters": [ - "", - "Left" - ] - }, - { - "type": { - "value": "VarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "1" - ] - }, - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "True" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "The button is enabled ", - "fullName": "Is enabled", - "functionType": "Condition", - "name": "isEnabled", - "sentence": "_PARAM0_ is enabled", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "True" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "SetReturnBoolean" - }, - "parameters": [ - "False" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "Enable the button", - "fullName": "Enable button", - "functionType": "Action", - "name": "setEnable", - "sentence": "Enable button _PARAM0_", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "Button::InteractiveButton::SetPropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior", - "yes" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "description": "Disable the button", - "fullName": "Disable button", - "functionType": "Action", - "name": "setDisable", - "sentence": "Disable button _PARAM0_", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "Button::InteractiveButton::SetPropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior", - "no" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - }, - { - "fullName": "", - "functionType": "Action", - "name": "doStepPostEvents", - "sentence": "", - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "If the mouse button is released during a captured click (0 or 1), set the state to no click captured (-1)" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - ">", - "-1" - ] - }, - { - "type": { - "value": "MouseButtonReleased" - }, - "parameters": [ - "", - "Left" - ] - }, - { - "type": { - "value": "Button::InteractiveButton::PropertyENABLED" - }, - "parameters": [ - "Object", - "Behavior" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Object", - "ClickCaptured", - "=", - "-1" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "Sprite", - "type": "object" - }, - { - "description": "Behavior", - "name": "Behavior", - "supplementaryInformation": "Button::InteractiveButton", - "type": "behavior" - } - ], - "objectGroups": [] - } - ], - "propertyDescriptors": [ - { - "value": "up", - "type": "String", - "label": "Animation for idle state", - "description": "", - "group": "", - "extraInformation": [], - "name": "ANIMATION_UP" - }, - { - "value": "over", - "type": "String", - "label": "Animation for mouse over state", - "description": "", - "group": "", - "extraInformation": [], - "name": "ANIMATION_OVER" - }, - { - "value": "down", - "type": "String", - "label": "Animation for button down state", - "description": "", - "group": "", - "extraInformation": [], - "name": "ANIMATION_DOWN" - }, - { - "value": "disabled", - "type": "String", - "label": "Animation for button disabled", - "description": "", - "group": "", - "extraInformation": [], - "name": "ANIMATION_DISABLED" - }, - { - "value": "true", - "type": "Boolean", - "label": "Button is enabled", - "description": "", - "group": "", - "extraInformation": [], - "name": "ENABLED" - } - ], - "sharedPropertyDescriptors": [] - } - ], - "eventsBasedObjects": [] -} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/camerashake.json b/src/eventsFunctionsExtensions/camerashake.json index 99bc0567e..020dcd5be 100644 --- a/src/eventsFunctionsExtensions/camerashake.json +++ b/src/eventsFunctionsExtensions/camerashake.json @@ -40,6 +40,8 @@ "m4hBMBTUilft4s1V4FQQPakVDGx1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "fullName": "", diff --git a/src/eventsFunctionsExtensions/camerashaking.json b/src/eventsFunctionsExtensions/camerashaking.json deleted file mode 100644 index de3886663..000000000 --- a/src/eventsFunctionsExtensions/camerashaking.json +++ /dev/null @@ -1,1179 +0,0 @@ -{ - "author": "westboy31 and Tristan Rhodes (tristan@victrisgames.com)", - "description": "Shake the camera on the specified layer.\n\nChoose which style of shake you want:\nUsePosition = Shake the X and Y position of the camera\nUsePosition = Shake the rotation of the camera\nUseZoom = Shake the zoom level of the camera", - "extensionNamespace": "", - "fullName": "Camera Shake (deprecated)", - "helpPath": "", - "iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0ibWRpLXZlY3Rvci1kaWZmZXJlbmNlLWFiIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTMsMUMxLjg5LDEgMSwxLjg5IDEsM1Y1SDNWM0g1VjFIM003LDFWM0gxMFYxSDdNMTIsMVYzSDE0VjVIMTZWM0MxNiwxLjg5IDE1LjExLDEgMTQsMUgxMk0xLDdWMTBIM1Y3SDFNMTQsN0MxNCw3IDE0LDExLjY3IDE0LDE0QzExLjY3LDE0IDcsMTQgNywxNEM3LDE0IDcsMTggNywyMEM3LDIxLjExIDcuODksMjIgOSwyMkgyMEMyMS4xMSwyMiAyMiwyMS4xMSAyMiwyMFY5QzIyLDcuODkgMjEuMTEsNyAyMCw3QzE4LDcgMTQsNyAxNCw3TTE2LDlIMjBWMjBIOVYxNkgxNEMxNS4xMSwxNiAxNiwxNS4xMSAxNiwxNFY5TTEsMTJWMTRDMSwxNS4xMSAxLjg5LDE2IDMsMTZINVYxNEgzVjEySDFaIiAvPjwvc3ZnPg==", - "name": "CameraShaking", - "previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/vector-difference-ab.svg", - "shortDescription": "Shake the camera on the specified layer (ideal for explosions, hit/impacts, earthquake, etc.)", - "version": "2.1.1", - "tags": [ - "Shaking", - "Camera", - "Effect", - "Screen", - "Shake", - "Zoom", - "Position", - "Rotate" - ], - "dependencies": [], - "eventsFunctions": [ - { - "description": "Shake the camera on the specified layer.\n\nChoose which style of shake you want:\nUsePosition = Shake the X and Y position of the camera\nUsePosition = Shake the rotation of the camera\nUseZoom = Shake the zoom level of the camera", - "fullName": "Camera Shake", - "functionType": "Action", - "name": "CameraShake", - "private": false, - "sentence": "Shake camera #_PARAM4_ on _PARAM3_ layer with amplitude _PARAM1_ on X axis and _PARAM2_ on Y axis for _PARAM5_ seconds. Use Position? _PARAM6_ Use Angle? _PARAM7_ Use Zoom? _PARAM8_ ", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Start/Reset duration timer", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ResetTimer" - }, - "parameters": [ - "", - "\"__CameraShaking_Timer\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_FrameCount", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Pass input parameters to global variables so that onScenePostEvents can use them", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerX", - "=", - "GetArgumentAsNumber(\"PowerX\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerY", - "=", - "GetArgumentAsNumber(\"PowerY\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "__CameraShaking_Layer", - "=", - "GetArgumentAsString(\"Layer\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_Camera", - "=", - "GetArgumentAsNumber(\"Camera\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_Duration", - "=", - "GetArgumentAsNumber(\"Duration\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraPosition", - "=", - "GetArgumentAsNumber(\"UseCameraPosition\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraAngle", - "=", - "GetArgumentAsNumber(\"UseCameraAngle\")" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraZoom", - "=", - "GetArgumentAsNumber(\"UseCameraZoom\")" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Add default values if none were provided", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerX", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerX", - "=", - "5" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerY", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_PowerY", - "=", - "5" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_Duration", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_Duration", - "=", - ".25" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraPosition", - "=", - "0" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraAngle", - "=", - "0" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraZoom", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraPosition", - "=", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Save initial values, if a shake is not in progress", - "comment2": "" - }, - { - "disabled": false, - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_ShakeInProgress", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_FrameCount", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Save initial camera rotation", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "GetArgumentAsNumber(\"UseCameraAngle\")", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_InitialCameraRotation", - "=", - "CameraRotation(GetArgumentAsString(\"Layer\"),GetArgumentAsNumber(\"Camera\"))" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Save initial zoom", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "GetArgumentAsNumber(\"UseCameraZoom\")", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_InitialCameraZoom", - "=", - "SceneWindowWidth()/CameraWidth(GetArgumentAsString(\"Layer\"),GetArgumentAsNumber(\"Camera\"))" - ], - "subInstructions": [] - } - ], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Initiate the onScenePostEvents function", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_ShakeInProgress", - "=", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [ - { - "codeOnly": false, - "defaultValue": "", - "description": "Amplitude of the shaking on the X axis (default=5)", - "longDescription": "0 to not shake the camera on the X axis.", - "name": "PowerX", - "optional": false, - "supplementaryInformation": "", - "type": "expression" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "Amplitude of the shaking on the Y axis (default=5)", - "longDescription": "0 to not shake the camera on the Y axis.", - "name": "PowerY", - "optional": false, - "supplementaryInformation": "", - "type": "expression" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "Layer (base layer if empty)", - "longDescription": "", - "name": "Layer", - "optional": false, - "supplementaryInformation": "", - "type": "layer" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "Camera index (default=0)", - "longDescription": "", - "name": "Camera", - "optional": false, - "supplementaryInformation": "", - "type": "expression" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "Duration (in seconds) (default=0.25)", - "longDescription": "", - "name": "Duration", - "optional": false, - "supplementaryInformation": "", - "type": "expression" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "UseCameraPosition (default=1)", - "longDescription": "", - "name": "UseCameraPosition", - "optional": false, - "supplementaryInformation": "", - "type": "yesorno" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "UseCameraAngle (default=0)", - "longDescription": "", - "name": "UseCameraAngle", - "optional": false, - "supplementaryInformation": "", - "type": "yesorno" - }, - { - "codeOnly": false, - "defaultValue": "", - "description": "UseCameraZoom (default=0)", - "longDescription": "", - "name": "UseCameraZoom", - "optional": false, - "supplementaryInformation": "", - "type": "yesorno" - } - ], - "objectGroups": [] - }, - { - "description": "", - "fullName": "", - "functionType": "Action", - "name": "onScenePostEvents", - "private": false, - "sentence": "", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Stop shaking when the duration has been reached", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Timer" - }, - "parameters": [ - "", - "GlobalVariable(__CameraShaking_Duration)", - "\"__CameraShaking_Timer\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_ShakeInProgress", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Reset values", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraAngle", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RotateCamera" - }, - "parameters": [ - "", - "=", - "GlobalVariable(__CameraShaking_InitialCameraRotation)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraZoom", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ZoomCamera" - }, - "parameters": [ - "", - "GlobalVariable(__CameraShaking_InitialCameraZoom)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - } - ], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Count the frames since the shaking started", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarGlobal" - }, - "parameters": [ - "__CameraShaking_FrameCount", - "+", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Perform shaking", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_ShakeInProgress", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Position Shake", - "comment2": "" - }, - { - "disabled": false, - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraPosition", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "CurrentPosition + (DesiredDuration - RunningTimer)/DesiredDuration * Amplitude * [-1,1]", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "CameraX" - }, - "parameters": [ - "", - "=", - "CameraX(GlobalVariableString(__CameraShaking_Layer), GlobalVariable(__CameraShaking_Camera)) + (GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerX) * RandomWithStep(-1, 1, 2)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "CameraY" - }, - "parameters": [ - "", - "=", - "CameraY(GlobalVariableString(__CameraShaking_Layer), GlobalVariable(__CameraShaking_Camera)) + (GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerY) * RandomWithStep(-1, 1, 2)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - } - ], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Rotation (angle) shake ", - "comment2": "" - }, - { - "disabled": false, - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraAngle", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "mod(GlobalVariable(__CameraShaking_FrameCount),2)", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RotateCamera" - }, - "parameters": [ - "", - "=", - "CameraRotation(GlobalVariableString(__CameraShaking_Layer),GlobalVariable(__CameraShaking_Camera))+(GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerX)-GlobalVariable(__CameraShaking_PowerX)", - "", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "mod(GlobalVariable(__CameraShaking_FrameCount),2)", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RotateCamera" - }, - "parameters": [ - "", - "=", - "CameraRotation(GlobalVariableString(__CameraShaking_Layer),GlobalVariable(__CameraShaking_Camera))+(GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerX)*-1+GlobalVariable(__CameraShaking_PowerX)", - "", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Zoom (scale) shake", - "comment2": "" - }, - { - "disabled": false, - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarGlobal" - }, - "parameters": [ - "__CameraShaking_UseCameraZoom", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "mod(GlobalVariable(__CameraShaking_FrameCount),2)", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ZoomCamera" - }, - "parameters": [ - "", - "GlobalVariable(__CameraShaking_InitialCameraZoom)+(GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerX)*(-1/100)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Egal" - }, - "parameters": [ - "mod(GlobalVariable(__CameraShaking_FrameCount),2)", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ZoomCamera" - }, - "parameters": [ - "", - "GlobalVariable(__CameraShaking_InitialCameraZoom)+(GlobalVariable(__CameraShaking_Duration) - TimerElapsedTime(\"__CameraShaking_Timer\"))/GlobalVariable(__CameraShaking_Duration) * GlobalVariable(__CameraShaking_PowerX)*(1/100)", - "GlobalVariableString(__CameraShaking_Layer)", - "GlobalVariable(__CameraShaking_Camera)" - ], - "subInstructions": [] - } - ], - "events": [] - } - ] - } - ] - } - ], - "parameters": [], - "objectGroups": [] - } - ], - "eventsBasedBehaviors": [] -} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/debugmessages.json b/src/eventsFunctionsExtensions/debugmessages.json deleted file mode 100644 index c0f8110a0..000000000 --- a/src/eventsFunctionsExtensions/debugmessages.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "author": "", - "category": "", - "extensionNamespace": "", - "fullName": "Debug messages", - "helpPath": "", - "iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0ibWRpLWJ1ZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xNCwxMkgxMFYxMEgxNE0xNCwxNkgxMFYxNEgxNE0yMCw4SDE3LjE5QzE2Ljc0LDcuMjIgMTYuMTIsNi41NSAxNS4zNyw2LjA0TDE3LDQuNDFMMTUuNTksM0wxMy40Miw1LjE3QzEyLjk2LDUuMDYgMTIuNSw1IDEyLDVDMTEuNSw1IDExLjA0LDUuMDYgMTAuNTksNS4xN0w4LjQxLDNMNyw0LjQxTDguNjIsNi4wNEM3Ljg4LDYuNTUgNy4yNiw3LjIyIDYuODEsOEg0VjEwSDYuMDlDNi4wNCwxMC4zMyA2LDEwLjY2IDYsMTFWMTJINFYxNEg2VjE1QzYsMTUuMzQgNi4wNCwxNS42NyA2LjA5LDE2SDRWMThINi44MUM3Ljg1LDE5Ljc5IDkuNzgsMjEgMTIsMjFDMTQuMjIsMjEgMTYuMTUsMTkuNzkgMTcuMTksMThIMjBWMTZIMTcuOTFDMTcuOTYsMTUuNjcgMTgsMTUuMzQgMTgsMTVWMTRIMjBWMTJIMThWMTFDMTgsMTAuNjYgMTcuOTYsMTAuMzMgMTcuOTEsMTBIMjBWOFoiIC8+PC9zdmc+", - "name": "DebugMessages", - "previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/bug.svg", - "shortDescription": "", - "version": "", - "description": "", - "tags": [ - "" - ], - "authorIds": [], - "dependencies": [], - "eventsFunctions": [ - { - "description": "Popup an alert with message", - "fullName": "Popup a message", - "functionType": "Action", - "name": "popup", - "sentence": "Popup message _PARAM1_", - "events": [ - { - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": "alert(eventsFunctionContext.getArgument(\"message\"));", - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ], - "parameters": [ - { - "description": "The message to pop up", - "name": "message", - "type": "string" - } - ], - "objectGroups": [] - }, - { - "description": "Prompts for a value (only works on browser)", - "fullName": "Prompt for a value", - "functionType": "StringExpression", - "name": "prompt", - "sentence": "", - "events": [ - { - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": [ - "eventsFunctionContext.returnValue = prompt(eventsFunctionContext.getArgument(\"q\"));", - "" - ], - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ], - "expressionType": { - "type": "string" - }, - "parameters": [ - { - "description": "Prompt Question", - "name": "q", - "type": "string" - } - ], - "objectGroups": [] - } - ], - "eventsBasedBehaviors": [], - "eventsBasedObjects": [] -} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/ellipsemovement.json b/src/eventsFunctionsExtensions/ellipsemovement.json index 55259248a..4e2fdf3fc 100644 --- a/src/eventsFunctionsExtensions/ellipsemovement.json +++ b/src/eventsFunctionsExtensions/ellipsemovement.json @@ -41,6 +41,8 @@ "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/extendedvariables.json b/src/eventsFunctionsExtensions/extendedvariables.json index 2595123c4..62e98a489 100644 --- a/src/eventsFunctionsExtensions/extendedvariables.json +++ b/src/eventsFunctionsExtensions/extendedvariables.json @@ -41,6 +41,8 @@ "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Check if a global variable exists.", diff --git a/src/eventsFunctionsExtensions/fade.json b/src/eventsFunctionsExtensions/fade.json deleted file mode 100644 index a172e8c19..000000000 --- a/src/eventsFunctionsExtensions/fade.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "author": "The Gem Dev", - "category": "", - "extensionNamespace": "", - "fullName": "Fade", - "helpPath": "", - "iconUrl": "", - "name": "fade", - "previewIconUrl": "", - "shortDescription": "Fades a sprite", - "version": "1.0.0", - "description": "", - "tags": [ - "" - ], - "authorIds": [], - "dependencies": [], - "eventsFunctions": [ - { - "description": "fade out", - "fullName": "Fade out", - "functionType": "Action", - "name": "Fadeout", - "sentence": "Fade out _PARAM1_ ", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "TiledSpriteObject::SetOpacity" - }, - "parameters": [ - "Object", - "+", - "TimeDelta()*100" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "TiledSpriteObject::Opacity" - }, - "parameters": [ - "Object", - ">=", - "255" - ] - } - ], - "actions": [ - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "GetArgumentAsString(\"Scene\")", - "" - ] - } - ] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "TiledSpriteObject::TiledSprite", - "type": "objectList" - }, - { - "description": "Next scene", - "name": "", - "type": "sceneName" - } - ], - "objectGroups": [] - }, - { - "description": "fade in", - "fullName": "Fade in", - "functionType": "Action", - "name": "Fadein", - "sentence": "Fade in _PARAM1_ ", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "TiledSpriteObject::SetOpacity" - }, - "parameters": [ - "Object", - "-", - "TimeDelta()*100" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "parameters": [ - { - "description": "Object", - "name": "Object", - "supplementaryInformation": "TiledSpriteObject::TiledSprite", - "type": "objectList" - } - ], - "objectGroups": [] - } - ], - "eventsBasedBehaviors": [], - "eventsBasedObjects": [] -} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/firebullet.json b/src/eventsFunctionsExtensions/firebullet.json index e75476c87..de275f9e5 100644 --- a/src/eventsFunctionsExtensions/firebullet.json +++ b/src/eventsFunctionsExtensions/firebullet.json @@ -46,6 +46,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/flashtransitionpainter.json b/src/eventsFunctionsExtensions/flashtransitionpainter.json index 8c1fef42f..b17d5f91b 100644 --- a/src/eventsFunctionsExtensions/flashtransitionpainter.json +++ b/src/eventsFunctionsExtensions/flashtransitionpainter.json @@ -30,6 +30,8 @@ ], "authorIds": [], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/fps.json b/src/eventsFunctionsExtensions/fps.json index efa35f344..b05c8422b 100644 --- a/src/eventsFunctionsExtensions/fps.json +++ b/src/eventsFunctionsExtensions/fps.json @@ -34,6 +34,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "fullName": "", diff --git a/src/eventsFunctionsExtensions/gamepads.json b/src/eventsFunctionsExtensions/gamepads.json index 3fb5268b3..e2f6c4ab7 100644 --- a/src/eventsFunctionsExtensions/gamepads.json +++ b/src/eventsFunctionsExtensions/gamepads.json @@ -43,6 +43,8 @@ "mnImQKdn8nQxwzkS5D6a1JB27V23" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Get the value of the pressure on a gamepad trigger.", diff --git a/src/eventsFunctionsExtensions/isonscreen.json b/src/eventsFunctionsExtensions/isonscreen.json index 0dcf9337a..97aa01e63 100644 --- a/src/eventsFunctionsExtensions/isonscreen.json +++ b/src/eventsFunctionsExtensions/isonscreen.json @@ -31,6 +31,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/panelspritebutton.json b/src/eventsFunctionsExtensions/panelspritebutton.json index 68f864612..6255762ab 100644 --- a/src/eventsFunctionsExtensions/panelspritebutton.json +++ b/src/eventsFunctionsExtensions/panelspritebutton.json @@ -26,6 +26,8 @@ "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/panelspritecontinuousbar.json b/src/eventsFunctionsExtensions/panelspritecontinuousbar.json index e87f2d606..8c79bb223 100644 --- a/src/eventsFunctionsExtensions/panelspritecontinuousbar.json +++ b/src/eventsFunctionsExtensions/panelspritecontinuousbar.json @@ -34,6 +34,8 @@ "q8ubdigLvIRXLxsJDDTaokO41mc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/panelspriteslider.json b/src/eventsFunctionsExtensions/panelspriteslider.json index d5414ae39..3282088cd 100644 --- a/src/eventsFunctionsExtensions/panelspriteslider.json +++ b/src/eventsFunctionsExtensions/panelspriteslider.json @@ -29,6 +29,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/references.json b/src/eventsFunctionsExtensions/references.json index e4feb3133..895c1e655 100644 --- a/src/eventsFunctionsExtensions/references.json +++ b/src/eventsFunctionsExtensions/references.json @@ -27,6 +27,8 @@ "ZgrsWuRTAkXgeuPV9bo0zuEcA2w1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Transforms a scene variable into a reference to another scene variable.", diff --git a/src/eventsFunctionsExtensions/roommanager.json b/src/eventsFunctionsExtensions/roommanager.json index 0d5ba6d59..a587f8a65 100644 --- a/src/eventsFunctionsExtensions/roommanager.json +++ b/src/eventsFunctionsExtensions/roommanager.json @@ -15,6 +15,8 @@ ], "authorIds": [], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "fullName": "", diff --git a/src/eventsFunctionsExtensions/shakeobject.json b/src/eventsFunctionsExtensions/shakeobject.json index 7b1cfcec6..60c74ec27 100644 --- a/src/eventsFunctionsExtensions/shakeobject.json +++ b/src/eventsFunctionsExtensions/shakeobject.json @@ -37,6 +37,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/spritemasking.json b/src/eventsFunctionsExtensions/spritemasking.json index 37b79fd87..d37f003ec 100644 --- a/src/eventsFunctionsExtensions/spritemasking.json +++ b/src/eventsFunctionsExtensions/spritemasking.json @@ -24,6 +24,8 @@ "ZgrsWuRTAkXgeuPV9bo0zuEcA2w1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Define a shape painter as a mask of an object.", diff --git a/src/eventsFunctionsExtensions/stayonscreen.json b/src/eventsFunctionsExtensions/stayonscreen.json index 7f20753da..aac43d921 100644 --- a/src/eventsFunctionsExtensions/stayonscreen.json +++ b/src/eventsFunctionsExtensions/stayonscreen.json @@ -29,6 +29,8 @@ "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/eventsFunctionsExtensions/sticker.json b/src/eventsFunctionsExtensions/sticker.json index da8c0d055..37a03f20c 100644 --- a/src/eventsFunctionsExtensions/sticker.json +++ b/src/eventsFunctionsExtensions/sticker.json @@ -40,6 +40,8 @@ "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Define helper classes JavaScript code.", diff --git a/src/eventsFunctionsExtensions/timeformatter.json b/src/eventsFunctionsExtensions/timeformatter.json index f239a3a8b..5f7f06744 100644 --- a/src/eventsFunctionsExtensions/timeformatter.json +++ b/src/eventsFunctionsExtensions/timeformatter.json @@ -20,6 +20,8 @@ ], "authorIds": [], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [ { "description": "Format time in seconds to HH:MM:SS", diff --git a/src/eventsFunctionsExtensions/toggleswitch.json b/src/eventsFunctionsExtensions/toggleswitch.json index 95668aad8..d86175a5f 100644 --- a/src/eventsFunctionsExtensions/toggleswitch.json +++ b/src/eventsFunctionsExtensions/toggleswitch.json @@ -39,6 +39,8 @@ "gqDaZjCfevOOxBYkK6zlhtZnXCg1" ], "dependencies": [], + "globalVariables": [], + "sceneVariables": [], "eventsFunctions": [], "eventsBasedBehaviors": [ { diff --git a/src/externalEvents/player.json b/src/externalEvents/player.json index 7f5f29a1a..7e5a94b8c 100644 --- a/src/externalEvents/player.json +++ b/src/externalEvents/player.json @@ -1605,6 +1605,16 @@ "Player.Weapons.Active[player_body.Weapon.equipped].active", "True" ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "uziLong_hold", + "=", + "100" + ] } ] } diff --git a/src/externalEvents/weaponwheel.json b/src/externalEvents/weaponwheel.json deleted file mode 100644 index aa85accd3..000000000 --- a/src/externalEvents/weaponwheel.json +++ /dev/null @@ -1,599 +0,0 @@ -{ - "associatedLayout": "Game_World", - "lastChangeTimeStamp": 0, - "name": "WeaponWheel", - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Select", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ResizableCapability::ResizableBehavior::SetWidth" - }, - "parameters": [ - "weapon_bar", - "Resizable", - "=", - "SceneWindowWidth() + 4" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "BuiltinExternalLayouts::CreateObjectsFromExternalLayout" - }, - "parameters": [ - "", - "\"WeaponWheel\"", - "0", - "0", - "0" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "KeyPressed" - }, - "parameters": [ - "", - "Tab" - ] - } - ], - "actions": [ - { - "type": { - "value": "MontreSouris" - }, - "parameters": [ - "" - ] - }, - { - "type": { - "value": "EnableLayerEffect" - }, - "parameters": [ - "", - "", - "\"weaponwhe\"", - "yes" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Montre" - }, - "parameters": [ - "Weapon_Bar", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectPositionXTween2" - }, - "parameters": [ - "weaponWheelSticker", - "Tween", - "\"weaponWheelStickerAlign\"", - "SceneWindowWidth()/2 - weaponWheelSticker.Width()/2", - "\"easeOutQuad\"", - "0.5", - "" - ] - }, - { - "type": { - "value": "Tween::TweenNumberEffectPropertyTween" - }, - "parameters": [ - "", - "\"weaponWheelFade\"", - "10", - "", - "\"weaponwhe\"", - "\"blur\"", - "\"easeOutQuad\"", - "0.5" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectOpacityTween2" - }, - "parameters": [ - "weapon_bar", - "Tween", - "\"bar\"", - "255", - "\"linear\"", - "0.1", - "" - ] - }, - { - "type": { - "value": "MontreSouris" - }, - "parameters": [ - "" - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "KeyPressed" - }, - "parameters": [ - "", - "Tab" - ] - } - ], - "actions": [ - { - "type": { - "value": "CacheSouris" - }, - "parameters": [ - "" - ] - }, - { - "type": { - "value": "EnableLayerEffect" - }, - "parameters": [ - "", - "", - "\"weaponwhe\"", - "" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenNumberEffectPropertyTween" - }, - "parameters": [ - "", - "\"weaponWheelFade\"", - "0", - "", - "\"weaponwhe\"", - "\"blur\"", - "\"easeInQuad\"", - "0.3" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectPositionXTween2" - }, - "parameters": [ - "weaponWheelSticker", - "Tween", - "\"weaponWheelStickerAlign\"", - "SceneWindowWidth()/2 - weaponWheelSticker.Width()/2 + 50", - "\"easeOutQuad\"", - "0.3", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectOpacityTween2" - }, - "parameters": [ - "weapon_bar", - "Tween", - "\"bar\"", - "0", - "\"linear\"", - "0.3", - "" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "0.2" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "Weapon_Bar" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "SourisSurObjet" - }, - "parameters": [ - "weapon_icon", - "", - "", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectScaleTween3" - }, - "parameters": [ - "weapon_icon", - "Tween", - "\"weaponWheelHoverScale\"", - "1", - "\"easeInQuad\"", - "0.05", - "", - "yes" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectAngleTween2" - }, - "parameters": [ - "weapon_icon", - "Tween", - "\"weaponWheelHoverRotate\"", - "0.8", - "\"easeInQuad\"", - "0.05", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "weapon_icon", - "", - "", - "" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectScaleTween3" - }, - "parameters": [ - "weapon_icon", - "Tween", - "\"weaponWheelHoverScale\"", - "1.2", - "\"easeInQuad\"", - "0.2", - "", - "yes" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectAngleTween2" - }, - "parameters": [ - "weapon_icon", - "Tween", - "\"weaponWheelHoverRotate\"", - "-45", - "\"easeInQuad\"", - "0.2", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::ForEachChildVariable", - "iterableVariableName": "Player.Weapons.Active", - "valueIteratorVariableName": "child", - "keyIteratorVariableName": "i", - "conditions": [ - { - "type": { - "value": "SceneVariableAsBoolean" - }, - "parameters": [ - "Player.Weapons.Active[VariableString(i)].active", - "True" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "Player.Weapons.Slot.current", - "<", - "Player.Weapons.Slot.max" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Create" - }, - "parameters": [ - "", - "weapon_icon", - "weaponWheelSticker.CenterX() + Player.WeaponWheel.adder", - "weapon_bar.CenterY()", - "\"UI\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Player.WeaponWheel.adder", - "+", - "weapon_icon.Width() + 50" - ] - }, - { - "type": { - "value": "ResizableCapability::ResizableBehavior::SetWidth" - }, - "parameters": [ - "weaponWheelSticker", - "Resizable", - "=", - "Player.WeaponWheel.adder" - ] - }, - { - "type": { - "value": "ResizableCapability::ResizableBehavior::SetHeight" - }, - "parameters": [ - "weaponWheelSticker", - "Resizable", - "=", - "weapon_bar.Height()" - ] - }, - { - "type": { - "value": "AnimatableCapability::AnimatableBehavior::SetName" - }, - "parameters": [ - "weapon_icon", - "Animation", - "=", - "VariableString(i)" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Player.Weapons.Slot.current", - "+", - "Player.Weapons.Active[VariableString(i)].slot" - ] - }, - { - "type": { - "value": "Sticker::Sticker::Stick" - }, - "parameters": [ - "weapon_icon", - "Sticker", - "weaponWheelSticker", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectPositionXTween2" - }, - "parameters": [ - "weaponWheelSticker", - "Tween", - "\"weaponWheelStickerAlign\"", - "SceneWindowWidth()/2 - weaponWheelSticker.Width()/2 + 50", - "\"linear\"", - "0.5", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "Cache" - }, - "parameters": [ - "weaponWheelSticker" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "Cache" - }, - "parameters": [ - "Weapon_Bar" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SourisSurObjet" - }, - "parameters": [ - "weapon_icon", - "=", - "", - "" - ] - }, - { - "type": { - "value": "MouseButtonReleased" - }, - "parameters": [ - "", - "Left" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "Player.Weapons.Selected", - "=", - "weapon_icon.Animation::Name()" - ] - }, - { - "type": { - "value": "TextContainerCapability::TextContainerBehavior::SetValue" - }, - "parameters": [ - "debug_ammo_text", - "Text", - "=", - "Player.Weapons.Selected" - ] - } - ] - } - ], - "parameters": [] - } - ] -} \ No newline at end of file diff --git a/src/externalLayouts/weaponwheel.json b/src/externalLayouts/weaponwheel.json deleted file mode 100644 index 4ae2aadb4..000000000 --- a/src/externalLayouts/weaponwheel.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "associatedLayout": "Game_World", - "name": "WeaponWheel", - "instances": [ - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 201, - "keepRatio": true, - "layer": "UI", - "name": "weapon_bar", - "persistentUuid": "b2b01e97-40ff-4a40-847f-b389514ffb53", - "width": 1920, - "x": -2, - "y": 757, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 0.9901477832512315, - "height": 201, - "keepRatio": true, - "layer": "UI", - "name": "weaponWheelSticker", - "persistentUuid": "8a24af66-24b2-4908-9964-b239b8e905a7", - "width": 63.36945812807882, - "x": 736, - "y": 757, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "editionSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 2.756660758663872, - "windowMask": false - } -} \ No newline at end of file diff --git a/src/layouts/city.json b/src/layouts/city.json deleted file mode 100644 index 55d949f67..000000000 --- a/src/layouts/city.json +++ /dev/null @@ -1,48082 +0,0 @@ -{ - "b": 232, - "disableInputWhenNotFocused": true, - "mangledName": "City", - "name": "City", - "r": 102, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 165, - "uiSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.6102999644497129, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "Phone_status_bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - }, - { - "name": "Static", - "objects": [ - { - "name": "building_rooftop" - }, - { - "name": "props_foliage" - }, - { - "name": "basketball_hoop" - }, - { - "name": "props_decorations" - }, - { - "name": "props_roadblock" - }, - { - "name": "props_fences" - } - ] - }, - { - "name": "WeaponWheel", - "objects": [ - { - "name": "weapon_icon" - }, - { - "name": "weapon_bar" - }, - { - "name": "weaponWheelSticker" - } - ] - } - ], - "variables": [ - { - "folded": true, - "name": "DebugVariables", - "type": "structure", - "children": [ - { - "name": "shadowAdder", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Game", - "type": "structure", - "children": [ - { - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Zoom", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "folded": true, - "name": "GodMode", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Player", - "type": "structure", - "children": [ - { - "name": "WeaponWheel", - "type": "structure", - "children": [ - { - "folded": true, - "name": "adder", - "type": "number", - "value": 0 - } - ] - }, - { - "name": "Weapons", - "persistentUuid": "156e00a8-0565-4399-b01a-2d67f7dd2aea", - "type": "structure", - "children": [ - { - "name": "Active", - "type": "structure", - "children": [ - { - "name": "pistolSilencer", - "persistentUuid": "ca505ad0-64b4-44ee-b4b4-20ba640dd356", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "rocketLauncher", - "persistentUuid": "a8cbcdb0-769a-42ec-97ba-2d4452a2f44c", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "rocketLauncherModern", - "persistentUuid": "c25e6f18-b9d3-4077-badd-9e7fe02d7289", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "shotgunLong", - "persistentUuid": "1ea7f09e-67e9-446c-b924-8b7841d8c706", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "sniper", - "persistentUuid": "fd26e664-81a2-41e1-b99d-eb5b6f68fd1f", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "uzi", - "persistentUuid": "8042baed-2539-4ca7-a163-86635a6c0c14", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLong", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLongSilencer", - "persistentUuid": "f1e60af4-7996-42a0-b4ec-fa7e985445ea", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziSilencer", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - } - ] - }, - { - "folded": true, - "name": "Selected", - "type": "string", - "value": "" - }, - { - "name": "Slot", - "type": "structure", - "children": [ - { - "folded": true, - "name": "current", - "type": "number", - "value": 0 - }, - { - "name": "max", - "type": "number", - "value": 4 - } - ] - } - ] - } - ] - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", - "sealed": true, - "width": 2100, - "x": -3220, - "y": -210, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", - "width": 70, - "x": 910, - "y": -350, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", - "width": 70, - "x": 980, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", - "width": 70, - "x": 1470, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", - "width": 70, - "x": 1330, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", - "width": 70, - "x": 1260, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", - "width": 70, - "x": 1190, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", - "width": 70, - "x": 1120, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", - "width": 70, - "x": 1050, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", - "width": 70, - "x": 1190, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", - "width": 70, - "x": 1400, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", - "width": 70, - "x": 1190, - "y": 140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", - "width": 70, - "x": 1470, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", - "width": 70, - "x": 1470, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", - "width": 70, - "x": 1470, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", - "width": 70, - "x": 1470, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", - "width": 70, - "x": 1470, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", - "width": 70, - "x": 1470, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", - "width": 70, - "x": 1470, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", - "width": 70, - "x": 1470, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", - "width": 70, - "x": 910, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", - "width": 70, - "x": 910, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", - "width": 70, - "x": 910, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", - "width": 70, - "x": 910, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", - "width": 70, - "x": 910, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", - "width": 210, - "x": 1260, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", - "width": 210, - "x": 980, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", - "width": 70, - "x": 1190, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", - "width": 70, - "x": 1190, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", - "width": 70, - "x": 1190, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", - "width": 70, - "x": 1190, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", - "width": 70, - "x": 1190, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", - "width": 70, - "x": 1190, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", - "width": 70, - "x": 1190, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", - "width": 70, - "x": 1190, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", - "width": 70, - "x": 1190, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", - "width": 70, - "x": 1190, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", - "width": 70, - "x": 1190, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", - "width": 70, - "x": 1190, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", - "width": 70, - "x": 1190, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", - "width": 70, - "x": 1190, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", - "width": 70, - "x": 1190, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", - "width": 70, - "x": 1190, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", - "width": 70, - "x": 1470, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", - "width": 70, - "x": 1470, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", - "width": 70, - "x": 1470, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", - "width": 70, - "x": 1470, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", - "width": 70, - "x": 1470, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", - "width": 70, - "x": 1470, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", - "width": 70, - "x": 1470, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", - "width": 70, - "x": 1470, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", - "width": 70, - "x": 1470, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", - "width": 70, - "x": 1470, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", - "width": 70, - "x": 1470, - "y": 1120, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", - "width": 70, - "x": 1470, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", - "width": 70, - "x": 910, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", - "width": 70, - "x": 910, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", - "width": 70, - "x": 910, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", - "width": 70, - "x": 910, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", - "width": 70, - "x": 910, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", - "width": 70, - "x": 910, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", - "width": 70, - "x": 910, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", - "width": 70, - "x": 910, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", - "width": 70, - "x": 910, - "y": 1190, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", - "width": 70, - "x": 910, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", - "width": 70, - "x": 910, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", - "width": 70, - "x": 910, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", - "width": 70, - "x": 420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", - "width": 70, - "x": 770, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", - "width": 70, - "x": 700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", - "width": 70, - "x": 630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", - "width": 70, - "x": 490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", - "width": 70, - "x": 1190, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", - "width": 70, - "x": 1190, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", - "width": 70, - "x": 1190, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", - "width": 1260, - "x": -70, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", - "width": 70, - "x": 420, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", - "width": 70, - "x": 490, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", - "width": 70, - "x": 560, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", - "width": 70, - "x": 630, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", - "width": 70, - "x": 700, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", - "width": 70, - "x": 770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", - "width": 70, - "x": 840, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", - "width": 70, - "x": 980, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", - "width": 1610, - "x": -420, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", - "width": 280, - "x": 1190, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", - "width": 70, - "x": 1470, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", - "width": 70, - "x": 1470, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", - "width": 70, - "x": 1470, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", - "width": 70, - "x": 1470, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", - "width": 70, - "x": 1470, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", - "width": 70, - "x": 1470, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", - "width": 70, - "x": 1470, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", - "width": 70, - "x": 1330, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", - "width": 70, - "x": 1260, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", - "width": 70, - "x": 1190, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", - "width": 70, - "x": 1120, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", - "width": 70, - "x": 1400, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", - "width": 70, - "x": 700, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", - "width": 70, - "x": 910, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", - "width": 70, - "x": 1470, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", - "width": 70, - "x": 420, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", - "width": 70, - "x": 490, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", - "width": 70, - "x": 1470, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", - "width": 1820, - "x": 1540, - "y": -420, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", - "sealed": true, - "width": 3360, - "x": -140, - "y": 1890, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", - "width": 70, - "x": -70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", - "width": 70, - "x": 280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", - "width": 70, - "x": 210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", - "width": 70, - "x": 140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", - "width": 70, - "x": 70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", - "width": 70, - "x": 0, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", - "width": 70, - "x": 350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", - "width": 70, - "x": -70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", - "width": 70, - "x": 0, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", - "width": 70, - "x": 70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", - "width": 70, - "x": 140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", - "width": 70, - "x": 280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", - "width": 70, - "x": 350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", - "width": 70, - "x": 350, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", - "width": 70, - "x": 280, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", - "width": 70, - "x": 210, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", - "width": 70, - "x": 140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", - "width": 70, - "x": 70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", - "width": 70, - "x": -70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", - "width": 70, - "x": 0, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": true, - "name": "road_sprite_all", - "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", - "sealed": true, - "width": 630, - "x": -700, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", - "width": 70, - "x": -770, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", - "width": 70, - "x": -770, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", - "width": 70, - "x": -770, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", - "width": 70, - "x": -770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", - "width": 70, - "x": -770, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", - "width": 70, - "x": -770, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", - "width": 70, - "x": -630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", - "width": 70, - "x": -280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", - "width": 70, - "x": -350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", - "width": 70, - "x": -420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", - "width": 70, - "x": -490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", - "width": 70, - "x": -560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", - "width": 70, - "x": -210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", - "width": 70, - "x": -700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", - "width": 70, - "x": -770, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", - "width": 70, - "x": -770, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", - "width": 70, - "x": -770, - "y": 1260, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", - "width": 70, - "x": -140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", - "width": 70, - "x": -350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", - "width": 70, - "x": -280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", - "width": 70, - "x": -210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", - "width": 70, - "x": -140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", - "width": 70, - "x": -490, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", - "width": 210, - "x": -700, - "y": 1540, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", - "width": 210, - "x": -420, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", - "width": 70, - "x": -210, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", - "width": 70, - "x": -210, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", - "width": 70, - "x": -210, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", - "width": 70, - "x": -210, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", - "width": 70, - "x": -210, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", - "width": 70, - "x": -140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", - "width": 70, - "x": -210, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", - "width": 70, - "x": -210, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", - "width": 70, - "x": -210, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", - "width": 70, - "x": -210, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", - "width": 70, - "x": -770, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", - "width": 70, - "x": -770, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", - "width": 70, - "x": -770, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", - "width": 70, - "x": -770, - "y": 2100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", - "width": 70, - "x": -770, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", - "width": 70, - "x": -770, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", - "width": 70, - "x": -770, - "y": 2310, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", - "width": 70, - "x": -490, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", - "width": 70, - "x": -490, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", - "width": 70, - "x": -420, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", - "width": 70, - "x": -490, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", - "width": 70, - "x": -490, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", - "width": 70, - "x": -490, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", - "width": 70, - "x": -490, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", - "width": 70, - "x": -490, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", - "width": 70, - "x": -490, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", - "width": 70, - "x": -490, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", - "width": 70, - "x": -490, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", - "width": 70, - "x": -490, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", - "width": 70, - "x": -770, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", - "width": 70, - "x": -490, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", - "width": 70, - "x": -490, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", - "width": 70, - "x": -490, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", - "width": 70, - "x": -1820, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", - "width": 70, - "x": -700, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", - "width": 70, - "x": -630, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", - "width": 280, - "x": -490, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", - "width": 70, - "x": -210, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", - "width": 70, - "x": -210, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", - "width": 70, - "x": -210, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", - "width": 70, - "x": -210, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", - "width": 70, - "x": -210, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", - "width": 70, - "x": -210, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", - "width": 70, - "x": -210, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", - "width": 70, - "x": -700, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", - "width": 70, - "x": -350, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", - "width": 70, - "x": -420, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", - "width": 70, - "x": -490, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", - "width": 70, - "x": -560, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", - "width": 70, - "x": -630, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", - "width": 70, - "x": -280, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", - "width": 70, - "x": -1820, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", - "width": 70, - "x": -210, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", - "width": 70, - "x": -490, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", - "width": 70, - "x": -490, - "y": 2660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", - "width": 70, - "x": -560, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", - "width": 70, - "x": -210, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", - "width": 70, - "x": -490, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", - "width": 210, - "x": -420, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", - "width": 210, - "x": -700, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", - "width": 210, - "x": -700, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", - "width": 70, - "x": -2310, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", - "width": 70, - "x": -1960, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", - "width": 70, - "x": -2030, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", - "width": 70, - "x": -2100, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", - "width": 70, - "x": -2170, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", - "width": 70, - "x": -2240, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", - "width": 70, - "x": -1890, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", - "width": 70, - "x": -2310, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", - "width": 70, - "x": -2240, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", - "width": 70, - "x": -2170, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", - "width": 70, - "x": -2100, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", - "width": 70, - "x": -2030, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", - "width": 70, - "x": -1960, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", - "width": 70, - "x": -1890, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", - "width": 70, - "x": -1890, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", - "width": 70, - "x": -1960, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", - "width": 70, - "x": -2030, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", - "width": 70, - "x": -2100, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", - "width": 70, - "x": -2170, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", - "width": 70, - "x": -2310, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", - "width": 70, - "x": -2240, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", - "width": 70, - "x": -2450, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", - "width": 70, - "x": -2520, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", - "width": 70, - "x": -2590, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", - "width": 70, - "x": -2660, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", - "width": 70, - "x": -2730, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", - "width": 70, - "x": -2380, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", - "width": 70, - "x": -2800, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", - "width": 70, - "x": -2730, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", - "width": 70, - "x": -2660, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", - "width": 70, - "x": -2590, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", - "width": 70, - "x": -2520, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", - "width": 70, - "x": -2450, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", - "width": 70, - "x": -2380, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", - "width": 70, - "x": -2380, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", - "width": 70, - "x": -2450, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", - "width": 70, - "x": -2520, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", - "width": 70, - "x": -2590, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", - "width": 70, - "x": -2660, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", - "width": 70, - "x": -2800, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", - "width": 70, - "x": -2730, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", - "width": 2730, - "x": -3430, - "y": 2520, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", - "width": 70, - "x": -3500, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", - "width": 70, - "x": -3500, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", - "width": 70, - "x": -3500, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", - "width": 70, - "x": -3500, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", - "width": 70, - "x": -3500, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", - "width": 70, - "x": -3360, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", - "width": 70, - "x": -3010, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", - "width": 70, - "x": -3080, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", - "width": 70, - "x": -3150, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", - "width": 70, - "x": -3220, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", - "width": 70, - "x": -3290, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", - "width": 70, - "x": -3430, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", - "width": 70, - "x": -3500, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", - "width": 70, - "x": -3500, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", - "width": 70, - "x": -3500, - "y": 2450, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", - "width": 70, - "x": -3080, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", - "width": 70, - "x": -3010, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", - "width": 70, - "x": -2940, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", - "width": 70, - "x": -2870, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", - "width": 70, - "x": -3220, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", - "width": 70, - "x": -2870, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", - "width": 70, - "x": -2940, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", - "width": 70, - "x": -3220, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", - "width": 70, - "x": -3150, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", - "width": 70, - "x": -3220, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", - "width": 70, - "x": -3220, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", - "width": 70, - "x": -770, - "y": 2380, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", - "width": 70, - "x": -1260, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", - "width": 70, - "x": -910, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", - "width": 70, - "x": -980, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", - "width": 70, - "x": -1050, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", - "width": 70, - "x": -1120, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", - "width": 70, - "x": -1190, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", - "width": 70, - "x": -840, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", - "width": 70, - "x": -1400, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", - "width": 70, - "x": -1470, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", - "width": 70, - "x": -1540, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", - "width": 70, - "x": -1610, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", - "width": 70, - "x": -1680, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", - "width": 70, - "x": -1330, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", - "width": 70, - "x": -1820, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", - "width": 70, - "x": -1750, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", - "width": 70, - "x": -770, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", - "width": 70, - "x": -840, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", - "width": 70, - "x": -910, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", - "width": 70, - "x": -980, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", - "width": 70, - "x": -1050, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", - "width": 70, - "x": -1190, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", - "width": 70, - "x": -1120, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", - "width": 70, - "x": -1260, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", - "width": 70, - "x": -1330, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", - "width": 70, - "x": -1400, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", - "width": 70, - "x": -1470, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", - "width": 70, - "x": -1540, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", - "width": 70, - "x": -1680, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", - "width": 70, - "x": -1610, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", - "width": 70, - "x": -1750, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", - "width": 70, - "x": -840, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", - "width": 70, - "x": -1330, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", - "width": 70, - "x": -1260, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", - "width": 70, - "x": -1190, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", - "width": 70, - "x": -1120, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", - "width": 70, - "x": -1050, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", - "width": 70, - "x": -980, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", - "width": 70, - "x": -910, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", - "width": 70, - "x": -1750, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", - "width": 70, - "x": -1680, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", - "width": 70, - "x": -1610, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", - "width": 70, - "x": -1540, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", - "width": 70, - "x": -1470, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", - "width": 70, - "x": -1400, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", - "width": 70, - "x": -770, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", - "width": 2450, - "x": -3150, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4900, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4620, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", - "width": 2450, - "x": -3220, - "y": 1260, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", - "width": 70, - "x": -2940, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", - "width": 70, - "x": -2940, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", - "width": 70, - "x": -2940, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", - "width": 70, - "x": -2940, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", - "width": 70, - "x": -2940, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", - "width": 70, - "x": -2940, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", - "width": 70, - "x": -2940, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", - "width": 70, - "x": -3500, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", - "width": 70, - "x": -3500, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", - "width": 70, - "x": -3500, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", - "width": 70, - "x": -3500, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", - "width": 70, - "x": -3500, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", - "width": 70, - "x": -3500, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", - "width": 70, - "x": -3500, - "y": 3500, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", - "width": 70, - "x": -3220, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", - "width": 70, - "x": -3220, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", - "width": 70, - "x": -3220, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", - "width": 70, - "x": -3220, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", - "width": 70, - "x": -3220, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", - "width": 70, - "x": -3220, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", - "width": 70, - "x": -3220, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", - "width": 70, - "x": -3220, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", - "width": 70, - "x": -3500, - "y": 3570, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", - "width": 2730, - "x": -2870, - "y": 3080, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", - "width": 140, - "x": -3780, - "y": 2590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", - "width": 70, - "x": 490, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", - "width": 70, - "x": 420, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", - "width": 70, - "x": 490, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", - "width": 70, - "x": 420, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", - "width": 70, - "x": -280, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", - "width": 70, - "x": -210, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", - "width": 70, - "x": 1540, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", - "width": 70, - "x": 1610, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", - "width": 70, - "x": 1540, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", - "width": 70, - "x": 1610, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", - "width": 70, - "x": 1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", - "width": 70, - "x": 1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", - "width": 70, - "x": 1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", - "width": 70, - "x": 1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", - "width": 70, - "x": 1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", - "width": 70, - "x": 1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", - "width": 70, - "x": 1540, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", - "width": 70, - "x": 1610, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", - "width": 70, - "x": 1540, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", - "width": 70, - "x": 1610, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", - "width": 70, - "x": 1540, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", - "width": 70, - "x": 1610, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", - "width": 70, - "x": 1540, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", - "width": 70, - "x": 1610, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", - "width": 70, - "x": 1540, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", - "width": 70, - "x": 1610, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", - "width": 70, - "x": 1540, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", - "width": 70, - "x": 1610, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", - "width": 70, - "x": 1540, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", - "width": 70, - "x": 1610, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", - "width": 70, - "x": 1540, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", - "width": 70, - "x": 1610, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", - "width": 70, - "x": 1540, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", - "width": 70, - "x": 1610, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", - "width": 70, - "x": 1540, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", - "width": 70, - "x": 1610, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", - "width": 70, - "x": 1540, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", - "width": 70, - "x": 1610, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", - "width": 70, - "x": 1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", - "width": 70, - "x": 1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", - "width": 70, - "x": 1540, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", - "width": 70, - "x": 1610, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", - "width": 70, - "x": 1540, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", - "width": 70, - "x": 1610, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", - "width": 70, - "x": 1540, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", - "width": 70, - "x": 1610, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", - "width": 70, - "x": 1540, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", - "width": 70, - "x": 1610, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", - "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, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", - "width": 70, - "x": 1540, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", - "width": 70, - "x": 1610, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", - "width": 70, - "x": 1540, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", - "width": 70, - "x": 1610, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", - "width": 70, - "x": 1540, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", - "width": 70, - "x": 1610, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", - "width": 70, - "x": 1540, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", - "width": 70, - "x": 1610, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", - "width": 70, - "x": 1540, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", - "width": 70, - "x": 1610, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", - "width": 70, - "x": 1540, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", - "width": 70, - "x": 1610, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "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", - "width": 70, - "x": 1610, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", - "width": 70, - "x": 1540, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", - "width": 70, - "x": 1610, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", - "width": 70, - "x": 1540, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", - "width": 70, - "x": 1610, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", - "width": 70, - "x": 1540, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", - "width": 70, - "x": 1610, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", - "width": 70, - "x": -140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", - "width": 70, - "x": -70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", - "width": 70, - "x": -140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", - "width": 70, - "x": -70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", - "width": 70, - "x": 0, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", - "width": 70, - "x": 70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", - "width": 70, - "x": 0, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", - "width": 70, - "x": 70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", - "width": 70, - "x": 140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", - "width": 70, - "x": 210, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", - "width": 70, - "x": 140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", - "width": 70, - "x": 210, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", - "width": 70, - "x": 280, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", - "width": 70, - "x": 350, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", - "width": 70, - "x": 280, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", - "width": 70, - "x": 350, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", - "width": 70, - "x": 420, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", - "width": 70, - "x": 490, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", - "width": 70, - "x": 420, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", - "width": 70, - "x": 490, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", - "width": 70, - "x": 700, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", - "width": 70, - "x": 700, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7247f601-a750-4757-be03-95644999d829", - "width": 70, - "x": 910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", - "width": 70, - "x": 910, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", - "width": 70, - "x": 1050, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", - "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", - "width": 70, - "x": 1120, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", - "width": 70, - "x": 1190, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", - "width": 70, - "x": 1120, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", - "width": 70, - "x": 1190, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", - "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", - "width": 70, - "x": 1330, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", - "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", - "width": 70, - "x": 1330, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", - "width": 70, - "x": 1400, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc092547-6921-461e-8626-545397380833", - "width": 70, - "x": 1470, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", - "width": 70, - "x": 1400, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", - "width": 70, - "x": 1470, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", - "width": 70, - "x": 560, - "y": 1050, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", - "width": 70, - "x": 630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", - "width": 70, - "x": 700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", - "width": 70, - "x": 700, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", - "width": 70, - "x": 700, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", - "width": 70, - "x": 700, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", - "width": 70, - "x": 700, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", - "width": 70, - "x": 700, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", - "width": 70, - "x": 700, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", - "width": 70, - "x": 700, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", - "width": 70, - "x": 700, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", - "width": 70, - "x": 700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", - "width": 70, - "x": 560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", - "width": 70, - "x": 630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", - "width": 70, - "x": 420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", - "width": 70, - "x": 280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", - "width": 70, - "x": 350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", - "width": 70, - "x": 140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", - "width": 70, - "x": 210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", - "width": 70, - "x": 0, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", - "width": 70, - "x": 0, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", - "width": 70, - "x": 0, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", - "width": 70, - "x": 0, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", - "width": 70, - "x": 0, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", - "width": 70, - "x": 0, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", - "width": 70, - "x": 0, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", - "width": 70, - "x": 0, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", - "width": 70, - "x": 70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", - "width": 70, - "x": 140, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", - "width": 70, - "x": 70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", - "width": 70, - "x": 280, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", - "width": 70, - "x": 210, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", - "width": 70, - "x": 350, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", - "width": 70, - "x": -210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", - "width": 70, - "x": -140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", - "width": 70, - "x": -350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", - "width": 70, - "x": -280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", - "width": 70, - "x": -490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", - "width": 70, - "x": -420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", - "width": 70, - "x": -630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", - "width": 70, - "x": -560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", - "width": 70, - "x": -700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", - "width": 70, - "x": -910, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", - "width": 70, - "x": -840, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", - "width": 70, - "x": -770, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", - "width": 70, - "x": -910, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", - "width": 70, - "x": -910, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", - "width": 70, - "x": -910, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", - "width": 70, - "x": -910, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", - "width": 70, - "x": -910, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", - "width": 70, - "x": -910, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", - "width": 70, - "x": -910, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", - "width": 70, - "x": -910, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", - "width": 70, - "x": -910, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", - "width": 70, - "x": -840, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", - "width": 70, - "x": -770, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", - "width": 70, - "x": -700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", - "width": 70, - "x": -630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", - "width": 70, - "x": -490, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", - "width": 70, - "x": -420, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", - "width": 70, - "x": -560, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_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": "props_fences", - "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", - "width": 70, - "x": -350, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", - "width": 70, - "x": -1120, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", - "width": 70, - "x": -1120, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", - "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", - "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", - "width": 70, - "x": -1050, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", - "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", - "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", - "width": 70, - "x": -980, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", - "width": 70, - "x": -140, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", - "width": 70, - "x": -70, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", - "width": 70, - "x": -70, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", - "width": 70, - "x": -140, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", - "width": 70, - "x": -140, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", - "width": 70, - "x": -70, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", - "width": 70, - "x": -70, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", - "width": 70, - "x": -140, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", - "width": 70, - "x": -140, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", - "width": 70, - "x": -70, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", - "width": 70, - "x": -140, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", - "width": 70, - "x": -70, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", - "width": 70, - "x": -70, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", - "width": 70, - "x": -140, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", - "width": 70, - "x": -140, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", - "width": 70, - "x": -70, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", - "width": 70, - "x": -70, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", - "width": 70, - "x": -140, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", - "width": 70, - "x": -140, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", - "width": 70, - "x": -70, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", - "width": 70, - "x": -140, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", - "width": 70, - "x": -70, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", - "width": 70, - "x": -70, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", - "width": 70, - "x": -140, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", - "width": 70, - "x": -140, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", - "width": 70, - "x": -70, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", - "width": 70, - "x": -70, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", - "width": 70, - "x": -140, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", - "width": 70, - "x": -140, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", - "width": 70, - "x": -70, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", - "width": 70, - "x": -2030, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", - "width": 70, - "x": -1960, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", - "width": 70, - "x": -2030, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", - "width": 70, - "x": -1960, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", - "width": 70, - "x": -1890, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", - "width": 70, - "x": -1820, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", - "width": 70, - "x": -1890, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", - "width": 70, - "x": -1820, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", - "width": 70, - "x": -1750, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", - "width": 70, - "x": -1680, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", - "width": 70, - "x": -1750, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", - "width": 70, - "x": -1680, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", - "width": 70, - "x": -1610, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", - "width": 70, - "x": -1540, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", - "width": 70, - "x": -1610, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", - "width": 70, - "x": -1540, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", - "width": 70, - "x": -1470, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", - "width": 70, - "x": -1400, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", - "width": 70, - "x": -1470, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", - "width": 70, - "x": -1400, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", - "width": 70, - "x": -1330, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", - "width": 70, - "x": -1260, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", - "width": 70, - "x": -1330, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", - "width": 70, - "x": -1260, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", - "width": 70, - "x": -1190, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", - "width": 70, - "x": -1120, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", - "width": 70, - "x": -1190, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", - "width": 70, - "x": -1120, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", - "width": 70, - "x": -1050, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", - "width": 70, - "x": -980, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", - "width": 70, - "x": -1050, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", - "width": 70, - "x": -980, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", - "width": 70, - "x": -2730, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", - "width": 70, - "x": -2660, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", - "width": 70, - "x": -2730, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", - "width": 70, - "x": -2660, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", - "width": 70, - "x": -2590, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", - "width": 70, - "x": -2520, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", - "width": 70, - "x": -2590, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", - "width": 70, - "x": -2520, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", - "width": 70, - "x": -2450, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", - "width": 70, - "x": -2380, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", - "width": 70, - "x": -2450, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", - "width": 70, - "x": -2380, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", - "width": 70, - "x": -2310, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", - "width": 70, - "x": -2240, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", - "width": 70, - "x": -2310, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", - "width": 70, - "x": -2240, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", - "width": 70, - "x": -2170, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", - "width": 70, - "x": -2100, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", - "width": 70, - "x": -2170, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", - "width": 70, - "x": -2100, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", - "width": 70, - "x": -1120, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", - "width": 70, - "x": -1050, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", - "width": 70, - "x": -1120, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", - "width": 70, - "x": -1050, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", - "width": 70, - "x": -980, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", - "width": 70, - "x": -910, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", - "width": 70, - "x": -980, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", - "width": 70, - "x": -910, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", - "width": 70, - "x": -840, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", - "width": 70, - "x": -770, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", - "width": 70, - "x": -840, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", - "width": 70, - "x": -770, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", - "width": 70, - "x": -700, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", - "width": 70, - "x": -630, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", - "width": 70, - "x": -700, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", - "width": 70, - "x": -630, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", - "width": 70, - "x": -560, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", - "width": 70, - "x": -490, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", - "width": 70, - "x": -560, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", - "width": 70, - "x": -490, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", - "width": 70, - "x": -420, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", - "width": 70, - "x": -350, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", - "width": 70, - "x": -420, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", - "width": 70, - "x": -350, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", - "width": 70, - "x": -280, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", - "width": 70, - "x": -210, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", - "width": 70, - "x": -280, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", - "width": 70, - "x": -210, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", - "width": 70, - "x": -140, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", - "width": 70, - "x": -70, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", - "width": 70, - "x": -140, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", - "width": 70, - "x": -70, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", - "width": 70, - "x": -2240, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", - "width": 70, - "x": -2170, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", - "width": 70, - "x": -2240, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", - "width": 70, - "x": -2170, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", - "width": 70, - "x": -2100, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", - "width": 70, - "x": -2030, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", - "width": 70, - "x": -2100, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", - "width": 70, - "x": -2030, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", - "width": 70, - "x": -1960, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", - "width": 70, - "x": -1890, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", - "width": 70, - "x": -1960, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", - "width": 70, - "x": -1890, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", - "width": 70, - "x": -1820, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", - "width": 70, - "x": -1750, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", - "width": 70, - "x": -1820, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", - "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": "52547319-be3b-4d16-85d0-1719cbd0927e", - "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": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", - "width": 70, - "x": -1610, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", - "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": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", - "width": 70, - "x": -1610, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", - "width": 70, - "x": -1540, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", - "width": 70, - "x": -1470, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", - "width": 70, - "x": -1540, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", - "width": 70, - "x": -1470, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", - "width": 70, - "x": -1400, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", - "width": 70, - "x": -1330, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", - "width": 70, - "x": -1400, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", - "width": 70, - "x": -1330, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", - "width": 70, - "x": -1260, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", - "width": 70, - "x": -1190, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", - "width": 70, - "x": -1260, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", - "width": 70, - "x": -1190, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", - "width": 70, - "x": -70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", - "width": 70, - "x": -70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": -241, - "y": 484, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -830, - "y": 549, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -830, - "y": 969, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -772, - "y": 771, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", - "width": 70, - "x": -980, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", - "width": 70, - "x": -980, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", - "width": 70, - "x": -980, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", - "width": 70, - "x": -980, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", - "width": 70, - "x": -1470, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", - "width": 70, - "x": -1120, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", - "width": 70, - "x": -1190, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", - "width": 70, - "x": -1050, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", - "width": 70, - "x": -1540, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", - "width": 70, - "x": -1400, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", - "width": 70, - "x": -1330, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", - "width": 70, - "x": -1260, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", - "width": 70, - "x": -1680, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", - "width": 70, - "x": -1680, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", - "width": 70, - "x": -1680, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", - "width": 70, - "x": -1680, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", - "width": 70, - "x": -1680, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", - "width": 70, - "x": -1680, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", - "width": 70, - "x": -1680, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", - "width": 70, - "x": -1680, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", - "width": 70, - "x": -980, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", - "width": 70, - "x": -980, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", - "width": 70, - "x": -980, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", - "width": 70, - "x": -980, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", - "width": 70, - "x": -980, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", - "width": 70, - "x": -1680, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", - "width": 70, - "x": -1680, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", - "width": 70, - "x": -1680, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", - "width": 70, - "x": -1680, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", - "width": 70, - "x": -1680, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", - "width": 70, - "x": -980, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", - "width": 70, - "x": -1680, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", - "width": 70, - "x": -1680, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", - "width": 70, - "x": -1680, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", - "width": 70, - "x": -1680, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", - "width": 70, - "x": -1330, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", - "width": 70, - "x": -1400, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", - "width": 70, - "x": -1470, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", - "width": 70, - "x": -1540, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", - "width": 70, - "x": -1050, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", - "width": 70, - "x": -1120, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", - "width": 70, - "x": -1190, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", - "width": 70, - "x": -1260, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", - "width": 70, - "x": -980, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", - "width": 70, - "x": -980, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1540, - "y": 1120, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", - "width": 70, - "x": -1680, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1610, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, - "x": -1470, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1120, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1190, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1050, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", - "width": 70, - "x": -1540, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", - "width": 70, - "x": -1400, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", - "width": 70, - "x": -1330, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", - "width": 70, - "x": -1260, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", - "width": 70, - "x": -1610, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", - "width": 70, - "x": -1610, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", - "width": 70, - "x": -980, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", - "width": 70, - "x": -980, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1540, - "y": 1330, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1540, - "y": 1610, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1540, - "y": 1820, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", - "width": 140, - "x": -1540, - "y": 2170, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", - "width": 70, - "x": -2730, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", - "width": 70, - "x": -2660, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", - "width": 70, - "x": -2730, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", - "width": 70, - "x": -2660, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", - "width": 70, - "x": -2590, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", - "width": 70, - "x": -2520, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", - "width": 70, - "x": -2590, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", - "width": 70, - "x": -2520, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", - "width": 70, - "x": -2450, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", - "width": 70, - "x": -2380, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", - "width": 70, - "x": -2450, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", - "width": 70, - "x": -2380, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", - "width": 70, - "x": -2310, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", - "width": 70, - "x": -2310, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", - "width": 70, - "x": -2870, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", - "width": 70, - "x": -2870, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", - "width": 70, - "x": -2800, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", - "width": 70, - "x": -2800, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", - "width": 70, - "x": -2870, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", - "width": 70, - "x": -2800, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", - "width": 70, - "x": -2800, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", - "width": 70, - "x": -2870, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", - "width": 70, - "x": -2870, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", - "width": 70, - "x": -2800, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", - "width": 70, - "x": -2800, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", - "width": 70, - "x": -2870, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", - "width": 70, - "x": -2870, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", - "width": 70, - "x": -2800, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", - "width": 70, - "x": -910, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", - "width": 70, - "x": -910, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", - "width": 70, - "x": -910, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", - "width": 70, - "x": -910, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", - "width": 70, - "x": -910, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", - "width": 70, - "x": -910, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", - "width": 70, - "x": -910, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", - "width": 70, - "x": 630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", - "width": 70, - "x": 490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", - "width": 70, - "x": 560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", - "width": 70, - "x": 350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", - "width": 70, - "x": 420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", - "width": 70, - "x": 210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", - "width": 70, - "x": 280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", - "width": 70, - "x": 140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", - "width": 70, - "x": 700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", - "width": 70, - "x": -350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", - "width": 70, - "x": -490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", - "width": 70, - "x": -420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", - "width": 70, - "x": -630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", - "width": 70, - "x": -560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", - "width": 70, - "x": -770, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", - "width": 70, - "x": -700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", - "width": 70, - "x": -840, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", - "width": 70, - "x": 0, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", - "width": 70, - "x": -140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", - "width": 70, - "x": -70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", - "width": 70, - "x": -280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", - "width": 70, - "x": -210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", - "width": 70, - "x": 70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", - "width": 70, - "x": 700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", - "width": 70, - "x": 700, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", - "width": 70, - "x": 630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", - "width": 70, - "x": 490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", - "width": 70, - "x": 560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", - "width": 70, - "x": 350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", - "width": 70, - "x": 420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", - "width": 70, - "x": 210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", - "width": 70, - "x": 280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", - "width": 70, - "x": 140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": 0, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", - "width": 70, - "x": 70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", - "width": 70, - "x": -140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", - "width": 70, - "x": -70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", - "width": 70, - "x": -280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", - "width": 70, - "x": -210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", - "width": 70, - "x": -490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", - "width": 70, - "x": -630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", - "width": 70, - "x": -560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", - "width": 70, - "x": -770, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", - "width": 70, - "x": -700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", - "width": 70, - "x": -840, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", - "width": 70, - "x": -910, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", - "width": 70, - "x": -2030, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", - "width": 70, - "x": -1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", - "width": 70, - "x": -1960, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", - "width": 70, - "x": -1960, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", - "width": 70, - "x": -1960, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", - "width": 70, - "x": -1960, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", - "width": 70, - "x": -1960, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", - "width": 70, - "x": -1960, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", - "width": 70, - "x": -1960, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", - "width": 70, - "x": -1960, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", - "width": 70, - "x": -1960, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", - "width": 70, - "x": -1960, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", - "width": 70, - "x": -1960, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", - "width": 70, - "x": -1960, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", - "width": 70, - "x": -1960, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", - "width": 70, - "x": -1960, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", - "width": 70, - "x": -1960, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", - "width": 70, - "x": -1960, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 85, - "layer": "", - "name": "basketball_hoop", - "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": "basketball", - "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, - "layer": "", - "locked": true, - "name": "building_rooftop", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 648, - "x": -1543, - "y": 1066, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 0, - "height": 490, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 490, - "x": -1470, - "y": 1755, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 626, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 626, - "x": 74, - "y": 424, - "zOrder": 200, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 700, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 700, - "x": -2660, - "y": 1470, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 606, - "layer": "", - "locked": true, - "name": "building_rooftop", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 606, - "x": -2624, - "y": 797, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", - "width": 70, - "x": -2030, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", - "width": 70, - "x": -2030, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", - "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", - "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", - "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", - "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", - "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", - "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", - "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", - "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", - "width": 70, - "x": -2380, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", - "width": 70, - "x": -2030, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", - "width": 70, - "x": -2100, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", - "width": 70, - "x": -2310, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", - "width": 70, - "x": -2240, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", - "width": 70, - "x": -2170, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", - "width": 70, - "x": -2660, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", - "width": 70, - "x": -2660, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", - "width": 70, - "x": -2660, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", - "width": 70, - "x": -2660, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", - "width": 70, - "x": -2660, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", - "width": 70, - "x": -2660, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", - "width": 70, - "x": -2660, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", - "width": 70, - "x": -2660, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", - "width": 70, - "x": -2660, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", - "width": 70, - "x": -2660, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", - "width": 70, - "x": -2660, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", - "width": 70, - "x": -2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", - "width": 70, - "x": -2450, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", - "width": 70, - "x": -2520, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", - "width": 70, - "x": -2590, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", - "width": 70, - "x": -2660, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", - "width": 70, - "x": -2660, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", - "width": 70, - "x": -2660, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", - "width": 70, - "x": -2660, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", - "width": 70, - "x": -2660, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", - "width": 70, - "x": -2660, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", - "width": 70, - "x": -2660, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", - "width": 70, - "x": -2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", - "width": 70, - "x": -2660, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", - "width": 70, - "x": -2660, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", - "width": 70, - "x": -2660, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", - "width": 70, - "x": -2660, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", - "width": 70, - "x": -2660, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", - "width": 70, - "x": -2660, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", - "width": 70, - "x": -2590, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", - "width": 70, - "x": -2520, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", - "width": 70, - "x": -2450, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", - "width": 70, - "x": -2380, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", - "width": 70, - "x": -2310, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", - "width": 70, - "x": -2240, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", - "width": 70, - "x": -2170, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", - "width": 70, - "x": -2100, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", - "width": 70, - "x": -2030, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", - "width": 70, - "x": -2590, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", - "width": 70, - "x": -2100, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", - "width": 70, - "x": -2520, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", - "width": 70, - "x": -2170, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", - "width": 70, - "x": -2240, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", - "width": 70, - "x": -2450, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", - "width": 70, - "x": -2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", - "width": 70, - "x": -2030, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", - "width": 70, - "x": -2100, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", - "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", - "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", - "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", - "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", - "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", - "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", - "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", - "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", - "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", - "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", - "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", - "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", - "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", - "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", - "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", - "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", - "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", - "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", - "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", - "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", - "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", - "width": 70, - "x": -2730, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", - "width": 70, - "x": -2730, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", - "width": 70, - "x": -2730, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", - "width": 70, - "x": -2730, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", - "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", - "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", - "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", - "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", - "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", - "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", - "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", - "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", - "width": 70, - "x": -2380, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", - "width": 70, - "x": -2310, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", - "width": 70, - "x": -2240, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", - "width": 70, - "x": -2590, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", - "width": 70, - "x": -980, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", - "width": 70, - "x": -980, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", - "width": 70, - "x": -980, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", - "width": 70, - "x": -980, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", - "width": 70, - "x": -980, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", - "width": 70, - "x": -980, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", - "width": 70, - "x": -980, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", - "width": 70, - "x": -980, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", - "width": 70, - "x": -980, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", - "width": 70, - "x": -980, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", - "width": 70, - "x": -980, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", - "width": 70, - "x": -1190, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", - "width": 70, - "x": -1120, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", - "width": 70, - "x": -1050, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", - "width": 70, - "x": -1400, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", - "width": 70, - "x": -1330, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", - "width": 70, - "x": -1260, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", - "width": 70, - "x": -1680, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", - "width": 70, - "x": -1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", - "width": 70, - "x": -1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", - "width": 70, - "x": -1470, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "basketball_court", - "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": "basketball_court", - "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": "basketball_court", - "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": "basketball_court", - "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": "basketball_hoop", - "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": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", - "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", - "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", - "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", - "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", - "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", - "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", - "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", - "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", - "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", - "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", - "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", - "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", - "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", - "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", - "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", - "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", - "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", - "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", - "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", - "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", - "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", - "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", - "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", - "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", - "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", - "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", - "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", - "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", - "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", - "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", - "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", - "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", - "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", - "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", - "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", - "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", - "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", - "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", - "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", - "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", - "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", - "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", - "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", - "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", - "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", - "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", - "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", - "width": 70, - "x": -1260, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", - "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", - "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "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": "road_sprite_all", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", - "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", - "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", - "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", - "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", - "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", - "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", - "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", - "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", - "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", - "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", - "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", - "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", - "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", - "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", - "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", - "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", - "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", - "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", - "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", - "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", - "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", - "width": 70, - "x": -2940, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", - "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", - "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", - "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", - "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", - "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", - "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", - "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", - "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", - "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", - "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", - "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", - "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", - "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", - "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", - "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", - "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", - "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", - "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", - "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", - "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", - "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", - "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", - "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", - "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", - "width": 70, - "x": -2800, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", - "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", - "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", - "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", - "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", - "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", - "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", - "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", - "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", - "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", - "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", - "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", - "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", - "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", - "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", - "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", - "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", - "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", - "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", - "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", - "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", - "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", - "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", - "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", - "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", - "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", - "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", - "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", - "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", - "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", - "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", - "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", - "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", - "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", - "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", - "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", - "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", - "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", - "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", - "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", - "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", - "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", - "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", - "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", - "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", - "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", - "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", - "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", - "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", - "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", - "width": 70, - "x": -1960, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", - "width": 70, - "x": -1960, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", - "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", - "width": 70, - "x": -1960, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", - "width": 70, - "x": -1960, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", - "width": 70, - "x": -2030, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1960, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", - "width": 70, - "x": -980, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", - "width": 70, - "x": -2940, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", - "width": 70, - "x": -2800, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", - "width": 70, - "x": 1470, - "y": -210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", - "width": 70, - "x": 1470, - "y": -140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", - "width": 70, - "x": 910, - "y": -210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", - "width": 70, - "x": 910, - "y": -140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", - "width": 70, - "x": 1190, - "y": -210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", - "width": 70, - "x": 1190, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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", - "width": 70, - "x": 1540, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", - "width": 70, - "x": 1610, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", - "width": 70, - "x": 1540, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", - "width": 70, - "x": 1610, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "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": 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": "weapon_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": "6c082ae9-a7e6-4cb3-a83e-72203270d762", - "width": 70, - "x": -770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", - "width": 70, - "x": -840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", - "width": 70, - "x": -910, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", - "width": 70, - "x": -560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", - "width": 70, - "x": -630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", - "width": 70, - "x": -700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", - "width": 70, - "x": 140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", - "width": 70, - "x": -420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", - "width": 70, - "x": -490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", - "width": 70, - "x": 630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", - "width": 70, - "x": -280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", - "width": 70, - "x": -350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", - "width": 70, - "x": 560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", - "width": 70, - "x": 700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", - "width": 70, - "x": 210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", - "width": 70, - "x": 350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", - "width": 70, - "x": 420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", - "width": 70, - "x": -70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", - "width": 70, - "x": -140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", - "width": 70, - "x": -210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", - "width": 70, - "x": 0, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", - "width": 70, - "x": 280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", - "width": 70, - "x": 70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 490, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "props_decorations", - "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": "props_decorations", - "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", - "width": 70, - "x": 2030, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", - "width": 70, - "x": 2100, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", - "width": 70, - "x": 2170, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", - "width": 70, - "x": 1680, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", - "width": 70, - "x": 1750, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", - "width": 70, - "x": 1820, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", - "width": 70, - "x": 1890, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", - "width": 70, - "x": 1960, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", - "width": 70, - "x": 2730, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", - "width": 70, - "x": 2800, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", - "width": 70, - "x": 2870, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", - "width": 70, - "x": 2380, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", - "width": 70, - "x": 2450, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", - "width": 70, - "x": 2520, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", - "width": 70, - "x": 2590, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", - "width": 70, - "x": 2660, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", - "width": 70, - "x": 2310, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", - "width": 70, - "x": 2240, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", - "width": 70, - "x": 3010, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", - "width": 70, - "x": 2940, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", - "width": 70, - "x": 2030, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", - "width": 70, - "x": 2100, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", - "width": 70, - "x": 2170, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", - "width": 70, - "x": 1680, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", - "width": 70, - "x": 1750, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", - "width": 70, - "x": 1820, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", - "width": 70, - "x": 1890, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", - "width": 70, - "x": 1960, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", - "width": 70, - "x": 2730, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", - "width": 70, - "x": 2800, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", - "width": 70, - "x": 2870, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", - "width": 70, - "x": 2380, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", - "width": 70, - "x": 2450, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", - "width": 70, - "x": 2520, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", - "width": 70, - "x": 2590, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", - "width": 70, - "x": 2660, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", - "width": 70, - "x": 2310, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", - "width": 70, - "x": 2240, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", - "width": 70, - "x": 3010, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", - "width": 70, - "x": 2940, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", - "width": 0, - "x": 3010, - "y": -294, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", - "width": 70, - "x": 2100, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", - "width": 70, - "x": 2030, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", - "width": 70, - "x": 1960, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", - "width": 70, - "x": 1890, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", - "width": 70, - "x": 1820, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", - "width": 70, - "x": 1750, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", - "width": 70, - "x": 3010, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", - "width": 70, - "x": 3010, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", - "width": 70, - "x": 3010, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", - "width": 70, - "x": 2940, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", - "width": 70, - "x": 2870, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", - "width": 70, - "x": 2800, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", - "width": 70, - "x": 2730, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", - "width": 70, - "x": 2660, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", - "width": 70, - "x": 2590, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", - "width": 70, - "x": 2520, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", - "width": 70, - "x": 2450, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", - "width": 70, - "x": 2380, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", - "width": 70, - "x": 2310, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", - "width": 70, - "x": 2240, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", - "width": 70, - "x": 2170, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", - "width": 70, - "x": 3010, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", - "width": 70, - "x": 3010, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", - "width": 70, - "x": 3010, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", - "width": 70, - "x": 3010, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", - "width": 70, - "x": 3010, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", - "width": 70, - "x": 3010, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", - "width": 70, - "x": 3010, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", - "width": 70, - "x": 3010, - "y": 350, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", - "width": 70, - "x": 2940, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", - "width": 70, - "x": 3010, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", - "width": 70, - "x": 3010, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", - "width": 70, - "x": 3010, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", - "width": 70, - "x": 2450, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", - "width": 70, - "x": 2590, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", - "width": 70, - "x": 2520, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", - "width": 70, - "x": 2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", - "width": 70, - "x": 2730, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", - "width": 70, - "x": 2800, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", - "width": 70, - "x": 2870, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", - "width": 70, - "x": 2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", - "width": 70, - "x": 2170, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", - "width": 70, - "x": 2240, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", - "width": 70, - "x": 2310, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", - "width": 70, - "x": 2380, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", - "width": 70, - "x": 2030, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", - "width": 70, - "x": 1680, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", - "width": 70, - "x": 1890, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", - "width": 70, - "x": 1960, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", - "width": 70, - "x": 1750, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", - "width": 70, - "x": 1820, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", - "width": 70, - "x": 1680, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", - "width": 70, - "x": 1680, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", - "width": 70, - "x": 1680, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", - "width": 70, - "x": 1680, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", - "width": 70, - "x": 1680, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", - "width": 70, - "x": 1680, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", - "width": 70, - "x": 1680, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", - "width": 70, - "x": 1680, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1680, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", - "width": 70, - "x": 1680, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2240, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", - "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", - "width": 70, - "x": 2030, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", - "width": 70, - "x": 1890, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1750, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1820, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2870, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", - "width": 70, - "x": 2870, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", - "width": 70, - "x": 2870, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", - "width": 70, - "x": 2870, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", - "width": 70, - "x": 2870, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "building_rooftop", - "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": "building_rooftop", - "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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "", - "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": 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": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "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": "props_roadblock", - "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_tiled_4", - "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_tiled_4", - "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_tiled_3", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "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": "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": 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": -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": 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": 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": 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": 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": "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": "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": "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": "9746178d-0016-4455-9589-a45c4dfeb0ad", - "width": 70, - "x": -350, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "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": 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, - "layer": "", - "name": "sand", - "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", - "width": 70, - "x": 1960, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", - "width": 70, - "x": -2590, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", - "width": 70, - "x": -2800, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", - "width": 70, - "x": -2730, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", - "width": 70, - "x": -2660, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", - "width": 70, - "x": -3640, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", - "width": 70, - "x": -3780, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", - "width": 70, - "x": -3710, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", - "width": 280, - "x": -2800, - "y": 3640, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", - "width": 70, - "x": -2590, - "y": 3360, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", - "width": 210, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", - "width": 210, - "x": -3780, - "y": 3640, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sea_tiled_water_cover", - "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", - "width": 70, - "x": -350, - "y": 3430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", - "width": 70, - "x": 420, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", - "width": 70, - "x": 490, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", - "width": 70, - "x": 560, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 168, - "layer": "", - "name": "door", - "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", - "width": 205, - "x": -2448, - "y": 893, - "zOrder": 12643564, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "5" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 127, - "layer": "", - "name": "door", - "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", - "width": 231, - "x": -1262, - "y": 1966, - "zOrder": 12643565, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 142, - "layer": "", - "name": "door", - "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", - "width": 139, - "x": -1176, - "y": 1325, - "zOrder": 12643566, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 194, - "layer": "", - "name": "door", - "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", - "width": 124, - "x": 1938, - "y": 1129, - "zOrder": 12643567, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "6" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 1289, - "layer": "Fade", - "name": "game_transition", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "ground_1", - "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", - "width": 1680, - "x": -910, - "y": -210, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5c3e7176-be09-41ac-8269-d3ace2f2371d", - "width": 70, - "x": 0, - "y": 3010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "237d1536-4fd1-4a5c-8a73-1cd4ed60add0", - "width": 70, - "x": 0, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c605b6ec-1edf-495c-8d29-d5c714c3a0ea", - "width": 70, - "x": 1680, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 59, - "layer": "", - "name": "player_body", - "persistentUuid": "859dd629-b809-4164-b7f3-09c3df67ab8f", - "width": 40, - "x": -571, - "y": 1381, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 10, - "customSize": false, - "height": 0, - "layer": "", - "name": "player_leg", - "persistentUuid": "890471a7-a845-405a-8a28-19e4525e5b4b", - "width": 0, - "x": -477, - "y": 1427, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "player_hand", - "persistentUuid": "bda1606c-eb22-4c15-8e52-7214ef49de3d", - "width": 0, - "x": -509, - "y": 1459, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "player_hand", - "persistentUuid": "97236a7f-0ddd-43ea-a2fd-fb42647e94cb", - "width": 0, - "x": -514, - "y": 1378, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 350, - "customSize": false, - "height": 0, - "layer": "", - "name": "player_leg", - "persistentUuid": "99720aae-9c9c-4b44-a303-04811c3345fa", - "width": 0, - "x": -474, - "y": 1404, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78fe3d08-6e15-494f-a136-5ff9e7a0626a", - "width": 70, - "x": -210, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b4d252a-6b5b-460a-9a42-35bc6e19c4fa", - "width": 70, - "x": -280, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6caa23d7-ed59-4cbc-b67c-76de7feeed12", - "width": 70, - "x": -210, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c48aa9db-027c-4560-8dd2-18a708d39604", - "width": 70, - "x": -280, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb8f8d9c-e647-4cb6-88b9-d0342f319e63", - "width": 70, - "x": -210, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76df59a4-f87d-49c0-bd6f-c1a8c8684853", - "width": 70, - "x": -280, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "88087dc3-c9d2-43ee-a015-3e6fb38ca20c", - "width": 70, - "x": -210, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec8ec0f0-4c02-44df-a0a4-030a7d08eafc", - "width": 70, - "x": -350, - "y": 770, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "121d4993-ef53-4451-8f86-892688e154e4", - "width": 70, - "x": -350, - "y": 630, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8984bad-a8f9-47c2-9116-3e90cfb1cc1b", - "width": 70, - "x": -350, - "y": 700, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99b670a1-8572-4782-97cb-513a598d6059", - "width": 70, - "x": -280, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f986bd4-2531-4926-a726-8dcc780318aa", - "width": 70, - "x": -280, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac9b1747-d05b-43c5-830f-2f81d55ad52a", - "width": 70, - "x": -210, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2511381-364e-4bf1-8371-61f70777e9ab", - "width": 70, - "x": -210, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f76fbe4-6471-4959-bee4-ea7968f8746c", - "width": 70, - "x": -280, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 626, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "e7b514b2-97b8-4e9c-9ea1-ed8a127f3679", - "width": 626, - "x": -795, - "y": 457, - "zOrder": 200, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "95952c6e-50a7-4fcf-a9a0-12899c0b91d5", - "width": 70, - "x": 490, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e650a56-601f-41af-b521-bf959db9dea1", - "width": 70, - "x": 420, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02f1e15d-2841-42f2-a7c9-ec2aa88bdb99", - "width": 70, - "x": -980, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7eabebcf-da6b-46aa-a492-8a048a37eb5e", - "width": 70, - "x": -980, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c753278a-75de-48cf-92d2-74d9198fa008", - "width": 70, - "x": 1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5d05599-ff2e-4a19-b553-7e0c5d2ea416", - "width": 70, - "x": 1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f3a0a4a-64f8-4c98-933c-389d23505f1f", - "width": 70, - "x": 1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": true, - "name": "sea_tiled_water", - "persistentUuid": "dc574f3c-0e4b-49aa-b47b-ad1ba2564ffe", - "sealed": true, - "width": 0, - "x": -10620, - "y": -7330, - "zOrder": -12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "405d6ded-99e2-4121-a8b1-1443f2202568", - "width": 0, - "x": 18, - "y": 96, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "info", - "type": "string", - "value": "hide Sea" - }, - { - "folded": true, - "name": "id", - "type": "string", - "value": "sea" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "f0e1911b-a40a-4d17-b752-4c88c231f1ac", - "width": 0, - "x": 18, - "y": 54, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "shadow" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "1d0de529-1976-49aa-995b-d6a7e22f8a7c", - "width": 0, - "x": 1671, - "y": 19, - "zOrder": 12643570, - "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_tiled_1", - "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_tiled_1", - "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": "player_crosshair", - "persistentUuid": "808484fa-24aa-4068-9347-4591d049c015", - "width": 0, - "x": -366, - "y": 1384, - "zOrder": 12643596, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 34, - "keepRatio": true, - "layer": "Debug", - "name": "debug_fps", - "persistentUuid": "7a76b0af-6c17-4bb9-b114-4c8700fe0ab5", - "width": 419, - "x": 630, - "y": 0, - "zOrder": 12643597, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "grass", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets\\foliage\\grass\\tile_01.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_sprite_all", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "building_rooftop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.5, - "blur": 2, - "distance": 20, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/buildings/rooftops/roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 174.5, - "y": 73.5 - }, - { - "x": 827.5, - "y": 74 - }, - { - "x": 826.5, - "y": 927 - }, - { - "x": 175.5, - "y": 926 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/buildings/rooftops/roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 53, - "y": 197.5 - }, - { - "x": 906.5, - "y": 198 - }, - { - "x": 906, - "y": 846 - }, - { - "x": 56, - "y": 849.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/buildings/rooftops/roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 111, - "y": 295 - }, - { - "x": 893, - "y": 297.5 - }, - { - "x": 893, - "y": 703 - }, - { - "x": 107, - "y": 705 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_06.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_05.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\side_walk\\sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\dirt.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_20.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flame_thrower_fire_collision", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [ - { - "name": "CenterBurning", - "x": 50, - "y": 16 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "player_crosshair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair010", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair_3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair060", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair008", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun4", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "tazer_hitbox", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun5", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": -15, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": -15, - "y": 4.852940082550049 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Slash1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "energy", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "strength", - "type": "number", - "value": 10 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (21).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26.121299743652344, - "y": 26.470600128173828 - }, - { - "x": 63.474300384521484, - "y": 26.470600128173828 - }, - { - "x": 63.76839828491211, - "y": 37.058799743652344 - }, - { - "x": 26.7096004486084, - "y": 37.647098541259766 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (2).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (27).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 26, - "y": 26 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (1).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (9).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (5).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 40 - }, - { - "x": 37, - "y": 40 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (23).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (22).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_roadblock", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceRed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceYellow.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bullet", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", - "points": [ - { - "name": "effects_bullet", - "x": 31.95669937133789, - "y": 3.863640069961548 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_ammo_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - } - ], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_holding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeLarge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeSmall.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_183.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_186.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "house_enter", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sea_tiled_water_cover", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - } - ] - }, - { - "assetStoreId": "", - "height": 20000, - "name": "sea_tiled_water", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 20000, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/sport/ball/charactersEquipment_g483.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets/sport/ball/charactersEquipment_g553.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_hoop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/sport/post/elements_g361_copy_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 76.5, - "y": 56 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 8.5 - }, - { - "x": 66, - "y": 17.5 - }, - { - "x": 67, - "y": 93.5 - }, - { - "x": 0, - "y": 103.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets\\sport\\ground\\ground_beige.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_court", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sport\\ground_elements\\element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "debug menu - \"h\" to toggle menu visibility", - "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": "debug menu - \"h\" to toggle menu visibility", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "112;112;112" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_decorations", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\deco\\deco_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 272, - "y": 248 - }, - { - "x": 357, - "y": 258 - }, - { - "x": 353, - "y": 322 - }, - { - "x": 269.5, - "y": 307 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_moveable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\oil.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBeige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBrown.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bridge_sprite_1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\bridge\\bridge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_tiled_4", - "texture": "assets\\Road\\road\\tile_35-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_tiled_3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets\\Road\\concrete\\concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_tiled_1", - "texture": "assets\\Road\\road\\tile_37-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/phone/battery/1_g14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/phone/battery/1_g15.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/phone/battery/1_g16.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_tiled_2", - "texture": "assets\\Road\\road\\tile_63-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "beach_sand_1", - "texture": "assets\\Road\\map_edge\\tile_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_2", - "texture": "assets\\Road\\map_edge\\tile_19.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_1", - "texture": "assets\\Road\\side_walk\\sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_2", - "texture": "assets\\Road\\map_edge\\tile_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 1, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1, - "useLegacyBottomAndRightAnchors": false - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "Movement", - "type": "structure", - "children": [ - { - "name": "TopDownMovement", - "type": "structure", - "children": [ - { - "name": "run", - "persistentUuid": "dbe1965b-d1af-415d-9e83-2e4312af1344", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 600 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 1000 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 400 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "type": "number", - "value": 200 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "type": "number", - "value": 0.1 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "type": "number", - "value": 0.2 - } - ] - }, - { - "name": "walk", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 400 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 800 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 300 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "persistentUuid": "c6a43fd0-3cef-4009-bdcb-974b49edf1d1", - "type": "number", - "value": 1000 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "persistentUuid": "e725550c-0f72-4304-99c6-c8bb804277bb", - "type": "number", - "value": 0.2 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "persistentUuid": "5b2ef896-624b-46b8-9e33-3419d81e02eb", - "type": "number", - "value": 0.3 - } - ] - } - ] - }, - { - "name": "canMove", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Phone", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Weapons", - "type": "structure", - "children": [ - { - "name": "Active", - "type": "structure", - "children": [ - { - "name": "uziLong", - "type": "boolean", - "value": false - }, - { - "name": "uziSilencer", - "type": "boolean", - "value": false - } - ] - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.1, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - }, - { - "effectType": "Reflection", - "name": "breathing", - "doubleParameters": { - "alphaEnding": 1, - "alphaStart": 1, - "amplitudeEnding": 3, - "amplitudeStart": 0, - "animationSpeed": 1, - "boundary": 0, - "waveLengthEnding": 100, - "waveLengthStart": 60 - }, - "stringParameters": {}, - "booleanParameters": { - "mirror": false - } - } - ], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "ignoreDefaultControls": true, - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 400, - "customIsometryAngle": 30, - "deceleration": 800, - "maxSpeed": 200, - "movementAngleOffset": 0, - "rotateObject": true, - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g499.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g492.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g527.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g503.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.3, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g571.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g576.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g568.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g575.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g574.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g578.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g569.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g569.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - } - ] - }, - { - "assetStoreId": "", - "name": "debug_toggle", - "type": "PrimitiveDrawing::Drawer", - "variables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "info", - "type": "string", - "value": "enable Shadow" - } - ], - "effects": [], - "behaviors": [ - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch", - "ThumbRadius": 10, - "ActiveThumbColor": "24;119;211", - "ThumbOpacity": 255, - "TrackWidth": 20, - "TrackHeight": 14, - "InactiveTrackColor": "150;150;150", - "InactiveTrackOpacity": 255, - "ActiveTrackColor": "", - "ActiveTrackOpacity": 128, - "HaloRadius": 24, - "HaloOpacityHover": 32, - "HaloOpacityPressed": 64, - "ThumbOffset": 0, - "Checked": false, - "Disabled": false, - "ToggleChanged": false, - "InactiveThumbColor": "255;255;255", - "IsPressed": false, - "ThumbShadowOffsetY": 4, - "ThumbShadowOffsetX": 0, - "ThumbShadowOpacity": 32, - "NeedRedaw": true, - "IsHovered": false, - "WasHovered": false - } - ], - "fillOpacity": 255, - "outlineSize": 1, - "outlineOpacity": 255, - "fillColor": { - "b": 255, - "g": 255, - "r": 255 - }, - "outlineColor": { - "b": 0, - "g": 0, - "r": 0 - }, - "absoluteCoordinates": false, - "clearBetweenFrames": true, - "antialiasing": "none" - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_frame", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "Outline", - "name": "Effect", - "doubleParameters": { - "padding": 0, - "thickness": 1 - }, - "stringParameters": { - "color": "29;29;27" - }, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/frame/1.png", - "points": [ - { - "name": "1", - "x": 50, - "y": 370.5 - }, - { - "name": "2", - "x": 115, - "y": 370.5 - }, - { - "name": "3", - "x": 180, - "y": 370.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 224, - "y": 0 - }, - { - "x": 224, - "y": 418 - }, - { - "x": 0, - "y": 418 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_mask", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "ColorReplace", - "name": "Effect", - "doubleParameters": { - "epsilon": 0.4 - }, - "stringParameters": { - "newColor": "0;0;0", - "originalColor": "255;255;255" - }, - "booleanParameters": {} - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/frame/2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 215, - "y": 0 - }, - { - "x": 215, - "y": 417 - }, - { - "x": 0, - "y": 417 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "id", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/apps/1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "images", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/apps/2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "camera", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/apps/3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_wallpaper", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 100, - "RadiusY": 0, - "LoopDuration": 20, - "InitialTurningLeft": false, - "InitialDirectionAngle": 0, - "ShouldRotate": false, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/phone/wallpaper/1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/phone/wallpaper/2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/phone/wallpaper/3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/phone/wallpaper/4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "uziSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uziSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLongSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "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": [] - } - ] - } - ] - }, - { - "name": "uziLong", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uzi", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 52.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "sniper", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 200.5, - "y": 54.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgunShort", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/shotgunShort.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 98, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgun", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/shotgun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 97.5, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncherModern", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/rocketlauncherModern.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 152.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncher", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 199.5, - "y": 71 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistolSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/pistolSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 79.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistol", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/pistol.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 57.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/machinegunLauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116, - "y": 51.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/machinegun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116.5, - "y": 52 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knifeRound_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15.5, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knifeRound_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 68 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knife_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 69 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knife_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeVintage.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 19.5, - "y": 74 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeSmoke.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 18.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeFlash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenade.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 22.5, - "y": 34 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/flamethrower_short.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 106.5, - "y": 41 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/flamethrower_long.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 114, - "y": 40.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "weapon_bar", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapons/icons/bar.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 112, - "y": 0 - }, - { - "x": 1807, - "y": 0 - }, - { - "x": 1807, - "y": 296 - }, - { - "x": 112, - "y": 296 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weaponWheelSticker", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "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_tiled_1", - "texture": "assets/bridge/bridge.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 300, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_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": { - "folderName": "__ROOT", - "children": [ - { - "folderName": "UI", - "children": [ - { - "folderName": "weapon", - "children": [ - { - "objectName": "NewObject" - }, - { - "objectName": "weapon_icons" - } - ] - }, - { - "folderName": "phone", - "children": [ - { - "objectName": "phone_icon" - }, - { - "objectName": "phone_frame" - }, - { - "objectName": "phone_mask" - }, - { - "objectName": "phone_wallpaper" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "phone_wifi" - } - ] - }, - { - "folderName": "debug", - "children": [ - { - "objectName": "wheel_info" - }, - { - "objectName": "weapon_holding" - }, - { - "objectName": "weapon_reloading" - }, - { - "objectName": "debug_fps" - }, - { - "objectName": "debug_toggle" - }, - { - "objectName": "debug_text" - }, - { - "objectName": "debug_ammo_text" - } - ] - } - ] - }, - { - "folderName": "Environment", - "children": [ - { - "folderName": "particles", - "children": [ - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "brown_leaves_particle" - } - ] - }, - { - "folderName": "sports", - "children": [ - { - "folderName": "basketball", - "children": [ - { - "objectName": "basketball_hoop" - }, - { - "objectName": "basketball_court" - }, - { - "objectName": "basketball" - } - ] - } - ] - }, - { - "folderName": "props", - "children": [ - { - "objectName": "props_moveable" - }, - { - "objectName": "props_decorations" - }, - { - "objectName": "props_fences" - }, - { - "objectName": "props_roadblock" - }, - { - "objectName": "props_foliage" - } - ] - } - ] - }, - { - "folderName": "Player", - "children": [ - { - "objectName": "player_crosshair" - }, - { - "objectName": "player_body" - }, - { - "objectName": "player_leg" - }, - { - "objectName": "player_hand" - } - ] - }, - { - "folderName": "Land", - "children": [ - { - "objectName": "beach_sand_2" - }, - { - "objectName": "beach_sand_6" - }, - { - "objectName": "beach_sand_3" - }, - { - "objectName": "beach_sand_4" - }, - { - "objectName": "beach_sand_5" - }, - { - "objectName": "sand_1" - }, - { - "objectName": "beach_sand_1" - }, - { - "objectName": "sand_2" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "sand" - }, - { - "objectName": "grass_tiled" - }, - { - "objectName": "grass" - } - ] - }, - { - "folderName": "Road", - "children": [ - { - "objectName": "road_tiled_1" - }, - { - "objectName": "road_tiled_2" - }, - { - "objectName": "bridge_sprite_1" - }, - { - "objectName": "bridge_tiled_1" - }, - { - "objectName": "road_tiled_3" - }, - { - "objectName": "road_tiled_4" - }, - { - "objectName": "road_sprite_all" - } - ] - }, - { - "folderName": "Weapons", - "children": [ - { - "folderName": "Icons", - "children": [ - { - "objectName": "weapon_icon" - }, - { - "objectName": "weapon_bar" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_rocket" - } - ] - }, - { - "folderName": "type", - "children": [ - { - "folderName": "melee", - "children": [ - { - "objectName": "mele1" - }, - { - "objectName": "mele2" - } - ] - }, - { - "folderName": "gun", - "children": [ - { - "objectName": "gun1" - }, - { - "objectName": "gun3" - }, - { - "objectName": "gun4" - }, - { - "objectName": "gun5" - }, - { - "objectName": "gun2" - } - ] - } - ] - }, - { - "folderName": "hitbox", - "children": [ - { - "objectName": "flame_thrower_fire_collision" - }, - { - "objectName": "tazer_hitbox" - }, - { - "objectName": "Slash1" - } - ] - }, - { - "folderName": "ammo", - "children": [ - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "bullet" - }, - { - "objectName": "energy" - }, - { - "objectName": "ammo" - } - ] - } - ] - }, - { - "folderName": "Buildings", - "children": [ - { - "objectName": "building_rooftop" - } - ] - }, - { - "folderName": "Sea", - "children": [ - { - "objectName": "sea_tiled_water" - }, - { - "objectName": "sea_tiled_water_cover" - } - ] - }, - { - "folderName": "misc", - "children": [ - { - "objectName": "house_enter" - }, - { - "objectName": "door" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "weaponWheelSticker" - } - ] - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "folded": true, - "name": "Note - Important Information", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "-50" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sea_tiled_water", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sea_tiled_water_cover", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "road_sprite_all", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_6", - "=", - "-11" - ] - } - ] - }, - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "building_rooftop", - "=", - "120" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "props_foliage", - "=", - "121" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "sea_tiled_water_cover" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "IntroZoom", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ZoomCamera" - }, - "parameters": [ - "", - "0.35", - "", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.3" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.35", - "", - "\"elastic\"", - "1" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.2" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.5", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.1" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.75", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "1", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "ToggleGlobalVariableAsBoolean" - }, - "parameters": [ - "Game.intro" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Game.Camera.Zoom", - "=", - "1" - ] - } - ] - }, - { - "disabled": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": [ - "console.time();", - "for (var i = 0; i < 100000; i++) {", - " let square = i ** 2;", - "}", - "console.timeEnd();" - ], - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "LightNight", - "name": "LightNight", - "doubleParameters": { - "opacity": 0.5 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "OldFilm", - "name": "Vignetting", - "doubleParameters": { - "animationFrequency": 0, - "noise": 0, - "noiseSize": 0, - "scratch": 0, - "scratchDensity": 0.3, - "scratchWidth": 1, - "sepia": 0, - "vignetting": 0.3, - "vignettingAlpha": 0.5, - "vignettingBlur": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "TiltShift", - "name": "weaponwhe", - "doubleParameters": { - "blur": 0, - "gradientBlur": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "UI", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Debug", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/city1.json b/src/layouts/city1.json deleted file mode 100644 index 548f16ccb..000000000 --- a/src/layouts/city1.json +++ /dev/null @@ -1,88594 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "City1", - "name": "City1", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.4237500000000029, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "bullet_obstacles", - "objects": [ - { - "name": "roof_tops" - }, - { - "name": "Fences" - }, - { - "name": "road_block" - }, - { - "name": "foliage" - } - ] - }, - { - "name": "doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "North_doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "West_doors", - "objects": [] - }, - { - "name": "South_doors", - "objects": [] - }, - { - "name": "East_doors", - "objects": [] - }, - { - "name": "Phone_status_bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - } - ], - "variables": [ - { - "name": "fade", - "type": "string", - "value": "" - }, - { - "name": "walk_in_west", - "type": "string", - "value": "" - }, - { - "name": "walk_in_north", - "type": "string", - "value": "" - }, - { - "name": "separate", - "type": "string", - "value": "" - }, - { - "name": "walk_in_south", - "type": "string", - "value": "" - }, - { - "name": "walk_in_east", - "type": "string", - "value": "" - }, - { - "name": "niko_movement", - "type": "string", - "value": "" - }, - { - "name": "Camera_zoom", - "type": "string", - "value": "" - }, - { - "name": "basketball", - "type": "string", - "value": "" - }, - { - "name": "phone", - "type": "string", - "value": "" - }, - { - "name": "using_phone", - "type": "string", - "value": "" - }, - { - "name": "phone_time", - "type": "string", - "value": "" - }, - { - "name": "godmode", - "type": "boolean", - "value": false - }, - { - "name": "Died_effects_tween", - "type": "string", - "value": "" - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", - "width": 2100, - "x": -3220, - "y": -210, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", - "width": 70, - "x": 910, - "y": -350, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", - "width": 70, - "x": 980, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", - "width": 70, - "x": 1470, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", - "width": 70, - "x": 1330, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", - "width": 70, - "x": 1260, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", - "width": 70, - "x": 1190, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", - "width": 70, - "x": 1120, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", - "width": 70, - "x": 1050, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", - "width": 70, - "x": 1190, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", - "width": 70, - "x": 1400, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", - "width": 70, - "x": 1190, - "y": 140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", - "width": 70, - "x": 1470, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", - "width": 70, - "x": 1470, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", - "width": 70, - "x": 1470, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", - "width": 70, - "x": 1470, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", - "width": 70, - "x": 1470, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", - "width": 70, - "x": 1470, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", - "width": 70, - "x": 1470, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", - "width": 70, - "x": 1470, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", - "width": 70, - "x": 910, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", - "width": 70, - "x": 910, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", - "width": 70, - "x": 910, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", - "width": 70, - "x": 910, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", - "width": 70, - "x": 910, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "road", - "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", - "width": 210, - "x": 1260, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", - "width": 210, - "x": 980, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", - "width": 70, - "x": 1190, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", - "width": 70, - "x": 1190, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", - "width": 70, - "x": 1190, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", - "width": 70, - "x": 1190, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", - "width": 70, - "x": 1190, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", - "width": 70, - "x": 1190, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", - "width": 70, - "x": 1190, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", - "width": 70, - "x": 1190, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", - "width": 70, - "x": 1190, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", - "width": 70, - "x": 1190, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", - "width": 70, - "x": 1190, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", - "width": 70, - "x": 1190, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", - "width": 70, - "x": 1190, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", - "width": 70, - "x": 1190, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", - "width": 70, - "x": 1190, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", - "width": 70, - "x": 1190, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", - "width": 70, - "x": 1470, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", - "width": 70, - "x": 1470, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", - "width": 70, - "x": 1470, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", - "width": 70, - "x": 1470, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", - "width": 70, - "x": 1470, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", - "width": 70, - "x": 1470, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", - "width": 70, - "x": 1470, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", - "width": 70, - "x": 1470, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", - "width": 70, - "x": 1470, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", - "width": 70, - "x": 1470, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", - "width": 70, - "x": 1470, - "y": 1120, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", - "width": 70, - "x": 1470, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", - "width": 70, - "x": 910, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", - "width": 70, - "x": 910, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", - "width": 70, - "x": 910, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", - "width": 70, - "x": 910, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", - "width": 70, - "x": 910, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", - "width": 70, - "x": 910, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", - "width": 70, - "x": 910, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", - "width": 70, - "x": 910, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", - "width": 70, - "x": 910, - "y": 1190, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", - "width": 70, - "x": 910, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", - "width": 70, - "x": 910, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", - "width": 70, - "x": 910, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", - "width": 70, - "x": 420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", - "width": 70, - "x": 770, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", - "width": 70, - "x": 700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", - "width": 70, - "x": 630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", - "width": 70, - "x": 490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", - "width": 70, - "x": 1190, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", - "width": 70, - "x": 1190, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", - "width": 70, - "x": 1190, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": true, - "name": "road", - "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", - "width": 1260, - "x": -70, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", - "width": 70, - "x": 420, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", - "width": 70, - "x": 490, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", - "width": 70, - "x": 560, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", - "width": 70, - "x": 630, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", - "width": 70, - "x": 700, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", - "width": 70, - "x": 770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", - "width": 70, - "x": 840, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", - "width": 70, - "x": 980, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", - "width": 1610, - "x": -420, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", - "width": 280, - "x": 1190, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", - "width": 70, - "x": 1470, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", - "width": 70, - "x": 1470, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", - "width": 70, - "x": 1470, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", - "width": 70, - "x": 1470, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", - "width": 70, - "x": 1470, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", - "width": 70, - "x": 1470, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", - "width": 70, - "x": 1470, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", - "width": 70, - "x": 1330, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", - "width": 70, - "x": 1260, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", - "width": 70, - "x": 1190, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", - "width": 70, - "x": 1120, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", - "width": 70, - "x": 1400, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", - "width": 70, - "x": 700, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", - "width": 70, - "x": 910, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", - "width": 70, - "x": 1470, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", - "width": 70, - "x": 420, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", - "width": 70, - "x": 490, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", - "width": 70, - "x": 1470, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", - "width": 1820, - "x": 1540, - "y": -420, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", - "width": 3360, - "x": -140, - "y": 1890, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", - "width": 70, - "x": -70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", - "width": 70, - "x": 280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", - "width": 70, - "x": 210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", - "width": 70, - "x": 140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", - "width": 70, - "x": 70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", - "width": 70, - "x": 0, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", - "width": 70, - "x": 350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", - "width": 70, - "x": -70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", - "width": 70, - "x": 0, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", - "width": 70, - "x": 70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", - "width": 70, - "x": 140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", - "width": 70, - "x": 280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", - "width": 70, - "x": 350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", - "width": 70, - "x": 350, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", - "width": 70, - "x": 280, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", - "width": 70, - "x": 210, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", - "width": 70, - "x": 140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", - "width": 70, - "x": 70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", - "width": 70, - "x": -70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", - "width": 70, - "x": 0, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", - "width": 630, - "x": -700, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", - "width": 70, - "x": -770, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", - "width": 70, - "x": -770, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", - "width": 70, - "x": -770, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", - "width": 70, - "x": -770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", - "width": 70, - "x": -770, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", - "width": 70, - "x": -770, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", - "width": 70, - "x": -630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", - "width": 70, - "x": -280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", - "width": 70, - "x": -350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", - "width": 70, - "x": -420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", - "width": 70, - "x": -490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", - "width": 70, - "x": -560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", - "width": 70, - "x": -210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", - "width": 70, - "x": -700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", - "width": 70, - "x": -770, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", - "width": 70, - "x": -770, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", - "width": 70, - "x": -770, - "y": 1260, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", - "width": 70, - "x": -140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", - "width": 70, - "x": -350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", - "width": 70, - "x": -280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", - "width": 70, - "x": -210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", - "width": 70, - "x": -140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", - "width": 70, - "x": -490, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "road", - "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", - "width": 210, - "x": -700, - "y": 1540, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "name": "road", - "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", - "width": 210, - "x": -420, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", - "width": 70, - "x": -210, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", - "width": 70, - "x": -210, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", - "width": 70, - "x": -210, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", - "width": 70, - "x": -210, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", - "width": 70, - "x": -210, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", - "width": 70, - "x": -140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", - "width": 70, - "x": -210, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", - "width": 70, - "x": -210, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", - "width": 70, - "x": -210, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", - "width": 70, - "x": -210, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", - "width": 70, - "x": -770, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", - "width": 70, - "x": -770, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", - "width": 70, - "x": -770, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", - "width": 70, - "x": -770, - "y": 2100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", - "width": 70, - "x": -770, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", - "width": 70, - "x": -770, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", - "width": 70, - "x": -770, - "y": 2310, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", - "width": 70, - "x": -490, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", - "width": 70, - "x": -490, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", - "width": 70, - "x": -420, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", - "width": 70, - "x": -490, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", - "width": 70, - "x": -490, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", - "width": 70, - "x": -490, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", - "width": 70, - "x": -490, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", - "width": 70, - "x": -490, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", - "width": 70, - "x": -490, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", - "width": 70, - "x": -490, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", - "width": 70, - "x": -490, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", - "width": 70, - "x": -490, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", - "width": 70, - "x": -770, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", - "width": 70, - "x": -490, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", - "width": 70, - "x": -490, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", - "width": 70, - "x": -490, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", - "width": 70, - "x": -1820, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", - "width": 70, - "x": -700, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", - "width": 70, - "x": -630, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", - "width": 280, - "x": -490, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", - "width": 70, - "x": -210, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", - "width": 70, - "x": -210, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", - "width": 70, - "x": -210, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", - "width": 70, - "x": -210, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", - "width": 70, - "x": -210, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", - "width": 70, - "x": -210, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", - "width": 70, - "x": -210, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", - "width": 70, - "x": -700, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", - "width": 70, - "x": -350, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", - "width": 70, - "x": -420, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", - "width": 70, - "x": -490, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", - "width": 70, - "x": -560, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", - "width": 70, - "x": -630, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", - "width": 70, - "x": -280, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", - "width": 70, - "x": -1820, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", - "width": 70, - "x": -210, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", - "width": 70, - "x": -490, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", - "width": 70, - "x": -490, - "y": 2660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", - "width": 70, - "x": -560, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", - "width": 70, - "x": -210, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", - "width": 70, - "x": -490, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "road", - "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", - "width": 210, - "x": -420, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "road", - "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", - "width": 210, - "x": -700, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", - "width": 210, - "x": -700, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", - "width": 70, - "x": -2310, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", - "width": 70, - "x": -1960, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", - "width": 70, - "x": -2030, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", - "width": 70, - "x": -2100, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", - "width": 70, - "x": -2170, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", - "width": 70, - "x": -2240, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", - "width": 70, - "x": -1890, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", - "width": 70, - "x": -2310, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", - "width": 70, - "x": -2240, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", - "width": 70, - "x": -2170, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", - "width": 70, - "x": -2100, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", - "width": 70, - "x": -2030, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", - "width": 70, - "x": -1960, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", - "width": 70, - "x": -1890, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", - "width": 70, - "x": -1890, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", - "width": 70, - "x": -1960, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", - "width": 70, - "x": -2030, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", - "width": 70, - "x": -2100, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", - "width": 70, - "x": -2170, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", - "width": 70, - "x": -2310, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", - "width": 70, - "x": -2240, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", - "width": 70, - "x": -2450, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", - "width": 70, - "x": -2520, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", - "width": 70, - "x": -2590, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", - "width": 70, - "x": -2660, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", - "width": 70, - "x": -2730, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", - "width": 70, - "x": -2380, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", - "width": 70, - "x": -2800, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", - "width": 70, - "x": -2730, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", - "width": 70, - "x": -2660, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", - "width": 70, - "x": -2590, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", - "width": 70, - "x": -2520, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", - "width": 70, - "x": -2450, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", - "width": 70, - "x": -2380, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", - "width": 70, - "x": -2380, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", - "width": 70, - "x": -2450, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", - "width": 70, - "x": -2520, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", - "width": 70, - "x": -2590, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", - "width": 70, - "x": -2660, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", - "width": 70, - "x": -2800, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", - "width": 70, - "x": -2730, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", - "width": 2730, - "x": -3430, - "y": 2520, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", - "width": 70, - "x": -3500, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", - "width": 70, - "x": -3500, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", - "width": 70, - "x": -3500, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", - "width": 70, - "x": -3500, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", - "width": 70, - "x": -3500, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", - "width": 70, - "x": -3360, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", - "width": 70, - "x": -3010, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", - "width": 70, - "x": -3080, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", - "width": 70, - "x": -3150, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", - "width": 70, - "x": -3220, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", - "width": 70, - "x": -3290, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", - "width": 70, - "x": -3430, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", - "width": 70, - "x": -3500, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", - "width": 70, - "x": -3500, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", - "width": 70, - "x": -3500, - "y": 2450, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", - "width": 70, - "x": -3080, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", - "width": 70, - "x": -3010, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", - "width": 70, - "x": -2940, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", - "width": 70, - "x": -2870, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", - "width": 70, - "x": -3220, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", - "width": 70, - "x": -2870, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", - "width": 70, - "x": -2940, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", - "width": 70, - "x": -3220, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", - "width": 70, - "x": -3150, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", - "width": 70, - "x": -3220, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", - "width": 70, - "x": -3220, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", - "width": 70, - "x": -770, - "y": 2380, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", - "width": 70, - "x": -1260, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", - "width": 70, - "x": -910, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", - "width": 70, - "x": -980, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", - "width": 70, - "x": -1050, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", - "width": 70, - "x": -1120, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", - "width": 70, - "x": -1190, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", - "width": 70, - "x": -840, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", - "width": 70, - "x": -1400, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", - "width": 70, - "x": -1470, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", - "width": 70, - "x": -1540, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", - "width": 70, - "x": -1610, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", - "width": 70, - "x": -1680, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", - "width": 70, - "x": -1330, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", - "width": 70, - "x": -1820, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", - "width": 70, - "x": -1750, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", - "width": 70, - "x": -770, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", - "width": 70, - "x": -840, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", - "width": 70, - "x": -910, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", - "width": 70, - "x": -980, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", - "width": 70, - "x": -1050, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", - "width": 70, - "x": -1190, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", - "width": 70, - "x": -1120, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", - "width": 70, - "x": -1260, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", - "width": 70, - "x": -1330, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", - "width": 70, - "x": -1400, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", - "width": 70, - "x": -1470, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", - "width": 70, - "x": -1540, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", - "width": 70, - "x": -1680, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", - "width": 70, - "x": -1610, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", - "width": 70, - "x": -1750, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", - "width": 70, - "x": -840, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", - "width": 70, - "x": -1330, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", - "width": 70, - "x": -1260, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", - "width": 70, - "x": -1190, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", - "width": 70, - "x": -1120, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", - "width": 70, - "x": -1050, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", - "width": 70, - "x": -980, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", - "width": 70, - "x": -910, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", - "width": 70, - "x": -1750, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", - "width": 70, - "x": -1680, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", - "width": 70, - "x": -1610, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", - "width": 70, - "x": -1540, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", - "width": 70, - "x": -1470, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", - "width": 70, - "x": -1400, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", - "width": 70, - "x": -770, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", - "width": 2450, - "x": -3150, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6090, - "layer": "", - "name": "road", - "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5810, - "layer": "", - "name": "road", - "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", - "width": 2450, - "x": -3220, - "y": 1260, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", - "width": 70, - "x": -2940, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", - "width": 70, - "x": -2940, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", - "width": 70, - "x": -2940, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", - "width": 70, - "x": -2940, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", - "width": 70, - "x": -2940, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", - "width": 70, - "x": -2940, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", - "width": 70, - "x": -2940, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", - "width": 70, - "x": -3500, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", - "width": 70, - "x": -3500, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", - "width": 70, - "x": -3500, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", - "width": 70, - "x": -3500, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", - "width": 70, - "x": -3500, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", - "width": 70, - "x": -3500, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", - "width": 70, - "x": -3500, - "y": 3500, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", - "width": 70, - "x": -3220, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", - "width": 70, - "x": -3220, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", - "width": 70, - "x": -3220, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", - "width": 70, - "x": -3220, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", - "width": 70, - "x": -3220, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", - "width": 70, - "x": -3220, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", - "width": 70, - "x": -3220, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", - "width": 70, - "x": -3220, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", - "width": 70, - "x": -3500, - "y": 3570, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", - "width": 2730, - "x": -2870, - "y": 3080, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", - "width": 140, - "x": -3780, - "y": 2590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "Placeholder", - "persistentUuid": "836a213c-8cdb-4941-9c4e-4bd98ce3f7a2", - "width": 0, - "x": -474, - "y": 1561, - "zOrder": 9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Niko", - "persistentUuid": "70a36631-69a6-4c00-a464-a6e16d80fb3e", - "width": 0, - "x": -108, - "y": 1519, - "zOrder": 10, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", - "width": 70, - "x": 490, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", - "width": 70, - "x": 420, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", - "width": 70, - "x": 490, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", - "width": 70, - "x": 420, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "door", - "persistentUuid": "0cb1981b-95d9-487d-aa05-ed08b983e17a", - "width": 140, - "x": 420, - "y": 780, - "zOrder": 1203, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4e812b69-5a12-4e22-ba1c-a240bebf9e91", - "width": 140, - "x": -560, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "f96e4766-b631-4e90-ab0e-4f80ce881d3c", - "width": 140, - "x": -700, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a73a07c-8c3e-410d-b7ed-654e7a743421", - "width": 70, - "x": -280, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34ec7312-1e01-466e-934d-6e6681a1bfa8", - "width": 70, - "x": -210, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", - "width": 70, - "x": -280, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", - "width": 70, - "x": -210, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun1", - "persistentUuid": "5a448040-cb9c-49d6-8597-63790fc6f3fb", - "width": 0, - "x": 98, - "y": 1194, - "zOrder": 121, - "numberProperties": [], - "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": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "roof_tops", - "persistentUuid": "7f356254-bc0d-47bb-8f49-970e4d2333ef", - "width": 140, - "x": 420, - "y": 700, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "roof_tops", - "persistentUuid": "24c3b475-9d85-487a-8528-e8c0ba748dc5", - "width": 140, - "x": 420, - "y": 840, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "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, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "02cb8fdd-466a-4a8b-ba79-590d3bf4c75d", - "width": 0, - "x": -70, - "y": 1330, - "zOrder": 108, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "3a7b864c-ab03-4d43-aefa-f7eae6251dc8", - "width": 0, - "x": -140, - "y": 1400, - "zOrder": 109, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "385a36c9-79bb-4c01-b99b-1364069755d3", - "width": 0, - "x": -70, - "y": 1400, - "zOrder": 110, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": true, - "name": "AmmoText", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun2", - "persistentUuid": "91c0c667-36c2-4c98-acb1-ff4aebfefcc9", - "width": 0, - "x": 70, - "y": 1470, - "zOrder": 112, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", - "width": 70, - "x": 770, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", - "width": 70, - "x": 840, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", - "width": 70, - "x": 770, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", - "width": 70, - "x": 840, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", - "width": 70, - "x": 770, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", - "width": 70, - "x": 840, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", - "width": 70, - "x": 770, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", - "width": 70, - "x": 840, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", - "width": 70, - "x": 770, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", - "width": 70, - "x": 840, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", - "width": 70, - "x": 770, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", - "width": 70, - "x": 840, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", - "width": 70, - "x": 770, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", - "width": 70, - "x": 770, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", - "width": 70, - "x": 840, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", - "width": 70, - "x": 770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", - "width": 70, - "x": 840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", - "width": 70, - "x": 770, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", - "width": 70, - "x": 840, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", - "width": 70, - "x": 770, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", - "width": 70, - "x": 840, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", - "width": 70, - "x": 770, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", - "width": 70, - "x": 840, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", - "width": 70, - "x": 770, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", - "width": 70, - "x": 840, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", - "width": 70, - "x": 770, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", - "width": 70, - "x": 840, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", - "width": 70, - "x": 770, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", - "width": 70, - "x": 840, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", - "width": 70, - "x": 770, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", - "width": 70, - "x": 840, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", - "width": 70, - "x": 770, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", - "width": 70, - "x": 840, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", - "width": 70, - "x": 770, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", - "width": 70, - "x": 840, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", - "width": 70, - "x": 770, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", - "width": 70, - "x": 840, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", - "width": 70, - "x": 770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", - "width": 70, - "x": 840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", - "width": 70, - "x": 770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", - "width": 70, - "x": 840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", - "width": 70, - "x": 1540, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", - "width": 70, - "x": 1610, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", - "width": 70, - "x": 1540, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", - "width": 70, - "x": 1610, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", - "width": 70, - "x": 1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", - "width": 70, - "x": 1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", - "width": 70, - "x": 1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", - "width": 70, - "x": 1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", - "width": 70, - "x": 1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", - "width": 70, - "x": 1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", - "width": 70, - "x": 1540, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", - "width": 70, - "x": 1610, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", - "width": 70, - "x": 1540, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", - "width": 70, - "x": 1610, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", - "width": 70, - "x": 1540, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", - "width": 70, - "x": 1610, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", - "width": 70, - "x": 1540, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", - "width": 70, - "x": 1610, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", - "width": 70, - "x": 1540, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", - "width": 70, - "x": 1610, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", - "width": 70, - "x": 1540, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", - "width": 70, - "x": 1610, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", - "width": 70, - "x": 1540, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", - "width": 70, - "x": 1610, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", - "width": 70, - "x": 1540, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", - "width": 70, - "x": 1610, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", - "width": 70, - "x": 1540, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", - "width": 70, - "x": 1610, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", - "width": 70, - "x": 1540, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", - "width": 70, - "x": 1610, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", - "width": 70, - "x": 1540, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", - "width": 70, - "x": 1610, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", - "width": 70, - "x": 1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", - "width": 70, - "x": 1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", - "width": 70, - "x": 1540, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", - "width": 70, - "x": 1610, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", - "width": 70, - "x": 1540, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", - "width": 70, - "x": 1610, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", - "width": 70, - "x": 1540, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", - "width": 70, - "x": 1610, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", - "width": 70, - "x": 1540, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", - "width": 70, - "x": 1610, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", - "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, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", - "width": 70, - "x": 1540, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", - "width": 70, - "x": 1610, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", - "width": 70, - "x": 1540, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", - "width": 70, - "x": 1610, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", - "width": 70, - "x": 1540, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", - "width": 70, - "x": 1610, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", - "width": 70, - "x": 1540, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", - "width": 70, - "x": 1610, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", - "width": 70, - "x": 1540, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", - "width": 70, - "x": 1610, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", - "width": 70, - "x": 1540, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", - "width": 70, - "x": 1610, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "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", - "width": 70, - "x": 1610, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", - "width": 70, - "x": 1540, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", - "width": 70, - "x": 1610, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", - "width": 70, - "x": 1540, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", - "width": 70, - "x": 1610, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", - "width": 70, - "x": 1540, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", - "width": 70, - "x": 1610, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", - "width": 70, - "x": -140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", - "width": 70, - "x": -70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", - "width": 70, - "x": -140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", - "width": 70, - "x": -70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", - "width": 70, - "x": 0, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", - "width": 70, - "x": 70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", - "width": 70, - "x": 0, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", - "width": 70, - "x": 70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", - "width": 70, - "x": 140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", - "width": 70, - "x": 210, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", - "width": 70, - "x": 140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", - "width": 70, - "x": 210, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", - "width": 70, - "x": 280, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", - "width": 70, - "x": 350, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", - "width": 70, - "x": 280, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", - "width": 70, - "x": 350, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", - "width": 70, - "x": 420, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", - "width": 70, - "x": 490, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", - "width": 70, - "x": 420, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", - "width": 70, - "x": 490, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", - "width": 70, - "x": 700, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", - "width": 70, - "x": 700, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7247f601-a750-4757-be03-95644999d829", - "width": 70, - "x": 910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", - "width": 70, - "x": 910, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", - "width": 70, - "x": 1050, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", - "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", - "width": 70, - "x": 1120, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", - "width": 70, - "x": 1190, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", - "width": 70, - "x": 1120, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", - "width": 70, - "x": 1190, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", - "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", - "width": 70, - "x": 1330, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", - "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", - "width": 70, - "x": 1330, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", - "width": 70, - "x": 1400, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc092547-6921-461e-8626-545397380833", - "width": 70, - "x": 1470, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", - "width": 70, - "x": 1400, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", - "width": 70, - "x": 1470, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", - "width": 70, - "x": 420, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", - "width": 70, - "x": 490, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", - "width": 70, - "x": 490, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", - "width": 70, - "x": 420, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", - "width": 70, - "x": 630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", - "width": 70, - "x": 700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", - "width": 70, - "x": 630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", - "width": 70, - "x": 700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", - "width": 70, - "x": 280, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", - "width": 70, - "x": 350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", - "width": 70, - "x": 280, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", - "width": 70, - "x": 350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", - "width": 70, - "x": 560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", - "width": 70, - "x": 560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", - "width": 70, - "x": -210, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", - "width": 70, - "x": -280, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", - "width": 70, - "x": -280, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", - "width": 70, - "x": -210, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", - "width": 70, - "x": 0, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", - "width": 70, - "x": 70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", - "width": 70, - "x": 0, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", - "width": 70, - "x": 70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", - "width": 70, - "x": 140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", - "width": 70, - "x": 210, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", - "width": 70, - "x": 140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", - "width": 70, - "x": 210, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", - "width": 70, - "x": -350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", - "width": 70, - "x": -140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", - "width": 70, - "x": -350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", - "width": 70, - "x": -140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", - "width": 70, - "x": -490, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", - "width": 70, - "x": -420, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", - "width": 70, - "x": -490, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", - "width": 70, - "x": -420, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", - "width": 70, - "x": -630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", - "width": 70, - "x": -560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", - "width": 70, - "x": -630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", - "width": 70, - "x": -560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", - "width": 70, - "x": -910, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", - "width": 70, - "x": -70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", - "width": 70, - "x": -910, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", - "width": 70, - "x": -70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", - "width": 70, - "x": -770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", - "width": 70, - "x": -700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", - "width": 70, - "x": -770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", - "width": 70, - "x": -700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", - "width": 70, - "x": 520, - "y": 1080, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "031e03a8-1d5b-4920-ad17-82c2d35ee61f", - "width": 70, - "x": 590, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", - "width": 70, - "x": 660, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", - "width": 70, - "x": 730, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d2042623-f888-4680-8254-5a0e2dab8fe8", - "width": 70, - "x": 730, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", - "width": 70, - "x": 730, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", - "width": 70, - "x": 730, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", - "width": 70, - "x": 730, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", - "width": 70, - "x": 730, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", - "width": 70, - "x": 730, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", - "width": 70, - "x": 730, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", - "width": 70, - "x": 730, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", - "width": 70, - "x": 730, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", - "width": 70, - "x": 730, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", - "width": 70, - "x": 590, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", - "width": 70, - "x": 660, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", - "width": 70, - "x": 450, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", - "width": 70, - "x": 520, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", - "width": 70, - "x": 310, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", - "width": 70, - "x": 380, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", - "width": 70, - "x": 170, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", - "width": 70, - "x": 240, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", - "width": 70, - "x": 30, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1b764fba-aede-457b-b97d-a07d8208e35d", - "width": 70, - "x": 30, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", - "width": 70, - "x": 30, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", - "width": 70, - "x": 30, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", - "width": 70, - "x": 30, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", - "width": 70, - "x": 30, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", - "width": 70, - "x": 30, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", - "width": 70, - "x": 30, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", - "width": 70, - "x": 30, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", - "width": 70, - "x": 30, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", - "width": 70, - "x": 100, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", - "width": 70, - "x": 30, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", - "width": 70, - "x": 170, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", - "width": 70, - "x": 100, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", - "width": 70, - "x": 310, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", - "width": 70, - "x": 240, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", - "width": 70, - "x": 380, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", - "width": 70, - "x": 30, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", - "width": 70, - "x": -250, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", - "width": 70, - "x": -180, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", - "width": 70, - "x": -390, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", - "width": 70, - "x": -320, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", - "width": 70, - "x": -530, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", - "width": 70, - "x": -460, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", - "width": 70, - "x": -670, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", - "width": 70, - "x": -600, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", - "width": 70, - "x": -740, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", - "width": 70, - "x": -950, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", - "width": 70, - "x": -880, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", - "width": 70, - "x": -810, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", - "width": 70, - "x": -950, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", - "width": 70, - "x": -950, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", - "width": 70, - "x": -950, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", - "width": 70, - "x": -950, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", - "width": 70, - "x": -950, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", - "width": 70, - "x": -950, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d89a329b-4f89-4d08-9d95-cb405dbb4a94", - "width": 70, - "x": -950, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", - "width": 70, - "x": -950, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", - "width": 70, - "x": -950, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", - "width": 70, - "x": -950, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", - "width": 70, - "x": -880, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", - "width": 70, - "x": -810, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", - "width": 70, - "x": -740, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", - "width": 70, - "x": -670, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", - "width": 70, - "x": -530, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", - "width": 70, - "x": -460, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", - "width": 70, - "x": -600, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", - "width": 70, - "x": 30, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "64abcb55-b4ee-4457-ac06-b4efa02191e1", - "width": 70, - "x": -40, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", - "width": 70, - "x": -180, - "y": 1080, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", - "width": 70, - "x": -320, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", - "width": 70, - "x": -980, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", - "width": 70, - "x": -980, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", - "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", - "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", - "width": 70, - "x": -1050, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", - "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", - "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", - "width": 70, - "x": -980, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", - "width": 70, - "x": -840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", - "width": 70, - "x": -840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", - "width": 70, - "x": -910, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", - "width": 70, - "x": -840, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", - "width": 70, - "x": -840, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", - "width": 70, - "x": -910, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", - "width": 70, - "x": -910, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", - "width": 70, - "x": -910, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", - "width": 70, - "x": -840, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", - "width": 70, - "x": -840, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", - "width": 70, - "x": -910, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", - "width": 70, - "x": -910, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", - "width": 70, - "x": -840, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", - "width": 70, - "x": -840, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", - "width": 70, - "x": -910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", - "width": 70, - "x": -840, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", - "width": 70, - "x": -840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", - "width": 70, - "x": -910, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", - "width": 70, - "x": -910, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", - "width": 70, - "x": -910, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", - "width": 70, - "x": -840, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", - "width": 70, - "x": -840, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", - "width": 70, - "x": -910, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", - "width": 70, - "x": -910, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", - "width": 70, - "x": -840, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", - "width": 70, - "x": -840, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", - "width": 70, - "x": -910, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", - "width": 70, - "x": -840, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", - "width": 70, - "x": -140, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", - "width": 70, - "x": -70, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", - "width": 70, - "x": -70, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", - "width": 70, - "x": -140, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", - "width": 70, - "x": -140, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", - "width": 70, - "x": -70, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", - "width": 70, - "x": -70, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", - "width": 70, - "x": -140, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", - "width": 70, - "x": -140, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", - "width": 70, - "x": -70, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", - "width": 70, - "x": -140, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", - "width": 70, - "x": -70, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", - "width": 70, - "x": -70, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", - "width": 70, - "x": -140, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", - "width": 70, - "x": -140, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", - "width": 70, - "x": -70, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", - "width": 70, - "x": -70, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", - "width": 70, - "x": -140, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", - "width": 70, - "x": -140, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", - "width": 70, - "x": -70, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", - "width": 70, - "x": -140, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", - "width": 70, - "x": -70, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", - "width": 70, - "x": -70, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", - "width": 70, - "x": -140, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", - "width": 70, - "x": -140, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", - "width": 70, - "x": -70, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", - "width": 70, - "x": -70, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", - "width": 70, - "x": -140, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", - "width": 70, - "x": -140, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", - "width": 70, - "x": -70, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", - "width": 70, - "x": -2030, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", - "width": 70, - "x": -1960, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", - "width": 70, - "x": -2030, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", - "width": 70, - "x": -1960, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", - "width": 70, - "x": -1890, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", - "width": 70, - "x": -1820, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", - "width": 70, - "x": -1890, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", - "width": 70, - "x": -1820, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", - "width": 70, - "x": -1750, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", - "width": 70, - "x": -1680, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", - "width": 70, - "x": -1750, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", - "width": 70, - "x": -1680, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", - "width": 70, - "x": -1610, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", - "width": 70, - "x": -1540, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", - "width": 70, - "x": -1610, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", - "width": 70, - "x": -1540, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", - "width": 70, - "x": -1470, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", - "width": 70, - "x": -1400, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", - "width": 70, - "x": -1470, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", - "width": 70, - "x": -1400, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", - "width": 70, - "x": -1330, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", - "width": 70, - "x": -1260, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", - "width": 70, - "x": -1330, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", - "width": 70, - "x": -1260, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", - "width": 70, - "x": -1190, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", - "width": 70, - "x": -1120, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", - "width": 70, - "x": -1190, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", - "width": 70, - "x": -1120, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", - "width": 70, - "x": -1050, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", - "width": 70, - "x": -980, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", - "width": 70, - "x": -1050, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", - "width": 70, - "x": -980, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", - "width": 70, - "x": -3150, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", - "width": 70, - "x": -3080, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", - "width": 70, - "x": -3150, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", - "width": 70, - "x": -3080, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", - "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": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", - "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": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", - "width": 70, - "x": -2730, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", - "width": 70, - "x": -2660, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", - "width": 70, - "x": -2730, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", - "width": 70, - "x": -2660, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", - "width": 70, - "x": -2590, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", - "width": 70, - "x": -2520, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", - "width": 70, - "x": -2590, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", - "width": 70, - "x": -2520, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", - "width": 70, - "x": -2450, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", - "width": 70, - "x": -2380, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", - "width": 70, - "x": -2450, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", - "width": 70, - "x": -2380, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", - "width": 70, - "x": -2310, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", - "width": 70, - "x": -2240, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", - "width": 70, - "x": -2310, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", - "width": 70, - "x": -2240, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", - "width": 70, - "x": -2170, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", - "width": 70, - "x": -2100, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", - "width": 70, - "x": -2170, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", - "width": 70, - "x": -2100, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", - "width": 70, - "x": -1120, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", - "width": 70, - "x": -1050, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", - "width": 70, - "x": -1120, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", - "width": 70, - "x": -1050, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", - "width": 70, - "x": -980, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", - "width": 70, - "x": -910, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", - "width": 70, - "x": -980, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", - "width": 70, - "x": -910, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", - "width": 70, - "x": -840, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", - "width": 70, - "x": -770, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", - "width": 70, - "x": -840, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", - "width": 70, - "x": -770, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", - "width": 70, - "x": -700, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", - "width": 70, - "x": -630, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", - "width": 70, - "x": -700, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", - "width": 70, - "x": -630, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", - "width": 70, - "x": -560, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", - "width": 70, - "x": -490, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", - "width": 70, - "x": -560, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", - "width": 70, - "x": -490, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", - "width": 70, - "x": -420, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", - "width": 70, - "x": -350, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", - "width": 70, - "x": -420, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", - "width": 70, - "x": -350, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", - "width": 70, - "x": -280, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", - "width": 70, - "x": -210, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", - "width": 70, - "x": -280, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", - "width": 70, - "x": -210, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", - "width": 70, - "x": -140, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", - "width": 70, - "x": -70, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", - "width": 70, - "x": -140, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", - "width": 70, - "x": -70, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", - "width": 70, - "x": -2240, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", - "width": 70, - "x": -2170, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", - "width": 70, - "x": -2240, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", - "width": 70, - "x": -2170, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", - "width": 70, - "x": -2100, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", - "width": 70, - "x": -2030, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", - "width": 70, - "x": -2100, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", - "width": 70, - "x": -2030, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", - "width": 70, - "x": -1960, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", - "width": 70, - "x": -1890, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", - "width": 70, - "x": -1960, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", - "width": 70, - "x": -1890, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", - "width": 70, - "x": -1820, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", - "width": 70, - "x": -1750, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", - "width": 70, - "x": -1820, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", - "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": "52547319-be3b-4d16-85d0-1719cbd0927e", - "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": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", - "width": 70, - "x": -1610, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", - "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": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", - "width": 70, - "x": -1610, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", - "width": 70, - "x": -1540, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", - "width": 70, - "x": -1470, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", - "width": 70, - "x": -1540, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", - "width": 70, - "x": -1470, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", - "width": 70, - "x": -1400, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", - "width": 70, - "x": -1330, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", - "width": 70, - "x": -1400, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", - "width": 70, - "x": -1330, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", - "width": 70, - "x": -1260, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", - "width": 70, - "x": -1190, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", - "width": 70, - "x": -1260, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", - "width": 70, - "x": -1190, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "929b5ac9-59ae-4827-99ca-52e86d399794", - "width": 70, - "x": -390, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", - "width": 70, - "x": -110, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ef1154bf-9b02-4dad-87b4-54011b4328b9", - "width": 70, - "x": -110, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", - "width": 70, - "x": -40, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 17, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "00b4388f-447f-43e5-908f-481cd5f6e925", - "width": 140, - "x": 140, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "b09cda94-3c28-44fc-b95a-d49943c138be", - "width": 140, - "x": 140, - "y": 910, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 20, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "e474178b-dd5c-437c-8551-5b2d4c63958c", - "width": 140, - "x": 140, - "y": 490, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": 140, - "y": 630, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "f455fae4-a981-41cb-9f42-ebc230edd898", - "width": 140, - "x": 140, - "y": 770, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 20, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "b41e9fe5-bdc2-4ec2-b615-593db7d74866", - "width": 140, - "x": -840, - "y": 490, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -840, - "y": 630, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 17, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "3d963181-fcfb-4fb0-a48c-7f0536db618d", - "width": 140, - "x": -840, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -840, - "y": 910, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -840, - "y": 770, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", - "width": 70, - "x": -950, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", - "width": 70, - "x": -950, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", - "width": 70, - "x": -950, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", - "width": 70, - "x": -950, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", - "width": 70, - "x": -1440, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", - "width": 70, - "x": -1090, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", - "width": 70, - "x": -1160, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", - "width": 70, - "x": -1020, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", - "width": 70, - "x": -1510, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", - "width": 70, - "x": -1370, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", - "width": 70, - "x": -1300, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", - "width": 70, - "x": -1230, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "40f45722-0753-458c-97d8-86b90735d89f", - "width": 70, - "x": -1580, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", - "width": 70, - "x": -1720, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", - "width": 70, - "x": -1720, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", - "width": 70, - "x": -1720, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", - "width": 70, - "x": -1720, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", - "width": 70, - "x": -1720, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", - "width": 70, - "x": -1720, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", - "width": 70, - "x": -1720, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", - "width": 70, - "x": -1720, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", - "width": 70, - "x": -1720, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", - "width": 70, - "x": -1720, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", - "width": 70, - "x": -950, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", - "width": 70, - "x": -950, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", - "width": 70, - "x": -950, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4d3cddb9-5467-47e2-a16e-fe86d69d91df", - "width": 70, - "x": -950, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e321332b-34d6-4b1d-8058-a92a72a5c1b5", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", - "width": 70, - "x": -950, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", - "width": 70, - "x": -950, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fb8f15e2-d0cf-412c-8203-a91eabfd6067", - "width": 70, - "x": -950, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", - "width": 70, - "x": -1720, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", - "width": 70, - "x": -1720, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", - "width": 70, - "x": -1720, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", - "width": 70, - "x": -1720, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", - "width": 70, - "x": -1720, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", - "width": 70, - "x": -1720, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", - "width": 70, - "x": -950, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", - "width": 70, - "x": -1720, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", - "width": 70, - "x": -1720, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", - "width": 70, - "x": -1720, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", - "width": 70, - "x": -1720, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", - "width": 70, - "x": -1370, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", - "width": 70, - "x": -1440, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", - "width": 70, - "x": -1510, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", - "width": 70, - "x": -1580, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", - "width": 70, - "x": -1090, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", - "width": 70, - "x": -1160, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", - "width": 70, - "x": -1230, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", - "width": 70, - "x": -1300, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "32845a05-f60b-48ef-8aec-11c3cc2bb51b", - "width": 70, - "x": -1020, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", - "width": 70, - "x": -950, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", - "width": 70, - "x": -950, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1610, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", - "width": 70, - "x": -1720, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1650, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, - "x": -1440, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1090, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1160, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1020, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", - "width": 70, - "x": -1510, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", - "width": 70, - "x": -1370, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", - "width": 70, - "x": -1300, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", - "width": 70, - "x": -1230, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", - "width": 70, - "x": -1580, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ae961f02-4c9c-430e-a470-f9ee519b233d", - "width": 70, - "x": -1650, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", - "width": 70, - "x": -1650, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", - "width": 70, - "x": -950, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", - "width": 70, - "x": -950, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1610, - "y": 1330, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1610, - "y": 1610, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1610, - "y": 1820, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", - "width": 140, - "x": -1610, - "y": 2170, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", - "width": 70, - "x": -2730, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", - "width": 70, - "x": -2660, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", - "width": 70, - "x": -2730, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", - "width": 70, - "x": -2660, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", - "width": 70, - "x": -2590, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", - "width": 70, - "x": -2520, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", - "width": 70, - "x": -2590, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", - "width": 70, - "x": -2520, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", - "width": 70, - "x": -2450, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", - "width": 70, - "x": -2380, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", - "width": 70, - "x": -2450, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", - "width": 70, - "x": -2380, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", - "width": 70, - "x": -2310, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", - "width": 70, - "x": -2310, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", - "width": 70, - "x": -3500, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", - "width": 70, - "x": -3430, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", - "width": 70, - "x": -3500, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", - "width": 70, - "x": -3430, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", - "width": 70, - "x": -3360, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", - "width": 70, - "x": -3290, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", - "width": 70, - "x": -3360, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", - "width": 70, - "x": -3290, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", - "width": 70, - "x": -3220, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", - "width": 70, - "x": -2870, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", - "width": 70, - "x": -3220, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", - "width": 70, - "x": -2870, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", - "width": 70, - "x": -2800, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", - "width": 70, - "x": -2800, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", - "width": 70, - "x": -3570, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", - "width": 70, - "x": -3640, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", - "width": 70, - "x": -3640, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", - "width": 70, - "x": -3570, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", - "width": 70, - "x": -3640, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", - "width": 70, - "x": -3570, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", - "width": 70, - "x": -3570, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", - "width": 70, - "x": -3640, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", - "width": 70, - "x": -3640, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", - "width": 70, - "x": -3570, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", - "width": 70, - "x": -3570, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", - "width": 70, - "x": -3640, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", - "width": 70, - "x": -3640, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", - "width": 70, - "x": -3570, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", - "width": 70, - "x": -3640, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", - "width": 70, - "x": -3570, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", - "width": 70, - "x": -3640, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", - "width": 70, - "x": -3570, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", - "width": 70, - "x": -3570, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", - "width": 70, - "x": -3640, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", - "width": 70, - "x": -3640, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", - "width": 70, - "x": -3570, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", - "width": 70, - "x": -3640, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", - "width": 70, - "x": -3570, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", - "width": 70, - "x": -3570, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", - "width": 70, - "x": -3640, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", - "width": 70, - "x": -3640, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", - "width": 70, - "x": -3570, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", - "width": 70, - "x": -3570, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", - "width": 70, - "x": -3640, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", - "width": 70, - "x": -3640, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", - "width": 70, - "x": -3570, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", - "width": 70, - "x": -3640, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", - "width": 70, - "x": -3570, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", - "width": 70, - "x": -3640, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", - "width": 70, - "x": -3570, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", - "width": 70, - "x": -2870, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", - "width": 70, - "x": -2800, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", - "width": 70, - "x": -2800, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", - "width": 70, - "x": -2870, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", - "width": 70, - "x": -2870, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", - "width": 70, - "x": -2800, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", - "width": 70, - "x": -2800, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", - "width": 70, - "x": -2870, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", - "width": 70, - "x": -2870, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", - "width": 70, - "x": -2800, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "Water", - "persistentUuid": "c3282000-6105-43c0-a011-b7fc30815131", - "width": 6020, - "x": -1260, - "y": -1960, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", - "width": 70, - "x": -950, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", - "width": 70, - "x": -950, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", - "width": 70, - "x": -950, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", - "width": 70, - "x": -950, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", - "width": 70, - "x": -950, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", - "width": 70, - "x": -950, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", - "width": 70, - "x": -950, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", - "width": 70, - "x": 590, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "034e0cd9-4656-418e-81c2-a2fdc94df16a", - "width": 70, - "x": 660, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", - "width": 70, - "x": 450, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", - "width": 70, - "x": 520, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", - "width": 70, - "x": 310, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", - "width": 70, - "x": 380, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", - "width": 70, - "x": 170, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", - "width": 70, - "x": 240, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", - "width": 70, - "x": 100, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", - "width": 70, - "x": 730, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", - "width": 70, - "x": -390, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", - "width": 70, - "x": -530, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", - "width": 70, - "x": -460, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", - "width": 70, - "x": -670, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", - "width": 70, - "x": -600, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", - "width": 70, - "x": -810, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", - "width": 70, - "x": -740, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", - "width": 70, - "x": -880, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", - "width": 70, - "x": -40, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", - "width": 70, - "x": -180, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", - "width": 70, - "x": -110, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", - "width": 70, - "x": -320, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", - "width": 70, - "x": -250, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", - "width": 70, - "x": 30, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", - "width": 70, - "x": 730, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", - "width": 70, - "x": 730, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", - "width": 70, - "x": 730, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d8cddc26-6c6a-4b87-92c4-bec873b8d00b", - "width": 70, - "x": 590, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", - "width": 70, - "x": 660, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", - "width": 70, - "x": 450, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", - "width": 70, - "x": 520, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", - "width": 70, - "x": 310, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", - "width": 70, - "x": 380, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", - "width": 70, - "x": 170, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", - "width": 70, - "x": 240, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", - "width": 70, - "x": 100, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": -40, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", - "width": 70, - "x": 30, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", - "width": 70, - "x": -180, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", - "width": 70, - "x": -110, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", - "width": 70, - "x": -320, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", - "width": 70, - "x": -250, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -460, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -390, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", - "width": 70, - "x": -530, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", - "width": 70, - "x": -670, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", - "width": 70, - "x": -600, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", - "width": 70, - "x": -810, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", - "width": 70, - "x": -740, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", - "width": 70, - "x": -880, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", - "width": 70, - "x": -950, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", - "width": 70, - "x": -2000, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", - "width": 70, - "x": -1930, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", - "width": 70, - "x": -1930, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", - "width": 70, - "x": -1930, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", - "width": 70, - "x": -1930, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "be610e1c-2b75-4726-b9ab-17c13e04b0dd", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", - "width": 70, - "x": -1930, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", - "width": 70, - "x": -1930, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", - "width": 70, - "x": -1930, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", - "width": 70, - "x": -1930, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", - "width": 70, - "x": -1930, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", - "width": 70, - "x": -1930, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", - "width": 70, - "x": -1930, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", - "width": 70, - "x": -1930, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", - "width": 70, - "x": -1930, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", - "width": 70, - "x": -1930, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", - "width": 70, - "x": -1930, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", - "width": 70, - "x": -1930, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", - "width": 70, - "x": -1930, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", - "width": 70, - "x": -1930, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", - "width": 140, - "x": 560, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "87df3078-0b84-4b8b-877a-f5d1693b797c", - "width": 140, - "x": 420, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "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": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "a99a4ec2-138d-4e94-9c27-c4e417bb0bd9", - "width": 0, - "x": 280, - "y": 560, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 0, - "x": -1470, - "y": 1190, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 0, - "x": -1470, - "y": 1820, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 0, - "x": -490, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 0, - "x": -2520, - "y": 1540, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4393ace7-fdcd-4410-9789-21f0bd2e30f4", - "width": 140, - "x": -2380, - "y": 1890, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "5c6123ae-d57b-4022-a5c7-db0ee6e014b9", - "width": 140, - "x": -2380, - "y": 1893, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 0, - "x": -2520, - "y": 910, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", - "width": 70, - "x": -2000, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", - "width": 70, - "x": -2000, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fa51ad7d-bd0d-4b5c-91aa-f33f5566aced", - "width": 70, - "x": -2000, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun3", - "persistentUuid": "649553fa-c15a-47bc-82bc-2b7b8687672b", - "width": 0, - "x": 70, - "y": 1540, - "zOrder": 121, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire_collision", - "persistentUuid": "ded64a81-59c3-4fd0-8f25-30f0b69e5472", - "width": 0, - "x": -247, - "y": 1324, - "zOrder": 122, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", - "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", - "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", - "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", - "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", - "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", - "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", - "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", - "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", - "width": 70, - "x": -2420, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", - "width": 70, - "x": -2070, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", - "width": 70, - "x": -2140, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cfab0be8-ecd5-4758-9f16-050ea518895c", - "width": 70, - "x": -2000, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", - "width": 70, - "x": -2350, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", - "width": 70, - "x": -2280, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", - "width": 70, - "x": -2210, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "90004105-56ce-45f1-960c-cce2a732f1c4", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", - "width": 70, - "x": -2700, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", - "width": 70, - "x": -2700, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", - "width": 70, - "x": -2700, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", - "width": 70, - "x": -2700, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", - "width": 70, - "x": -2700, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", - "width": 70, - "x": -2700, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2569da75-8539-4c2f-ae0e-e5da1e001ca7", - "width": 70, - "x": -2700, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", - "width": 70, - "x": -2700, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", - "width": 70, - "x": -2700, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", - "width": 70, - "x": -2700, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", - "width": 70, - "x": -2700, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", - "width": 70, - "x": -2700, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", - "width": 70, - "x": -2700, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", - "width": 70, - "x": -2700, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", - "width": 70, - "x": -2700, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", - "width": 70, - "x": -2490, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", - "width": 70, - "x": -2560, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", - "width": 70, - "x": -2630, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", - "width": 70, - "x": -2700, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", - "width": 70, - "x": -2700, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", - "width": 70, - "x": -2700, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", - "width": 70, - "x": -2700, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", - "width": 70, - "x": -2700, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", - "width": 70, - "x": -2700, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", - "width": 70, - "x": -2700, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", - "width": 70, - "x": -2700, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", - "width": 70, - "x": -2700, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", - "width": 70, - "x": -2700, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", - "width": 70, - "x": -2700, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", - "width": 70, - "x": -2700, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", - "width": 70, - "x": -2700, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", - "width": 70, - "x": -2700, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "424a433b-aaae-4851-b063-663843dd15f7", - "width": 70, - "x": -2630, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", - "width": 70, - "x": -2560, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", - "width": 70, - "x": -2490, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", - "width": 70, - "x": -2420, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", - "width": 70, - "x": -2350, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", - "width": 70, - "x": -2280, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", - "width": 70, - "x": -2210, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", - "width": 70, - "x": -2140, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", - "width": 70, - "x": -2070, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", - "width": 70, - "x": -2000, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", - "width": 70, - "x": -2630, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", - "width": 70, - "x": -2070, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", - "width": 70, - "x": -2560, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56147eaa-0af2-42c3-9f6c-2e7ff844db96", - "width": 70, - "x": -2490, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", - "width": 70, - "x": -2140, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", - "width": 70, - "x": -2210, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", - "width": 70, - "x": -2420, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", - "width": 70, - "x": -2140, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", - "width": 70, - "x": -2140, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8534af35-48af-4896-b449-cf4a1622a887", - "width": 70, - "x": -2140, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45c44adb-2ea9-4bb3-941e-fd0b32625f05", - "width": 70, - "x": -2070, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", - "width": 70, - "x": -2140, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "51695d53-ce7d-4dbb-a0b9-37b1f8210917", - "width": 70, - "x": -2070, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "name": "road", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", - "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", - "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": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", - "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": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", - "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": "298aee83-aa29-41c1-b284-36dd965c4c5a", - "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": "cc90e793-2e56-4022-969b-7465ce8c17b3", - "width": 70, - "x": -3010, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", - "width": 70, - "x": -3010, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", - "width": 70, - "x": -3010, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", - "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": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", - "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": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", - "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": "a3880452-b974-4033-9d23-48e5b46c5439", - "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": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", - "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": "3efc7c00-3405-4012-afaa-121ad6c60f20", - "width": 70, - "x": -3010, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", - "width": 70, - "x": -3010, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", - "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": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", - "width": 70, - "x": -3010, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", - "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": "ca10a7df-d8f6-4c40-b039-429f191bd075", - "width": 70, - "x": -3010, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", - "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": "4d250a55-e245-4459-8107-5d3986e0046d", - "width": 70, - "x": -3010, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", - "width": 70, - "x": -3010, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", - "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", - "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", - "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", - "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", - "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", - "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", - "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", - "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", - "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", - "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", - "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", - "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", - "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", - "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", - "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", - "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", - "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", - "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", - "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", - "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", - "width": 70, - "x": -3010, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", - "width": 70, - "x": -3010, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", - "width": 70, - "x": -3010, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", - "width": 70, - "x": -3010, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", - "width": 70, - "x": -3010, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", - "width": 70, - "x": -3010, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", - "width": 70, - "x": -3010, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", - "width": 70, - "x": -3010, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", - "width": 70, - "x": -3010, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", - "width": 70, - "x": -3010, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", - "width": 70, - "x": -3010, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", - "width": 70, - "x": -2730, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", - "width": 70, - "x": -2730, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", - "width": 70, - "x": -2730, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", - "width": 70, - "x": -2730, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", - "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", - "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", - "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", - "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", - "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", - "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", - "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", - "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", - "width": 70, - "x": -2380, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", - "width": 70, - "x": -2310, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", - "width": 70, - "x": -2240, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", - "width": 70, - "x": -2590, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", - "width": 70, - "x": -2450, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", - "width": 70, - "x": -2380, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", - "width": 70, - "x": -2310, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", - "width": 70, - "x": -2800, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", - "width": 70, - "x": -2730, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", - "width": 70, - "x": -2660, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", - "width": 70, - "x": -2590, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", - "width": 70, - "x": -2520, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", - "width": 70, - "x": -2870, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", - "width": 70, - "x": -2940, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", - "width": 70, - "x": -1750, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", - "width": 70, - "x": -1680, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", - "width": 70, - "x": -1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", - "width": 70, - "x": -2100, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", - "width": 70, - "x": -2030, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", - "width": 70, - "x": -1960, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", - "width": 70, - "x": -1890, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", - "width": 70, - "x": -1820, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", - "width": 70, - "x": -2170, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", - "width": 70, - "x": -2240, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", - "width": 70, - "x": -1050, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", - "width": 70, - "x": -980, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", - "width": 70, - "x": -1400, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", - "width": 70, - "x": -1330, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", - "width": 70, - "x": -1260, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", - "width": 70, - "x": -1190, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", - "width": 70, - "x": -1120, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", - "width": 70, - "x": -1470, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", - "width": 70, - "x": -1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", - "width": 70, - "x": -980, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", - "width": 70, - "x": -980, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", - "width": 70, - "x": -980, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", - "width": 70, - "x": -980, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", - "width": 70, - "x": -980, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", - "width": 70, - "x": -980, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", - "width": 70, - "x": -980, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", - "width": 70, - "x": -980, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", - "width": 70, - "x": -980, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", - "width": 70, - "x": -980, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", - "width": 70, - "x": -980, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", - "width": 70, - "x": -1190, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", - "width": 70, - "x": -1120, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", - "width": 70, - "x": -1050, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", - "width": 70, - "x": -1400, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", - "width": 70, - "x": -1330, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", - "width": 70, - "x": -1260, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", - "width": 70, - "x": -1680, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", - "width": 70, - "x": -1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", - "width": 70, - "x": -1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", - "width": 70, - "x": -1470, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "ground_1", - "persistentUuid": "fa1a4a5e-9b00-407e-b0dd-21ab489e513b", - "width": 1680, - "x": -910, - "y": -214, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", - "width": 0, - "x": -840, - "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": 490, - "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": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", - "width": 140, - "x": -910, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "aacbefe4-00b0-4e91-a270-f33a3ce872b0", - "width": 140, - "x": -770, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", - "width": 70, - "x": -2380, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", - "width": 70, - "x": -2450, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", - "width": 70, - "x": -2170, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", - "width": 70, - "x": -2170, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", - "width": 70, - "x": -2240, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", - "width": 70, - "x": -2310, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", - "width": 70, - "x": -2380, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", - "width": 70, - "x": -2450, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", - "width": 70, - "x": -2100, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", - "width": 70, - "x": -2240, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", - "width": 70, - "x": -2310, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", - "width": 70, - "x": -2170, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", - "width": 70, - "x": -2240, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", - "width": 70, - "x": -2310, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", - "width": 70, - "x": -2380, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", - "width": 70, - "x": -2450, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", - "width": 70, - "x": -2450, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", - "width": 70, - "x": -2380, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", - "width": 70, - "x": -2310, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", - "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", - "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2299d684-6db2-4d15-afd0-8d4aaab9d8a2", - "width": 70, - "x": -950, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", - "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", - "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", - "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", - "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", - "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", - "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", - "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", - "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", - "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", - "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", - "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", - "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", - "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", - "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", - "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", - "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", - "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", - "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", - "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", - "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", - "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", - "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", - "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", - "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", - "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", - "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", - "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", - "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", - "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", - "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", - "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", - "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", - "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", - "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", - "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", - "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", - "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", - "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", - "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", - "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", - "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", - "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", - "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", - "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", - "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", - "width": 70, - "x": -1260, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", - "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", - "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "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": "road", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", - "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", - "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", - "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", - "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", - "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", - "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", - "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", - "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", - "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", - "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", - "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", - "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", - "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", - "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", - "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", - "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", - "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", - "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", - "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", - "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", - "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", - "width": 70, - "x": -2940, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", - "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", - "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", - "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", - "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", - "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", - "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", - "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", - "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", - "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", - "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", - "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", - "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", - "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", - "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", - "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", - "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", - "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", - "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", - "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", - "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", - "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", - "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", - "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", - "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", - "width": 70, - "x": -2800, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", - "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", - "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", - "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", - "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", - "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", - "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", - "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", - "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", - "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", - "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", - "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", - "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", - "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", - "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", - "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", - "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", - "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", - "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", - "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", - "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", - "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", - "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", - "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", - "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", - "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", - "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", - "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", - "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", - "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", - "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", - "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", - "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", - "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", - "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", - "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", - "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", - "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", - "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", - "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", - "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", - "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", - "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", - "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", - "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", - "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", - "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", - "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", - "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", - "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", - "width": 70, - "x": -1960, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", - "width": 70, - "x": -1960, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", - "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", - "width": 70, - "x": -1960, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", - "width": 70, - "x": -1960, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", - "width": 70, - "x": -2000, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1930, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", - "width": 70, - "x": -980, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", - "width": 70, - "x": -2100, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", - "width": 70, - "x": -2030, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", - "width": 70, - "x": -2030, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", - "width": 70, - "x": -2030, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", - "width": 70, - "x": -2940, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", - "width": 70, - "x": -2800, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", - "width": 70, - "x": -1120, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", - "width": 70, - "x": -560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", - "width": 70, - "x": -490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", - "width": 70, - "x": -420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", - "width": 70, - "x": -910, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", - "width": 70, - "x": -840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", - "width": 70, - "x": -770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", - "width": 70, - "x": -700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", - "width": 70, - "x": -630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", - "width": 70, - "x": -980, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", - "width": 70, - "x": -1050, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", - "width": 70, - "x": 140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", - "width": 70, - "x": 210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", - "width": 70, - "x": 280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", - "width": 70, - "x": -210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", - "width": 70, - "x": -140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", - "width": 70, - "x": -70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", - "width": 70, - "x": 0, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", - "width": 70, - "x": 70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", - "width": 70, - "x": -280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", - "width": 70, - "x": -350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", - "width": 70, - "x": 840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", - "width": 70, - "x": 490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", - "width": 70, - "x": 560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", - "width": 70, - "x": 630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", - "width": 70, - "x": 700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", - "width": 70, - "x": 770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", - "width": 70, - "x": 420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", - "width": 70, - "x": 350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", - "width": 70, - "x": -1120, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", - "width": 70, - "x": -560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", - "width": 70, - "x": -490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", - "width": 70, - "x": -420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": true, - "name": "sand", - "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", - "width": 70, - "x": -910, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", - "width": 70, - "x": -840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", - "width": 70, - "x": -770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", - "width": 70, - "x": -700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", - "width": 70, - "x": -630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", - "width": 70, - "x": -980, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", - "width": 70, - "x": -1050, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", - "width": 70, - "x": 140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", - "width": 70, - "x": 210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", - "width": 70, - "x": 280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", - "width": 70, - "x": -210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", - "width": 70, - "x": -140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", - "width": 70, - "x": -70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", - "width": 70, - "x": 0, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", - "width": 70, - "x": 70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", - "width": 70, - "x": -280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", - "width": 70, - "x": -350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", - "width": 70, - "x": 840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", - "width": 70, - "x": 490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", - "width": 70, - "x": 560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", - "width": 70, - "x": 630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", - "width": 70, - "x": 700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", - "width": 70, - "x": 770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", - "width": 70, - "x": 420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", - "width": 70, - "x": 350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", - "width": 70, - "x": -1120, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", - "width": 70, - "x": -1050, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", - "width": 70, - "x": -1050, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", - "width": 70, - "x": -1050, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", - "width": 70, - "x": -1050, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", - "width": 70, - "x": -980, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", - "width": 70, - "x": -980, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", - "width": 70, - "x": -980, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", - "width": 70, - "x": -980, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", - "width": 70, - "x": -1120, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", - "width": 70, - "x": -1120, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", - "width": 70, - "x": -1120, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", - "width": 70, - "x": -2590, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", - "width": 70, - "x": -2520, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", - "width": 70, - "x": -2450, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", - "width": 70, - "x": -2940, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", - "width": 70, - "x": -2870, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", - "width": 70, - "x": -2800, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", - "width": 70, - "x": -2730, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", - "width": 70, - "x": -2660, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", - "width": 70, - "x": -3010, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", - "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": "1b1ba355-0033-479e-8410-4423a7ecd076", - "width": 70, - "x": -1890, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", - "width": 70, - "x": -1820, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", - "width": 70, - "x": -1750, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", - "width": 70, - "x": -2240, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", - "width": 70, - "x": -2170, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", - "width": 70, - "x": -2100, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", - "width": 70, - "x": -2030, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", - "width": 70, - "x": -1960, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", - "width": 70, - "x": -2310, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", - "width": 70, - "x": -2380, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", - "width": 70, - "x": -1190, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", - "width": 70, - "x": -1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", - "width": 70, - "x": -1470, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", - "width": 70, - "x": -1400, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", - "width": 70, - "x": -1330, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", - "width": 70, - "x": -1260, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", - "width": 70, - "x": -1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", - "width": 70, - "x": -1680, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", - "width": 70, - "x": -2590, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", - "width": 70, - "x": -2520, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", - "width": 70, - "x": -2450, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", - "width": 70, - "x": -2940, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", - "width": 70, - "x": -2870, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", - "width": 70, - "x": -2800, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", - "width": 70, - "x": -2730, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", - "width": 70, - "x": -2660, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", - "width": 70, - "x": -3010, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", - "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": "45636fe2-fce7-4718-b188-2f8eff773926", - "width": 70, - "x": -1890, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", - "width": 70, - "x": -1820, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", - "width": 70, - "x": -1750, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", - "width": 70, - "x": -2240, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", - "width": 70, - "x": -2170, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", - "width": 70, - "x": -2100, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", - "width": 70, - "x": -2030, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", - "width": 70, - "x": -1960, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", - "width": 70, - "x": -2310, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", - "width": 70, - "x": -2380, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", - "width": 70, - "x": -1190, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", - "width": 70, - "x": -1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", - "width": 70, - "x": -1470, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", - "width": 70, - "x": -1400, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", - "width": 70, - "x": -1330, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", - "width": 70, - "x": -1260, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", - "width": 70, - "x": -1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", - "width": 70, - "x": -1680, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", - "width": 70, - "x": -3080, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", - "width": 70, - "x": -3080, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", - "width": 70, - "x": -3080, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", - "width": 70, - "x": -3080, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", - "width": 70, - "x": -3080, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", - "width": 70, - "x": -3080, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", - "width": 70, - "x": -3080, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", - "width": 70, - "x": -3080, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", - "width": 70, - "x": -3080, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", - "width": 70, - "x": -3080, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", - "width": 70, - "x": -3080, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", - "width": 70, - "x": -3080, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", - "width": 70, - "x": -3080, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", - "width": 70, - "x": -3080, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", - "width": 70, - "x": -3080, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", - "width": 70, - "x": -3080, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", - "width": 70, - "x": -3080, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", - "width": 70, - "x": -3080, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", - "width": 70, - "x": -3080, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", - "width": 70, - "x": -3080, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", - "width": 70, - "x": -3080, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", - "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": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", - "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": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", - "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": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", - "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": "6cb0e950-9a8c-496d-bd67-774e75c04418", - "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": "6d9dab9c-63ce-4922-9e02-ff6c19188008", - "width": 70, - "x": -3080, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", - "width": 70, - "x": -3080, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", - "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": "62a4a047-24c1-487f-87bd-df3881885551", - "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": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", - "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": "bd831170-7ea4-422e-b57f-c6feaa014ba7", - "width": 70, - "x": -3080, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", - "width": 70, - "x": 1470, - "y": -210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", - "width": 70, - "x": 1470, - "y": -140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", - "width": 70, - "x": 910, - "y": -210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", - "width": 70, - "x": 910, - "y": -140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", - "width": 70, - "x": 1190, - "y": -210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", - "width": 70, - "x": 1190, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire", - "persistentUuid": "28a74c98-359a-4215-ab03-e9e261d13ee6", - "width": 0, - "x": 350, - "y": 1400, - "zOrder": 1239, - "numberProperties": [], - "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", - "width": 70, - "x": 1540, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", - "width": 70, - "x": 1610, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", - "width": 70, - "x": 1540, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", - "width": 70, - "x": 1610, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "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": "gun4", - "persistentUuid": "e3d8ea57-8d05-4c0e-9db6-8b316d24b503", - "width": 0, - "x": 154, - "y": 1289, - "zOrder": 1240, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "0ac23ea7-fd4d-4558-8625-f1846c824a5b", - "width": 0, - "x": -140, - "y": 1330, - "zOrder": 1241, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "crossair", - "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": "GUI", - "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", - "width": 70, - "x": -1820, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", - "width": 70, - "x": -1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", - "width": 70, - "x": -1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", - "width": 70, - "x": -1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", - "width": 70, - "x": -1820, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", - "width": 70, - "x": -1820, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", - "width": 70, - "x": -1820, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", - "width": 70, - "x": -1820, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", - "width": 70, - "x": -1820, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", - "width": 70, - "x": -1820, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", - "width": 70, - "x": -1820, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", - "width": 70, - "x": -1820, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", - "width": 70, - "x": -1820, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", - "width": 70, - "x": -1820, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", - "width": 70, - "x": -1820, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", - "width": 70, - "x": -1820, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", - "width": 70, - "x": -1820, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", - "width": 70, - "x": -1890, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", - "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": "14a6d93c-17cc-4c5f-8681-b463151e8b89", - "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": "32892402-1801-48b8-aeb9-8712ed98ce38", - "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": "31150f68-fa1a-4aad-b3bd-63963073e0b8", - "width": 70, - "x": -1890, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", - "width": 70, - "x": -1890, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", - "width": 70, - "x": -1890, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", - "width": 70, - "x": -1890, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", - "width": 70, - "x": -1890, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", - "width": 70, - "x": -1890, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", - "width": 70, - "x": -1890, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", - "width": 70, - "x": -1890, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", - "width": 70, - "x": -1890, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", - "width": 70, - "x": -1890, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", - "width": 70, - "x": -1890, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", - "width": 70, - "x": -1890, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", - "width": 70, - "x": -1890, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", - "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": "a248f1d0-1ff3-4bef-acba-dec57fc60107", - "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": "0452f3da-94cc-46a1-aa88-a54962bec1c3", - "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": "f1c0d321-6422-45bf-a32c-37156a882fe9", - "width": 70, - "x": -1750, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", - "width": 70, - "x": -1750, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", - "width": 70, - "x": -1750, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", - "width": 70, - "x": -1750, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", - "width": 70, - "x": -1750, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", - "width": 70, - "x": -1750, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", - "width": 70, - "x": -1750, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", - "width": 70, - "x": -1750, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", - "width": 70, - "x": -1750, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", - "width": 70, - "x": -1750, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", - "width": 70, - "x": -1750, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", - "width": 70, - "x": -1750, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", - "width": 70, - "x": -1750, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", - "width": 70, - "x": -1750, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", - "width": 70, - "x": -1890, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", - "width": 70, - "x": -1750, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", - "width": 70, - "x": -1820, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", - "width": 70, - "x": -1750, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", - "width": 70, - "x": -1820, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", - "width": 70, - "x": -1890, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", - "width": 70, - "x": -770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", - "width": 70, - "x": -840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", - "width": 70, - "x": -910, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", - "width": 70, - "x": -560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", - "width": 70, - "x": -630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", - "width": 70, - "x": -700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", - "width": 70, - "x": 140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", - "width": 70, - "x": -420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", - "width": 70, - "x": -490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", - "width": 70, - "x": 630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", - "width": 70, - "x": -280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", - "width": 70, - "x": -350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", - "width": 70, - "x": 560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", - "width": 70, - "x": 700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", - "width": 70, - "x": 210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", - "width": 70, - "x": 350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", - "width": 70, - "x": 420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", - "width": 70, - "x": -70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", - "width": 70, - "x": -140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", - "width": 70, - "x": -210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", - "width": 70, - "x": 0, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", - "width": 70, - "x": 280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", - "width": 70, - "x": 70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun5", - "persistentUuid": "20766923-9466-4ff2-a793-d64a75da31f7", - "width": 0, - "x": 70, - "y": 1610, - "zOrder": 1246, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "4ef41487-1e41-403b-a2f4-f786280a493f", - "width": 0, - "x": -140, - "y": 1470, - "zOrder": 1247, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "mele1", - "persistentUuid": "457e4317-ece4-45d3-bf96-708ab93d5b4d", - "width": 0, - "x": 210, - "y": 1610, - "zOrder": 1248, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "energy", - "persistentUuid": "34696f8a-c031-467a-bffd-889118b6d90f", - "width": 0, - "x": -70, - "y": 1470, - "zOrder": 1249, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "Wheel_info", - "persistentUuid": "539a6f1b-b450-4262-8663-6b83b88a20f9", - "width": 0, - "x": 0, - "y": 560, - "zOrder": 1250, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "roof_tops", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 490, - "layer": "", - "name": "roof_tops", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "deco", - "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", - "width": 210, - "x": 1750, - "y": -210, - "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": -210, - "zOrder": 1252, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", - "width": 70, - "x": 2030, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", - "width": 70, - "x": 2100, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", - "width": 70, - "x": 2170, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", - "width": 70, - "x": 1680, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", - "width": 70, - "x": 1750, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", - "width": 70, - "x": 1820, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", - "width": 70, - "x": 1890, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", - "width": 70, - "x": 1960, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", - "width": 70, - "x": 2730, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", - "width": 70, - "x": 2800, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", - "width": 70, - "x": 2870, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", - "width": 70, - "x": 2380, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", - "width": 70, - "x": 2450, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", - "width": 70, - "x": 2520, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", - "width": 70, - "x": 2590, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", - "width": 70, - "x": 2660, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", - "width": 70, - "x": 2310, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", - "width": 70, - "x": 2240, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", - "width": 70, - "x": 3010, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", - "width": 70, - "x": 2940, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", - "width": 70, - "x": 2030, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", - "width": 70, - "x": 2100, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", - "width": 70, - "x": 2170, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", - "width": 70, - "x": 1680, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", - "width": 70, - "x": 1750, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", - "width": 70, - "x": 1820, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", - "width": 70, - "x": 1890, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", - "width": 70, - "x": 1960, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", - "width": 70, - "x": 2730, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", - "width": 70, - "x": 2800, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", - "width": 70, - "x": 2870, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", - "width": 70, - "x": 2380, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", - "width": 70, - "x": 2450, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", - "width": 70, - "x": 2520, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", - "width": 70, - "x": 2590, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", - "width": 70, - "x": 2660, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", - "width": 70, - "x": 2310, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", - "width": 70, - "x": 2240, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", - "width": 70, - "x": 3010, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", - "width": 70, - "x": 2940, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", - "width": 0, - "x": 3010, - "y": -294, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", - "width": 70, - "x": 2060, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", - "width": 70, - "x": 1990, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", - "width": 70, - "x": 1920, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", - "width": 70, - "x": 1850, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", - "width": 70, - "x": 1780, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", - "width": 70, - "x": 1710, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", - "width": 70, - "x": 3040, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", - "width": 70, - "x": 3040, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", - "width": 70, - "x": 3040, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", - "width": 70, - "x": 3040, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", - "width": 70, - "x": 3040, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", - "width": 70, - "x": 2970, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", - "width": 70, - "x": 2900, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", - "width": 70, - "x": 2830, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", - "width": 70, - "x": 2760, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", - "width": 70, - "x": 2690, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", - "width": 70, - "x": 2620, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", - "width": 70, - "x": 2550, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", - "width": 70, - "x": 2480, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "19e3a51d-cd4f-4972-a731-740e67a4f346", - "width": 70, - "x": 2410, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", - "width": 70, - "x": 2340, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", - "width": 70, - "x": 2270, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", - "width": 70, - "x": 2200, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", - "width": 70, - "x": 2130, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", - "width": 70, - "x": 3040, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", - "width": 70, - "x": 3040, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", - "width": 70, - "x": 3040, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", - "width": 70, - "x": 3040, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", - "width": 70, - "x": 3040, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", - "width": 70, - "x": 3040, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", - "width": 70, - "x": 3040, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", - "width": 70, - "x": 3040, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", - "width": 70, - "x": 2970, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", - "width": 70, - "x": 3040, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", - "width": 70, - "x": 3040, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", - "width": 70, - "x": 3040, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", - "width": 70, - "x": 2410, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", - "width": 70, - "x": 2550, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", - "width": 70, - "x": 2480, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", - "width": 70, - "x": 2620, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", - "width": 70, - "x": 2690, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", - "width": 70, - "x": 2760, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", - "width": 70, - "x": 2830, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8e2ba7b4-f596-476a-b807-7d65aa6abe8f", - "width": 70, - "x": 2900, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", - "width": 70, - "x": 2060, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", - "width": 70, - "x": 2130, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", - "width": 70, - "x": 2200, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", - "width": 70, - "x": 2270, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", - "width": 70, - "x": 2340, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", - "width": 70, - "x": 1990, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", - "width": 70, - "x": 1640, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", - "width": 70, - "x": 1850, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", - "width": 70, - "x": 1920, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", - "width": 70, - "x": 1710, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", - "width": 70, - "x": 1780, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", - "width": 70, - "x": 1640, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", - "width": 70, - "x": 1640, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", - "width": 70, - "x": 1640, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", - "width": 70, - "x": 1640, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", - "width": 70, - "x": 1640, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", - "width": 70, - "x": 1640, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "918c82da-54ca-4050-86d4-559f0e59f70e", - "width": 70, - "x": 1640, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", - "width": 70, - "x": 1640, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", - "width": 70, - "x": 1640, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1640, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", - "width": 70, - "x": 1640, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2900, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2410, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2550, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2480, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2620, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2690, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2760, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ab9cc8fd-48a5-40d0-a745-2437631ec85f", - "width": 70, - "x": 2830, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2060, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2130, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2200, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2270, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", - "width": 70, - "x": 2340, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", - "width": 70, - "x": 1990, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", - "width": 70, - "x": 1850, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1920, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1710, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1780, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2900, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2900, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2900, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2900, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", - "width": 70, - "x": 2900, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2900, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2900, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2900, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", - "width": 70, - "x": 2900, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", - "width": 70, - "x": 2900, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", - "width": 70, - "x": 2900, - "y": 870, - "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": 2900, - "y": 800, - "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": 2900, - "y": 1080, - "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": 1640, - "y": 1710, - "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": 1640, - "y": 1570, - "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": 1640, - "y": 1500, - "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": 1640, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f220f293-81e3-4013-b477-29fdca91c690", - "width": 70, - "x": 1640, - "y": 1640, - "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": 1640, - "y": 940, - "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": 1640, - "y": 870, - "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": 1640, - "y": 800, - "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": 1640, - "y": 1010, - "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": 1640, - "y": 1290, - "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": 1640, - "y": 1080, - "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": 1820, - "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": 1820, - "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": 1820, - "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": 1640, - "y": 1360, - "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": 1640, - "y": 590, - "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": 3010, - "y": 70, - "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": 3010, - "y": 280, - "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": 3010, - "y": 490, - "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": 3010, - "y": 700, - "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": 3010, - "y": -140, - "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": 2800, - "y": -140, - "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": 2520, - "y": -140, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "name": "roof_tops", - "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", - "width": 420, - "x": 1120, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 770, - "layer": "", - "locked": true, - "name": "roof_tops", - "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", - "width": 770, - "x": 140, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "name": "roof_tops", - "persistentUuid": "db30fcc8-72c4-416e-a867-1bb4e3623c66", - "width": 420, - "x": 1120, - "y": 2660, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", - "width": 70, - "x": 730, - "y": 3180, - "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": 870, - "y": 3180, - "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": 800, - "y": 3180, - "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": 940, - "y": 3180, - "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": 1010, - "y": 3180, - "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": 1080, - "y": 3180, - "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": 1150, - "y": 3180, - "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": 380, - "y": 3180, - "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": 450, - "y": 3180, - "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": 520, - "y": 3180, - "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": 590, - "y": 3180, - "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": 660, - "y": 3180, - "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": 310, - "y": 3180, - "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": 170, - "y": 3180, - "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": 240, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b60b773a-27b2-4e6c-93b4-8a299aa56ac3", - "width": 70, - "x": 30, - "y": 3180, - "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": 100, - "y": 3180, - "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": -40, - "y": 3180, - "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": 1640, - "y": 2410, - "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": 1640, - "y": 2340, - "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": 1640, - "y": 2270, - "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": 1640, - "y": 2200, - "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": 1640, - "y": 2690, - "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": 1640, - "y": 2620, - "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": 1640, - "y": 2550, - "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": 1640, - "y": 2480, - "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": 1640, - "y": 2970, - "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": 1640, - "y": 2900, - "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": 1640, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a0f87fbc-9e0d-494d-abac-ffbaf5ea47cf", - "width": 70, - "x": 1640, - "y": 2760, - "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": 1640, - "y": 3180, - "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": 1640, - "y": 3110, - "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": 1640, - "y": 3040, - "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": 1220, - "y": 3180, - "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": 1290, - "y": 3180, - "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": 1360, - "y": 3180, - "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": 1430, - "y": 3180, - "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": 1500, - "y": 3180, - "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": 1570, - "y": 3180, - "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": -40, - "y": 2480, - "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": -40, - "y": 2410, - "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": -40, - "y": 2340, - "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": -40, - "y": 2270, - "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": -40, - "y": 2760, - "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": -40, - "y": 2690, - "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": -40, - "y": 2620, - "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": -40, - "y": 2550, - "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": -40, - "y": 3040, - "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": -40, - "y": 2970, - "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": -40, - "y": 2900, - "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": -40, - "y": 2830, - "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": -40, - "y": 3110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e64e9f3e-0a39-4928-8f3f-3b067001ce70", - "width": 70, - "x": -40, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "db0ef6fc-93fd-4a1a-b54f-1fd0d4bf6350", - "width": 70, - "x": -40, - "y": 2130, - "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": -40, - "y": 2200, - "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": -40, - "y": 1990, - "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": 590, - "y": 1990, - "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": 730, - "y": 1990, - "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": 660, - "y": 1990, - "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": 800, - "y": 1990, - "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": 870, - "y": 1990, - "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": 940, - "y": 1990, - "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": 1010, - "y": 1990, - "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": 240, - "y": 1990, - "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": 310, - "y": 1990, - "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": 380, - "y": 1990, - "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": 170, - "y": 1990, - "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": 30, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "25eb6718-695c-4f16-982d-2b5638c5fa20", - "width": 70, - "x": 100, - "y": 1990, - "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": 1080, - "y": 1990, - "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": 1640, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ec0c55d6-9094-4adc-aa22-8b3ac0296bf3", - "width": 70, - "x": 1640, - "y": 2060, - "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": 1640, - "y": 1990, - "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": 1430, - "y": 1990, - "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": 1500, - "y": 1990, - "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": 1570, - "y": 1990, - "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": 1290, - "y": 1990, - "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": 1360, - "y": 1990, - "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": 1220, - "y": 1990, - "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": 1150, - "y": 1990, - "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": 70, - "y": 3150, - "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": 1610, - "y": 2100, - "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": 1330, - "y": 2100, - "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": 70, - "y": 2100, - "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": 2410, - "y": 2830, - "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": 2550, - "y": 2830, - "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": 2480, - "y": 2830, - "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": 2620, - "y": 2830, - "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": 2060, - "y": 2830, - "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": 2130, - "y": 2830, - "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": 2200, - "y": 2830, - "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": 2270, - "y": 2830, - "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": 2340, - "y": 2830, - "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": 1990, - "y": 2830, - "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": 1850, - "y": 2830, - "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": 1920, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ff742666-d22c-4909-9900-fbb47748bf59", - "width": 70, - "x": 1710, - "y": 2830, - "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": 1780, - "y": 2830, - "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": 2900, - "y": 2830, - "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": 2690, - "y": 2830, - "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": 2760, - "y": 2830, - "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": 2830, - "y": 2830, - "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": 2900, - "y": 2200, - "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": 2900, - "y": 2130, - "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": 2900, - "y": 2060, - "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": 2900, - "y": 1990, - "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": 2900, - "y": 2480, - "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": 2900, - "y": 2410, - "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": 2900, - "y": 2340, - "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": 2900, - "y": 2270, - "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": 2900, - "y": 1850, - "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": 2900, - "y": 1780, - "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": 2900, - "y": 1920, - "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": 2900, - "y": 2690, - "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": 2900, - "y": 2620, - "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": 2900, - "y": 2550, - "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": 2900, - "y": 2760, - "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": 2900, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", - "width": 70, - "x": 1640, - "y": 2830, - "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": false, - "height": 0, - "layer": "", - "name": "green_leaves_particle", - "persistentUuid": "cba4acd9-0250-47fe-8582-da0034598875", - "width": 0, - "x": 271, - "y": 1480, - "zOrder": 1253, - "numberProperties": [], - "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": "", - "name": "grass_tiled", - "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", - "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", - "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": 1610, - "layer": "", - "name": "Water", - "persistentUuid": "777c92fb-60f3-46a5-b9bb-94a4e4811763", - "width": 1330, - "x": 3430, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "Water", - "persistentUuid": "ab5883e7-91fe-423b-9e50-60e6923316c1", - "width": 1400, - "x": 3290, - "y": 1190, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4200, - "layer": "", - "name": "Water", - "persistentUuid": "6a9983d1-76fc-4cb3-8ac0-c0c55d2833a5", - "width": 2730, - "x": 2030, - "y": 3220, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3990, - "layer": "", - "name": "Water", - "persistentUuid": "2871a858-baae-43a3-9f57-27b797501a60", - "width": 2170, - "x": -2520, - "y": 3430, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3850, - "layer": "", - "name": "Water", - "persistentUuid": "f7208c4c-e8bf-47d8-9910-220c999149e9", - "width": 2380, - "x": -350, - "y": 3570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "name": "Water", - "persistentUuid": "be0a92ab-4beb-42b4-84b5-9557e8dc9cd5", - "width": 1960, - "x": -3290, - "y": -2030, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4130, - "layer": "", - "name": "Water", - "persistentUuid": "4671ab70-670c-42bf-a96e-fd76783e6279", - "width": 2800, - "x": -6090, - "y": -2030, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5320, - "layer": "", - "name": "Water", - "persistentUuid": "41b960e3-8961-4054-b07e-278bac1450c4", - "width": 6090, - "x": -9940, - "y": 2100, - "zOrder": 1, - "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, - "height": 4970, - "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, - "height": 4970, - "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": "", - "locked": true, - "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": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "97e272ae-a2bc-4290-9264-9fcf06b3c12f", - "width": 0, - "x": -3234, - "y": 7350, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9380, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "1fc8f346-14e4-4799-899b-b2e4f9af21c7", - "width": 10710, - "x": -5950, - "y": 7490, - "zOrder": -11, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "name": "Water", - "persistentUuid": "930d8410-02ba-4025-85d7-b947827d83e6", - "width": 280, - "x": -2800, - "y": 3710, - "zOrder": -22, - "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": 70, - "layer": "", - "name": "concrete_1", - "persistentUuid": "dceff044-76d2-4e49-b8cc-3d79a6836608", - "width": 140, - "x": -2870, - "y": 7490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "concrete_1", - "persistentUuid": "690a7446-1bd7-4c30-b056-1a676743cda6", - "width": 140, - "x": -3640, - "y": 7490, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", - "width": 70, - "x": 630, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", - "width": 70, - "x": 420, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", - "width": 70, - "x": 490, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", - "width": 70, - "x": 350, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", - "width": 70, - "x": 210, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", - "width": 70, - "x": 280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", - "width": 70, - "x": 70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", - "width": 70, - "x": 140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", - "width": 70, - "x": 0, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", - "width": 70, - "x": -140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", - "width": 70, - "x": -70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", - "width": 70, - "x": -280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "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, - "layer": "", - "name": "sand", - "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", - "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": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", - "width": 70, - "x": 1820, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", - "width": 70, - "x": 1890, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", - "width": 70, - "x": 1750, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", - "width": 70, - "x": 1960, - "y": 3290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", - "width": 70, - "x": 1960, - "y": 3220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", - "width": 70, - "x": 2870, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", - "width": 70, - "x": 2660, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", - "width": 70, - "x": 2730, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", - "width": 70, - "x": 2590, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", - "width": 70, - "x": 2450, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", - "width": 70, - "x": 2520, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", - "width": 70, - "x": 2310, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", - "width": 70, - "x": 2380, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", - "width": 70, - "x": 2240, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", - "width": 70, - "x": 2100, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", - "width": 70, - "x": 2170, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", - "width": 70, - "x": 3010, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", - "width": 70, - "x": 3080, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", - "width": 70, - "x": 2940, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", - "width": 70, - "x": 3150, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", - "width": 70, - "x": -2590, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", - "width": 70, - "x": -2590, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", - "width": 70, - "x": -2590, - "y": 3570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", - "width": 70, - "x": -2590, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", - "width": 70, - "x": -2800, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", - "width": 70, - "x": -2730, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", - "width": 70, - "x": -2660, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", - "width": 70, - "x": -3640, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "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, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", - "width": 70, - "x": -3780, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", - "width": 70, - "x": -3710, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ae4a1b7-5728-491b-8a87-ac9741a0515a", - "width": 70, - "x": -2940, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "67bb2cf8-6e00-4539-b915-864b39972ba9", - "width": 7420, - "x": -2870, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "2380b077-57f4-4f85-985b-edece1ea5d09", - "width": 1820, - "x": -5320, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e75a96fe-c4dd-420a-be33-6b503223b2ef", - "width": 70, - "x": -3500, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "3104eeec-a4c3-448f-add6-251f0c5858c5", - "width": 1890, - "x": -5320, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "46f37cf6-fd7d-4434-9fc7-8ac582c42a6b", - "width": 3920, - "x": -2940, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "name": "road", - "persistentUuid": "29173b15-90b2-4d61-bf6c-80c32d0f3eaa", - "width": 140, - "x": -7420, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "name": "road", - "persistentUuid": "8f0de4f6-45ed-458e-bc0b-209ec07e68db", - "width": 140, - "x": 770, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6090, - "layer": "", - "name": "road", - "persistentUuid": "2ff3ae88-16fe-468d-99d8-3343a193dbdc", - "width": 140, - "x": 980, - "y": 8680, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "52e632c6-255d-40f8-b90a-0ea0d2cbe1b1", - "width": 2940, - "x": 1120, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "296f35ce-6afe-4db7-9398-fdce09d1fe09", - "width": 3850, - "x": -5250, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "be9e6e61-81cc-425b-a14b-a19081240566", - "width": 6090, - "x": -5320, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "8a41b0b9-bc9c-4551-b2a6-c748043cb90b", - "width": 70, - "x": 700, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "e7610508-a853-43be-9e83-f168419cfcb9", - "width": 2940, - "x": 1120, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2100, - "layer": "", - "name": "road_1", - "persistentUuid": "82ff216b-c6a0-406a-990f-a6ee484f7c85", - "width": 70, - "x": 1120, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "a4ffc1cc-732c-471b-88e2-9deb3be90edf", - "width": 840, - "x": 1190, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6160, - "layer": "", - "name": "road", - "persistentUuid": "0e7df6b1-716a-472e-9487-2294cc068011", - "width": 210, - "x": 4340, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 8610, - "layer": "", - "name": "road_1", - "persistentUuid": "047d664a-1c16-4ca5-828b-59ae125048a0", - "width": 70, - "x": 4550, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "name": "road_2", - "persistentUuid": "2a464e87-5cb6-4293-8130-482f91745d02", - "width": 70, - "x": 4270, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "name": "road_2", - "persistentUuid": "afcad52b-f352-427a-9357-62d7752769d4", - "width": 70, - "x": 910, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "153db9ef-9a20-4501-af18-dfd7337edfd6", - "width": 1820, - "x": -5180, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "ead64980-c236-420d-b2c4-73595e8b37fa", - "width": 3010, - "x": 1120, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "adaebfab-b04b-44ea-ad3a-63ae13e64b6e", - "width": 70, - "x": 3990, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c960ff4-fed9-419a-bfe4-0e46469118b5", - "width": 70, - "x": 700, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9590, - "layer": "", - "name": "road", - "persistentUuid": "46cb2037-8f61-4673-871a-f646bcc59ecb", - "width": 140, - "x": -7630, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "7e2739db-536e-4e71-9c8d-d3f76cf6c36b", - "width": 1400, - "x": -7630, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e34a5275-807d-40a2-8108-667b48a77acb", - "width": 70, - "x": -7280, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "007a5d0d-63c9-4f19-aa3e-ba3387ceea23", - "width": 70, - "x": 1120, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed0a3532-5cf1-4776-aa79-b56546e1cdef", - "width": 70, - "x": -7700, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9590, - "layer": "", - "name": "road_1", - "persistentUuid": "5d89cdca-ffa7-4468-9531-b306c027e6ff", - "width": 70, - "x": -7700, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road_1", - "persistentUuid": "4e19c4aa-9566-4499-89d6-b23e7b8ce722", - "width": 70, - "x": -7280, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3220, - "layer": "", - "name": "road_2", - "persistentUuid": "f6ad51a5-1b06-4ee1-b461-891bbfc1454d", - "width": 70, - "x": -7490, - "y": 9030, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "93cd8ef0-6e6b-4d30-a7a4-9e210592fcb6", - "width": 70, - "x": 4550, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "83165ee2-5905-42d0-a63b-b9966526dfe5", - "width": 3500, - "x": -2800, - "y": 14490, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "c54ca547-68cd-4c7c-8db3-4eb49c7577aa", - "width": 2450, - "x": -5250, - "y": 14490, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8b3d430f-ccd7-4d1c-8399-f8c97307e98f", - "width": 2450, - "x": -5320, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "ac6c917d-9bba-4d83-84d6-d2b86856aa5b", - "width": 3780, - "x": -2870, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "9cb0f226-d27f-4b7e-998d-bd207094bb6a", - "width": 3150, - "x": 1120, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "29fdd567-6dc7-43c3-9bfa-7e1ba1ab8d7b", - "width": 6720, - "x": -5530, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "a91c4f5c-57aa-4161-ac94-2f73a621c483", - "width": 3080, - "x": 1190, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "d1d7d09e-72cb-4c4c-bdea-172583b1d343", - "width": 6160, - "x": -5390, - "y": 14770, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "e959f30b-71c0-4644-92aa-694b83d363e1", - "width": 3010, - "x": 1120, - "y": 14770, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "name": "road", - "persistentUuid": "827ec0cd-b0cd-4f31-a26c-cd0166714059", - "width": 210, - "x": 4060, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2100, - "layer": "", - "name": "road_1", - "persistentUuid": "68c6036b-e787-43fa-8d61-79e6e226efdf", - "width": 70, - "x": 3990, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "1449602d-96c0-4124-825d-f6bfa6c191b7", - "width": 2240, - "x": -5250, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "e9060a1d-d68e-459d-a9fc-8b6b6fecca50", - "width": 3430, - "x": -2660, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "33945b31-4119-47ac-bdaa-3fc3f34ec9a2", - "width": 2240, - "x": -5250, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "ba81dd70-f1c9-4094-be41-a754ea2a923e", - "width": 2450, - "x": -5320, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "e546c7a9-4135-4cc3-86c7-632ddcaac81c", - "width": 4060, - "x": -2870, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "18eca9d3-3b94-4afb-9a17-601073c25fe1", - "width": 2870, - "x": 1190, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "5cacac2c-da0a-4ada-8a77-98763b7fe240", - "width": 4550, - "x": -5530, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "abb88313-6f21-4aa9-b984-2a722383803e", - "width": 1610, - "x": 4550, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "e3b4b2f9-36ed-40ba-ba1b-daa9952d4f4c", - "width": 4270, - "x": -5390, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "d4eda0ec-b789-405f-8166-d7ec193c05d0", - "width": 2870, - "x": 1260, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "d47f8d1c-4b5c-42ae-848f-19829f16ac91", - "width": 3990, - "x": -5250, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "name": "road", - "persistentUuid": "91195a8d-4ca9-45be-a6d4-dbf4bf106236", - "width": 140, - "x": -7420, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "bfe0b229-2a1b-469e-b3ed-5f09ea4bad3a", - "width": 70, - "x": -7280, - "y": 16240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "1a29fa75-42d6-44b2-9893-71d54bf7dabc", - "width": 210, - "x": -5810, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "name": "road", - "persistentUuid": "31970ae6-07b5-489b-a6c9-f9b654dcd3b1", - "width": 210, - "x": 4340, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "road_1", - "persistentUuid": "601beb61-b0df-428d-8f07-c0669e476453", - "width": 70, - "x": 3990, - "y": 15120, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "name": "road", - "persistentUuid": "81ce6c90-922a-4e12-85b4-75fd668fd244", - "width": 210, - "x": 4060, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "road_2", - "persistentUuid": "97729062-1168-4c53-80be-89d5f982ed4a", - "width": 70, - "x": -7490, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "name": "road_2", - "persistentUuid": "df39b127-2111-486a-a976-c776e4472d02", - "width": 70, - "x": 4270, - "y": 14980, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "bbefd8c1-7744-4a22-b43d-9869822dd05b", - "width": 280, - "x": 4060, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "96f4bf5d-113b-418e-8710-151dd40ae057", - "width": 70, - "x": 4270, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e22f68a3-6d4d-43b4-bc81-d001cab8e90e", - "width": 70, - "x": 4130, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "65105850-5341-494c-849d-ae4f17d346d0", - "width": 70, - "x": 4270, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e16b210d-d923-4958-9063-d2a8b56b116f", - "width": 70, - "x": 4200, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5423ad58-5031-4059-b3b6-f9c6a2a24d54", - "width": 70, - "x": 4270, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "da1b6e08-bbe2-47a7-a1e0-5efd0aca7db8", - "width": 70, - "x": 3990, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "849cfea2-60c9-41eb-95a8-04bbcd3e20a0", - "width": 70, - "x": 4270, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f6896e28-669f-4af7-960f-7bddfd361a0c", - "width": 70, - "x": 4270, - "y": 14630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7cc882d8-14f0-422c-bffd-4500d0976ee2", - "width": 70, - "x": 4130, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6fcf0794-282f-4787-a92e-9c06aa19d51b", - "width": 70, - "x": 4270, - "y": 14910, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8bf111d3-2c2a-4255-aa30-617ba7915e85", - "width": 210, - "x": 4340, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "69c50967-524a-480b-8aaf-e6844217fd34", - "width": 70, - "x": 4270, - "y": 14700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "45412ee4-f048-4f75-a9a9-35f408a74821", - "width": 70, - "x": 4200, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "70bb404a-08de-4f23-81f0-cfc8d4b6a947", - "width": 70, - "x": 4270, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7fe8b531-364c-4c93-a347-2179f87999ef", - "width": 70, - "x": 3990, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e70f8ba3-3bee-45fd-b805-d22639749c16", - "width": 70, - "x": -7490, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fc412fc1-713a-46fc-921e-e9dbeba0130e", - "width": 70, - "x": -7490, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d302fd61-dcf5-4780-bbe1-9a54952df965", - "width": 70, - "x": -7350, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c8a578db-804d-4030-8c35-8f4547e351fe", - "width": 70, - "x": -7490, - "y": 12320, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c83caa8d-85b0-4bd4-aa2e-ed34549a572d", - "width": 70, - "x": -7420, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ef1cfe8c-5712-4167-b748-6ab0217681d5", - "width": 70, - "x": -7280, - "y": 12600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cc4ad029-c7b8-4164-b768-5c6287ca828f", - "width": 70, - "x": -3220, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1120, - "layer": "", - "name": "road_2", - "persistentUuid": "767d41d7-c20a-4c47-9949-4e00964d7848", - "width": 70, - "x": -3220, - "y": 7630, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "67957b72-fd61-44de-aa62-d67232533551", - "width": 70, - "x": -3220, - "y": 8750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12b5afeb-3d18-4a9d-b563-89c786cc2010", - "width": 70, - "x": -3220, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c3f8db55-3cfe-47f4-9283-84b839f5d1f3", - "width": 70, - "x": -3150, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "391daa98-de16-4639-b2fb-a00a0530ab1e", - "width": 70, - "x": -3290, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c3c9b16c-eba5-497a-b8ad-e2ad3a59b26d", - "width": 210, - "x": -3430, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c433c412-b0cf-4bc2-8180-0a31d6a25922", - "width": 210, - "x": -3150, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ddc68276-6960-4133-8a10-3512c17aef75", - "width": 70, - "x": -3360, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "4f9f2a09-54ae-4130-a357-da64ea97ccf3", - "width": 3780, - "x": -3010, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0409eda0-e636-48ce-9175-fe9c214beb19", - "width": 70, - "x": -3080, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bfd040d1-e5ad-4c74-a625-10c4280eaf4e", - "width": 70, - "x": 910, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dc715674-f026-4cdb-b038-f664080f5160", - "width": 70, - "x": 770, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dc89e4f2-892e-43bc-997d-8915e7ea1d6c", - "width": 70, - "x": 1050, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72dfa6d3-6534-4945-99f6-28aae13cbf09", - "width": 70, - "x": 910, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4be3f354-caa7-4314-af14-77120ba17bc0", - "width": 70, - "x": 840, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9d52d07b-28fc-4a90-8c76-ab77fb54df3e", - "width": 70, - "x": 910, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "03553d6d-cd67-486e-9a83-e8956b4aa109", - "width": 70, - "x": -7490, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "07a33c5e-d7ec-4bcf-a8bb-f778b7f26409", - "width": 840, - "x": -7280, - "y": 8820, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "873a2ee5-e32c-4883-b722-2bca53e502a0", - "width": 70, - "x": -7350, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1d653b5b-1acd-478f-89b7-4700742b2905", - "width": 70, - "x": -7490, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "d8578ebf-bf51-4207-8f8c-856074ac598f", - "width": 1260, - "x": -7490, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "445fb956-bc5c-41f5-ba5a-4c599f4345ed", - "width": 70, - "x": -7420, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0389df86-4560-40d0-86b9-f73c794aaa85", - "width": 70, - "x": -7490, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94aea0a6-cb69-494e-a3bd-9f8139418721", - "width": 70, - "x": -7700, - "y": 18270, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ddb63da5-6c15-4a6c-917d-8c8a96c3c84f", - "width": 70, - "x": 4270, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9461844a-4154-4f9b-987c-dee92042291e", - "width": 70, - "x": 3990, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "84ee5db8-c7e5-4c28-800c-6b9390fe218d", - "width": 70, - "x": 4270, - "y": 17430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a05631c1-3a83-4ca3-a4ba-335cf911a373", - "width": 70, - "x": 4130, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7cbbc0d9-acc3-4d45-8543-f40a8ac4ee71", - "width": 70, - "x": 4270, - "y": 17500, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "56838061-e1e9-458f-b16b-b6ff0be40854", - "width": 70, - "x": 4200, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6860, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "c2b7859a-e149-4570-8e50-bee761380051", - "width": 70, - "x": -9940, - "y": 8540, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "09ef74d1-60a9-4d68-8f48-dfa2093afe4d", - "width": 70, - "x": -9940, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5c192aad-91f3-4110-b21d-04baf3452a20", - "width": 70, - "x": -9940, - "y": 8470, - "zOrder": 12644, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "67374737-9c99-4ff0-af43-0bcba74faa58", - "width": 70, - "x": -9170, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b47a8bd-21f9-46c5-97c2-58e930510e29", - "width": 70, - "x": -8960, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3a3196f5-2670-4f2e-803a-2310664d9510", - "width": 70, - "x": -7840, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "248bafaf-0d05-400a-87c3-e12afe4b0232", - "width": 70, - "x": -7910, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "382763ca-d026-4be1-8b23-9f3292fe082f", - "width": 70, - "x": -8330, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb1188b0-52f2-4e83-ac92-c915432e4a41", - "width": 70, - "x": -9170, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "68772f77-85a6-41a0-a910-8b054a4b0238", - "width": 70, - "x": -7840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1880fe37-0cae-468f-a0f0-6d35d450219f", - "width": 70, - "x": 6020, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2828aff8-8ff8-41f3-9479-ccaa3140e9d6", - "width": 70, - "x": 1680, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f2a0d66-87ec-4e41-ab2b-233500cd4c2f", - "width": 70, - "x": 1750, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06c60856-6c77-488e-b9fa-d8ca2f77f8f8", - "width": 70, - "x": 1610, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a176fb1-f0a7-4d46-9429-70f07a7c1845", - "width": 70, - "x": 1470, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63438dfd-6564-439c-8c20-889b9b9dead9", - "width": 70, - "x": 1540, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0e07586-7abe-461d-9f8f-040c7d8392c0", - "width": 70, - "x": 1330, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "29b869db-a66c-42e0-850f-952d14678c36", - "width": 70, - "x": 1400, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6bce089f-b222-483f-9d1c-acfc7d912937", - "width": 70, - "x": 1260, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86f4e8ae-4509-4e65-8e97-d2dc512ec675", - "width": 70, - "x": 1120, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47b82bd1-6865-4812-adac-9faeb2379651", - "width": 70, - "x": 1190, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c4a1627-f308-4ff1-a8ec-55a09ecee037", - "width": 70, - "x": 980, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "028ec976-5113-4bb4-bc8f-0fbd197279fc", - "width": 70, - "x": 1050, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6b85a1c-056c-4849-bb47-52672c691d0e", - "width": 70, - "x": 910, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b41a189-d878-41e2-a62d-a10d1a4a20b0", - "width": 70, - "x": 770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0946c1b-60a0-4fd5-80b3-2ad9d9356bbb", - "width": 70, - "x": 840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bf0b3762-a33b-47e5-8e21-3deff164d947", - "width": 70, - "x": 630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30c569dd-1f68-4744-b2bc-86c9c116ee7f", - "width": 70, - "x": 700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1248b57f-aa92-4ec4-a162-b73ddff812dc", - "width": 70, - "x": 560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "35b7b411-6248-4e31-a64e-7648c9820893", - "width": 70, - "x": 420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ad3f83f-7b59-4cda-9be1-43c36780f96f", - "width": 70, - "x": 490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "775e0a77-09f9-475e-bd08-8535bc187fde", - "width": 70, - "x": 280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c33d1c8-55ed-46a4-80a5-81c243759228", - "width": 70, - "x": 350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a1dcaa4-d1fc-4ffc-bb7c-2232080af5e4", - "width": 70, - "x": 210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e303256-3232-4a76-9c12-056eb232fd10", - "width": 70, - "x": 70, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fd8c334-a4d4-40cf-a0b9-cc9a54b7cee7", - "width": 70, - "x": 140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7216e525-dbf6-4c91-b33e-fadc8e13eb3a", - "width": 70, - "x": -70, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf0fd41d-089f-4629-9287-f04c38480dbc", - "width": 70, - "x": 0, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7363d1c1-fb17-4f93-9908-a10b47400ccc", - "width": 70, - "x": -140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93952be4-6ddc-4548-b7de-4e88a902e67e", - "width": 70, - "x": -280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1eefd45e-795c-4599-9492-bc173e8db2a1", - "width": 70, - "x": -210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db72c1f7-5a32-4fe2-ad12-4b5b7d7e7923", - "width": 70, - "x": -420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78b9aef7-908a-4720-b7ad-52ea30cd0482", - "width": 70, - "x": -350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3818645-e65f-4b77-9c8b-7bec1c09d6d4", - "width": 70, - "x": -490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "002a650a-d9c4-4639-a1b2-23121d6a4321", - "width": 70, - "x": -630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58d1774c-39d7-458f-a62f-e45b9f161e27", - "width": 70, - "x": -560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "934ba8c3-98a8-4a56-839b-16bbb413f363", - "width": 70, - "x": -770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fa36368-747a-4ebf-a096-aeedd3ab7446", - "width": 70, - "x": -700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da949b3f-af8c-4026-be79-9653af881493", - "width": 70, - "x": -840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ae52c08-b92c-443e-a712-32d00ecfb5a3", - "width": 70, - "x": -980, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b63cc5e-f8be-42a7-a8fa-d7d8afa4bd7b", - "width": 70, - "x": -910, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe7f05b1-76bf-470a-802f-e5bba87c0d9f", - "width": 70, - "x": -1120, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "780d3279-653d-4248-8c4e-17c28544fd30", - "width": 70, - "x": -1050, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6515a149-0f24-4ccc-a8d2-8b50eacf291d", - "width": 70, - "x": -1190, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e56fae96-dc35-4ae5-951c-d18a132b133b", - "width": 70, - "x": -1330, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f8c5762-c641-4ecd-ac0c-50f2824ad99f", - "width": 70, - "x": -1260, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92d4155f-8978-489d-ab7c-8147b7cc48bf", - "width": 70, - "x": -1470, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7b4ca3f-1b58-4dcd-ae7b-482e1dec2e4c", - "width": 70, - "x": -1400, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f882f96-9100-4ba8-90fa-acfd4efbbeca", - "width": 70, - "x": -1540, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26d7c365-ab91-4447-a213-453658eda8a0", - "width": 70, - "x": -1680, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0eb7f529-a917-47fd-b98f-842d631f4f45", - "width": 70, - "x": -1610, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82f143c4-a5f5-4494-a015-2751e544d300", - "width": 70, - "x": -1820, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9327f173-59a3-4a9f-b5eb-84e367ce7f90", - "width": 70, - "x": -1750, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b097ee4-9817-4281-84d7-0f177b3d5b7d", - "width": 70, - "x": -1890, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8cfa1e31-a63e-40ce-bcce-a9580bbe5aa8", - "width": 70, - "x": -2030, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "177a0348-78cd-41d7-8c0d-a3deb21334ec", - "width": 70, - "x": -1960, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb4248a2-2c6a-4b88-ba6d-4f1228f43584", - "width": 70, - "x": -2170, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c3d7f77-dcb6-45a9-a2e4-26ff231fd872", - "width": 70, - "x": -2100, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2e0494ce-162a-484a-aa57-fff95973a6e0", - "width": 70, - "x": -2240, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b65e304b-b117-4fc7-845f-08fb3594356c", - "width": 70, - "x": -2380, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6718d1f-e801-4af0-9eec-29ebfded987b", - "width": 70, - "x": -2310, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4df91f2-86e1-4a3a-bc7a-da3e04f7d020", - "width": 70, - "x": -2520, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e95c5bcf-f04b-4329-8b64-5940e22e225e", - "width": 70, - "x": -2450, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "352b7732-84db-4c72-a4ae-b4fd304578db", - "width": 70, - "x": -2590, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5fa9b027-9a6e-4a99-90a1-f9dc19d3ba9e", - "width": 70, - "x": -2730, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc3c2952-b4ca-46c2-9048-06fc098f1320", - "width": 70, - "x": -2660, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0194767-ff5d-4f22-a000-d47b20e46323", - "width": 70, - "x": -2800, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "852ce45b-cf22-4dd8-b21b-464a0183d7b0", - "width": 70, - "x": 5880, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "787370d1-fbc6-4b1a-be34-4be0fefeffe3", - "width": 70, - "x": 5950, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72045e0f-285b-4264-a0be-2c025fa54b4b", - "width": 70, - "x": 4550, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ab8721fc-014f-4326-bb03-043d88961ee6", - "width": 70, - "x": 4480, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "74b4ae53-bf0d-455e-98b7-21667b8ce74b", - "width": 70, - "x": 4340, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2698bc40-dba2-42b2-8d3e-72cf803131e7", - "width": 70, - "x": 4410, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2434ce96-a433-4ac3-b9e4-f5162f9e7721", - "width": 70, - "x": 4200, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d3120e1e-8688-4a16-a9d5-f489e5ec5768", - "width": 70, - "x": 4270, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "439d3d26-0839-42a8-8b58-832b51b92fe2", - "width": 70, - "x": 4130, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bb9e06a-c2eb-4e4d-a645-ddc017fe6e9e", - "width": 70, - "x": 3990, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec97143f-ac6f-41d9-8a95-817d38452de3", - "width": 70, - "x": 4060, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14e20f94-10e0-4b29-8452-bf3f8e0b9442", - "width": 70, - "x": 3850, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df9a90f3-1b18-460b-a7db-97b7fa23a139", - "width": 70, - "x": 3920, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6cad4ba3-9821-4f48-8f7f-158b03a8d6de", - "width": 70, - "x": 3780, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f50dab7-1625-4024-9f21-42981f611983", - "width": 70, - "x": 3640, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0d2115f-8d2d-46c1-8e5c-35f240d9020d", - "width": 70, - "x": 3710, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "562dbf91-4d3f-462b-a221-fe3ac54954ef", - "width": 70, - "x": 3500, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16a467c2-079b-4b67-929c-2c0328b901c9", - "width": 70, - "x": 3570, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "afdc876a-c691-4ebb-8867-199b1d77f36a", - "width": 70, - "x": 3430, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2d569ef-0266-4f26-a540-be15920ba782", - "width": 70, - "x": 3290, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ffc3406d-c4f2-4f9f-b6bd-91c7eaa55c3c", - "width": 70, - "x": 3360, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd4127fe-4510-4b4f-a743-8c8a2eb1307e", - "width": 70, - "x": 3150, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e2b373b-2df8-45b7-8000-476a0f13f59f", - "width": 70, - "x": 3220, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22c694b9-15e5-4b8b-8692-ece69df0dca0", - "width": 70, - "x": 3080, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d21e24b-4569-43fe-91fc-a1b8c028303d", - "width": 70, - "x": 2940, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b0bb79ba-cf5a-4cca-916c-b1c65fccf2af", - "width": 70, - "x": 3010, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d46ee9ee-e96b-41b3-8ea2-d1dded532560", - "width": 70, - "x": 2800, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a157f83a-b151-4fe6-9c78-4cb02735d20c", - "width": 70, - "x": 2870, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "50a69d03-05f0-46ca-af7d-10e165ef8008", - "width": 70, - "x": 2730, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ce46f011-2bb0-4c88-abc9-d259fd461d2f", - "width": 70, - "x": 2590, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7094e502-3c10-45b9-9d19-265be54fb2cc", - "width": 70, - "x": 2660, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d5dfa501-dcc9-452f-b318-d7adf67034f9", - "width": 70, - "x": 2450, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fddbea7-c77e-45f4-ae82-c5f2f936c085", - "width": 70, - "x": 2520, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b03c6a8-051b-48eb-8a73-d8690399de22", - "width": 70, - "x": 2380, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "51e501ae-05a9-4ae4-b1b2-e8e4d6e17783", - "width": 70, - "x": 2240, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a836aedc-1654-4a7f-b30f-608c2bee7c21", - "width": 70, - "x": 2310, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e8ecaf1d-cd2b-424f-9167-b48ae8925d61", - "width": 70, - "x": 2100, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "32b6fdc1-df4f-43e6-ad5b-2478d57fb8ae", - "width": 70, - "x": 2170, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65f73679-9cfa-4206-8ea3-7f05b9e2bcf7", - "width": 70, - "x": 2030, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e986190a-3651-4d8f-8c71-eac85e039d74", - "width": 70, - "x": 1890, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7adf24e4-752d-4493-bef0-381d60679a45", - "width": 70, - "x": 1960, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d503873a-69fa-4e53-9e9d-07b663081456", - "width": 70, - "x": 1820, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b783edcd-cb09-45df-8ea3-ecf6168c55bb", - "width": 70, - "x": -3990, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4c1f119-87a3-477c-873d-3eace9dd3ae8", - "width": 70, - "x": -3920, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a81ddc24-decf-4a62-a240-01e16dabf4e3", - "width": 70, - "x": -4060, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f77578d-15be-4307-8041-3428d8fe8528", - "width": 70, - "x": -4200, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30551d13-00bf-4be2-8dd0-c422988a5bbd", - "width": 70, - "x": -4130, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57d3c072-301e-4852-b4ac-2032d689cc63", - "width": 70, - "x": -4340, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c39e941c-a12a-48b0-85af-7f2b692d5557", - "width": 70, - "x": -4270, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f123151a-325a-4f66-a0b5-cdf6932cdd3f", - "width": 70, - "x": -4410, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ae27ec0-31c3-4367-b784-383655de4f91", - "width": 70, - "x": -4550, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e50d3672-d882-450e-980a-eec264ffba53", - "width": 70, - "x": -4480, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "183b78d0-0644-4293-8377-720a5346e717", - "width": 70, - "x": -4690, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f1fd72f-5e35-43b0-a7cb-fe67d2825215", - "width": 70, - "x": -4620, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "39594809-f61f-4ace-a4f3-78abb1cf8401", - "width": 70, - "x": -4760, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "489c5f5c-4c72-48aa-abd9-593640c9332b", - "width": 70, - "x": -4900, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b0618da7-364d-407e-ab36-503fc7175206", - "width": 70, - "x": -4830, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec953ea3-8f8e-4315-96f0-cc77aa455751", - "width": 70, - "x": -5040, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca990166-ec51-4d85-83e3-874f165fe72c", - "width": 70, - "x": -4970, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6b5a5aa-19e5-40af-8812-eb8691e59936", - "width": 70, - "x": -5110, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1827869b-9c11-462c-a8ce-7b08fd9a3344", - "width": 70, - "x": -7070, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86f3725b-bc9c-45d5-afc6-d049d8e30953", - "width": 70, - "x": -7000, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b6b7d79-1370-4a11-9d45-6ab1807e9797", - "width": 70, - "x": -7210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61aad679-eb2a-4f71-b717-8a63334a6daa", - "width": 70, - "x": -7140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e987cf6a-2b4d-46da-aa6c-19c83dbb6ef1", - "width": 70, - "x": -7280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf22e25f-afc2-41af-9c10-efa7fa41b1d1", - "width": 70, - "x": -7420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ba6259e-1b53-4f15-b49b-16bd6a06e853", - "width": 70, - "x": -7350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8ba70d11-4e34-420e-99c4-617c274c285c", - "width": 70, - "x": -7560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e8c0a6f-765e-46f5-8b27-9df8ffc2ee63", - "width": 70, - "x": -7490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5223f9e4-a882-494f-9acf-6239c86f48ec", - "width": 70, - "x": -7630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac58fddb-0762-41f3-a33c-518474565299", - "width": 70, - "x": -7770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ee0d2b3-7194-45ce-bd03-e71c37f02115", - "width": 70, - "x": -7700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2667df6-663e-458d-8a5e-151711936d1c", - "width": 70, - "x": -7840, - "y": 7490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1bcd28e1-55bf-4571-99a6-b606021baa3b", - "width": 70, - "x": -3640, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9e159dbf-9f8f-4cc8-a0ec-2a332cc3d9c5", - "width": 70, - "x": -3780, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58fad68e-240c-4862-86d9-a9d9156ca710", - "width": 70, - "x": -3710, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8ef62f4c-ef16-4f6d-8105-80dbcea6cdc2", - "width": 70, - "x": -3850, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98634bb8-fe80-4846-ba43-ebead9ecd9cd", - "width": 70, - "x": 6020, - "y": 9450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8887d72-9fd7-43aa-b5b7-137e5769e022", - "width": 70, - "x": 6020, - "y": 9380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98925f9c-caaf-450c-8f9c-1dbe1b64a375", - "width": 70, - "x": 6020, - "y": 9310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d2ae7ba3-9feb-475d-9676-61f686f027a9", - "width": 70, - "x": 6020, - "y": 9240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "808ef23f-b733-4fba-9db6-8ffeb084272e", - "width": 70, - "x": 6020, - "y": 9170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e6f64bc-b69e-42a9-a886-f8b6b56a40eb", - "width": 70, - "x": 6020, - "y": 9100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48ac6a30-9983-4d2f-a54f-6f8710f5f83d", - "width": 70, - "x": 6020, - "y": 9030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "977b3ed1-8983-4305-b3f0-f7f3ba1fed1c", - "width": 70, - "x": 6020, - "y": 8960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13035ea4-aa1c-4e7b-a39a-c5f0628d6dd2", - "width": 70, - "x": 6020, - "y": 8890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b47ef73a-251c-43e5-ad52-6e99c5097d2c", - "width": 70, - "x": 6020, - "y": 8820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b17a247-d24f-4905-8c67-3de00c4f2542", - "width": 70, - "x": 6020, - "y": 8750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36239b59-8f24-47f6-937c-cd93f3c80080", - "width": 70, - "x": 6020, - "y": 8680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1eaad9e2-cfee-4b94-b0e4-96846b923637", - "width": 70, - "x": 6020, - "y": 8610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c75eef0-347f-479d-a230-198b36fd0f80", - "width": 70, - "x": 6020, - "y": 8540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "39eb895a-700d-4107-8ad9-a7b24cb53c16", - "width": 70, - "x": 6020, - "y": 8470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3a276265-2134-4521-b1bc-f04c4ce874e6", - "width": 70, - "x": 6020, - "y": 8400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "475e31c6-9673-4270-8cfc-d4099251747a", - "width": 70, - "x": 6020, - "y": 8330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05c544d3-216a-401c-a6a0-a8186eaada20", - "width": 70, - "x": 6020, - "y": 8260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a539772-8704-47ef-bff5-761f1c0c66a5", - "width": 70, - "x": 6020, - "y": 8190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "231d17a9-72c5-4dc8-a98c-265589715ef0", - "width": 70, - "x": 6020, - "y": 8120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8205a8d6-7f32-4793-a196-f6125f28d34a", - "width": 70, - "x": 6020, - "y": 8050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b5faeed0-bb85-403a-a385-0492d40ea8e1", - "width": 70, - "x": 6020, - "y": 7980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb98fc07-7dae-4d25-8041-7b2612eb08c5", - "width": 70, - "x": 6020, - "y": 7910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00a48578-1930-48cd-9e67-a49df253ac6f", - "width": 70, - "x": 6020, - "y": 7840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa1431ae-4887-450d-8c3f-cda8151e146c", - "width": 70, - "x": 6020, - "y": 7770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef3a6ef6-f516-46c5-b678-9ee577ac476e", - "width": 70, - "x": 6020, - "y": 7490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a60fd7cd-a1e5-4293-938b-0d8d16497bc3", - "width": 70, - "x": 6020, - "y": 7560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8da2beb8-352d-43b3-9db1-20b4cf777527", - "width": 70, - "x": 6020, - "y": 7630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4fe5b26-bf9a-4f51-b7a0-7b81b9113adf", - "width": 70, - "x": 6020, - "y": 7700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1dd7864-d4ab-4fb9-9630-bc90753795f7", - "width": 70, - "x": 6020, - "y": 11270, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c9df671-09bb-4a74-8472-5c4919dc7876", - "width": 70, - "x": 6020, - "y": 11200, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61e85993-0978-4b22-86bc-996672be70e6", - "width": 70, - "x": 6020, - "y": 11130, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4095e86b-37e6-4540-a9ea-60f2c42e1ffb", - "width": 70, - "x": 6020, - "y": 11060, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d6f37d72-c522-4357-955e-e764f25a2e3b", - "width": 70, - "x": 6020, - "y": 10990, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07d01511-15ff-4d67-8ecc-bed7549ab94c", - "width": 70, - "x": 6020, - "y": 10920, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66c664b1-9a23-4662-9995-53d69923ea8f", - "width": 70, - "x": 6020, - "y": 10850, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b161f7fb-772e-46cf-aa36-fc89323ede8e", - "width": 70, - "x": 6020, - "y": 10780, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36479fbf-9e2f-4472-a1d0-540528448d99", - "width": 70, - "x": 6020, - "y": 10710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5078007e-e948-4352-949b-ab7accfd5573", - "width": 70, - "x": 6020, - "y": 10640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ac1d582-8239-4154-b57c-cf367f2ae4d7", - "width": 70, - "x": 6020, - "y": 10570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ff2dc3ba-153a-4eed-bf3d-42392f978890", - "width": 70, - "x": 6020, - "y": 10500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "824110fc-0e7d-48e3-bf21-565c10c6adb4", - "width": 70, - "x": 6020, - "y": 10430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d5740e34-580a-4291-bbcf-f186d693f29a", - "width": 70, - "x": 6020, - "y": 10360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "51e63e66-d8a5-41eb-a0a9-ba9d601a74b2", - "width": 70, - "x": 6020, - "y": 10290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd572745-dfc6-4960-a94e-79479ca53e6f", - "width": 70, - "x": 6020, - "y": 10220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5170faad-c7d9-47b7-bf37-dcc7cf8d3605", - "width": 70, - "x": 6020, - "y": 10150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe975d2a-6b69-47fb-b0a4-041da9dcd4a4", - "width": 70, - "x": 6020, - "y": 10080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a16128dd-f2b2-44b9-a13c-4b80f9e51a5b", - "width": 70, - "x": 6020, - "y": 10010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1be3b895-2ec0-44ff-9e59-ae05c5394fd2", - "width": 70, - "x": 6020, - "y": 9940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b3f538e-4d7e-41ee-8d45-4803d11260b7", - "width": 70, - "x": 6020, - "y": 9870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05e7ba7d-581f-4399-8a7a-5b77dc8f1106", - "width": 70, - "x": 6020, - "y": 9800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6967e09-454a-4f9f-a071-064bd69e96dc", - "width": 70, - "x": 6020, - "y": 9730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c9d01d4-e7ba-42ea-a63f-1cda823b12c3", - "width": 70, - "x": 6020, - "y": 9520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00e21b58-9f64-47bf-9d09-dba557feba21", - "width": 70, - "x": 6020, - "y": 9590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18f17fee-261c-4aa7-b9fc-2f060cbae65c", - "width": 70, - "x": 6020, - "y": 9660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9b3d4da-ba45-4672-a5e9-df9bee618c2e", - "width": 70, - "x": 6020, - "y": 11550, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ff7e80c-d006-4131-a3b1-306a21f629c7", - "width": 70, - "x": 6020, - "y": 11480, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e1849813-2ee5-4011-ade5-38165a267c65", - "width": 70, - "x": 6020, - "y": 11410, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f0988f1-2e46-4312-9d8f-50ccc900667f", - "width": 70, - "x": 6020, - "y": 11340, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "facbf961-f7b1-458e-9f3c-561b7b50b23b", - "width": 70, - "x": 6020, - "y": 13370, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c538b288-56e5-4370-8366-b805ef6e4e51", - "width": 70, - "x": 6020, - "y": 13300, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "069a139d-b258-4bd8-8455-77edc43a3166", - "width": 70, - "x": 6020, - "y": 13230, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dcc95ff2-ba81-466a-ab58-21fe125ff28a", - "width": 70, - "x": 6020, - "y": 13160, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "175e8e9b-a68d-4898-8e2f-925df7855760", - "width": 70, - "x": 6020, - "y": 13090, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2952f931-1000-4c1f-80c9-dc451c07fd2e", - "width": 70, - "x": 6020, - "y": 13020, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f4984e2-8105-443a-ba34-beda680ad0e4", - "width": 70, - "x": 6020, - "y": 12950, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac6fe423-fc7f-4d37-82b2-42dbdfbf4367", - "width": 70, - "x": 6020, - "y": 12880, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b635b67-33a1-4b04-b0f1-8e9d4718e0a7", - "width": 70, - "x": 6020, - "y": 12810, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1febc98b-efd9-4954-b524-8b88300cf29a", - "width": 70, - "x": 6020, - "y": 12740, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc11bbe4-061d-48cf-8d93-013fa1fd6e58", - "width": 70, - "x": 6020, - "y": 12670, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d090a6af-a80d-444f-a405-730f15ea6ba7", - "width": 70, - "x": 6020, - "y": 12600, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00611642-d722-4161-a312-583a86edae5a", - "width": 70, - "x": 6020, - "y": 12530, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9c79595-842f-4a6c-954e-de3a80114ef9", - "width": 70, - "x": 6020, - "y": 12460, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "169be99e-eed2-45be-95da-b5cf2ead3e13", - "width": 70, - "x": 6020, - "y": 12390, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64ad4c34-89d1-4ce4-9a83-a7a944fb8f33", - "width": 70, - "x": 6020, - "y": 12320, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "67b0123b-9e11-4445-b1d6-ff143d857c84", - "width": 70, - "x": 6020, - "y": 12250, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "401c4e93-dc53-4530-93c1-b72687d53085", - "width": 70, - "x": 6020, - "y": 12180, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ad64009-db4c-4e98-b502-08648b53abb7", - "width": 70, - "x": 6020, - "y": 12110, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "111cde48-6b6f-43b1-ae85-1258b305b4c2", - "width": 70, - "x": 6020, - "y": 12040, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37421f77-87af-4cd3-88b5-fa041a09247c", - "width": 70, - "x": 6020, - "y": 11970, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc893bd0-8120-4822-9fdb-ccd701f3b3cb", - "width": 70, - "x": 6020, - "y": 11900, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd83fecc-2772-49d6-9103-bce53651894f", - "width": 70, - "x": 6020, - "y": 11830, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "913ebe7a-2752-4b7b-907f-841701e3e20c", - "width": 70, - "x": 6020, - "y": 11620, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "937ec481-2ff8-4780-81cf-ed2288a604e5", - "width": 70, - "x": 6020, - "y": 11690, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b0e40d8-e0b2-411e-9455-f5b2a45ccb4a", - "width": 70, - "x": 6020, - "y": 11760, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3b14bd96-45e2-4bc3-9b1a-4ca70bbdfde0", - "width": 70, - "x": 6020, - "y": 13650, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de267832-e4fa-4b39-b490-b685016a8685", - "width": 70, - "x": 6020, - "y": 13580, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78605920-7428-4132-9e84-e5716d3b5b71", - "width": 70, - "x": 6020, - "y": 13510, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e3efe1b3-9f11-42e9-98e2-299a73ba3f49", - "width": 70, - "x": 6020, - "y": 13440, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61ea5ca5-99ed-4cab-89e4-a16688c1fc39", - "width": 70, - "x": 6020, - "y": 15470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87750432-9f2d-4f06-8dea-804e37189672", - "width": 70, - "x": 6020, - "y": 15400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21ddda90-260f-48fc-9f09-1425b5e53301", - "width": 70, - "x": 6020, - "y": 15330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dee482e8-3a63-4de9-87ca-88ee24907f36", - "width": 70, - "x": 6020, - "y": 15260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "560f68ca-e59a-42c5-8bf2-23a30ab17d9a", - "width": 70, - "x": 6020, - "y": 15190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aa2672bc-dcbd-4d83-9683-9957ef1316a5", - "width": 70, - "x": 6020, - "y": 15120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcc6f3b9-97d5-4a8f-8406-820c51f644eb", - "width": 70, - "x": 6020, - "y": 15050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03e22962-5d1a-4554-b1b4-ab3249360422", - "width": 70, - "x": 6020, - "y": 14980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "480af050-9102-4e0f-ac0b-b44e06dc820b", - "width": 70, - "x": 6020, - "y": 14910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f41bc9c-8e51-4269-a4b7-2bec19f95376", - "width": 70, - "x": 6020, - "y": 14840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ffa1c2bd-011a-417b-9d80-c1687d51a281", - "width": 70, - "x": 6020, - "y": 14770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0404d5ae-2a86-4823-b2a8-c828aeb73df0", - "width": 70, - "x": 6020, - "y": 14700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "940c294c-8c11-4a48-80dc-365165d497a0", - "width": 70, - "x": 6020, - "y": 14630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e67bb20-0072-4849-acfa-aea9673546fe", - "width": 70, - "x": 6020, - "y": 14560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9185d974-8eef-4819-aa70-71c56b955cea", - "width": 70, - "x": 6020, - "y": 14490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf5835d6-011b-43c1-9d94-412e829c90c1", - "width": 70, - "x": 6020, - "y": 14420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15c05fec-efb7-43eb-b46c-e50ee282fea0", - "width": 70, - "x": 6020, - "y": 14350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "baa5a962-acee-4f6c-ad6f-987714774195", - "width": 70, - "x": 6020, - "y": 14280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1337ac26-fcc5-4560-9e8d-617c5be1e2d0", - "width": 70, - "x": 6020, - "y": 14210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20739b15-05c6-4c37-9cb8-2bff5826456c", - "width": 70, - "x": 6020, - "y": 14140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54f0a83c-72e3-4a5d-be47-ef2983c28429", - "width": 70, - "x": 6020, - "y": 14070, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b35c8711-0b21-4986-97ca-a4ed6b3dda73", - "width": 70, - "x": 6020, - "y": 14000, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e14c3e59-3226-47a7-b828-5c2d6d267a64", - "width": 70, - "x": 6020, - "y": 13930, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59a16de7-1d15-4289-a908-1d4f96a16060", - "width": 70, - "x": 6020, - "y": 13720, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69124a03-a746-4ba1-8854-761936e7b4e4", - "width": 70, - "x": 6020, - "y": 13790, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "171ad25d-35fb-4f06-b8cb-3dfa4bdc2acf", - "width": 70, - "x": 6020, - "y": 13860, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "544f8360-81a9-4045-bb0e-9b84af0829fb", - "width": 70, - "x": 6020, - "y": 15750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e15de574-9849-4e72-b3f4-97d2f4db9730", - "width": 70, - "x": 6020, - "y": 15680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "baa4b239-f47e-4d65-a307-119a77512544", - "width": 70, - "x": 6020, - "y": 15610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2bcd7719-9cb7-4b4d-b1d5-c75c4685b83f", - "width": 70, - "x": 6020, - "y": 15540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0fe34db-0acc-4906-9d70-a5e461924be6", - "width": 70, - "x": 6020, - "y": 15820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9dd226b-8573-4c8d-85f5-0a08dcb2f5e9", - "width": 70, - "x": 6020, - "y": 15890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05c7f840-7a67-497d-8d87-e5819067fd06", - "width": 70, - "x": 6020, - "y": 15960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "10b2a440-e567-47df-a70d-f66e48f7ca2f", - "width": 70, - "x": -8190, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c1752a0-d7db-4ed4-a38d-dc9d35847b4d", - "width": 70, - "x": -8260, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1bae2f12-357d-4020-adab-38c4bdd80423", - "width": 70, - "x": -7980, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "386438b2-b9db-46c0-a098-5695883b25e1", - "width": 70, - "x": -8050, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19dd1c45-a9e8-4b6c-912d-6939c3b95ebe", - "width": 70, - "x": -8890, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06dc1303-d7b6-4016-a222-242fd6ebd217", - "width": 70, - "x": -8820, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fda8a5f2-13d7-47c6-84d0-dcbdb3ff72b7", - "width": 70, - "x": -8750, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5834385c-aaec-40ab-bd78-a3397d78713d", - "width": 70, - "x": -8680, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4e531cb-f192-4a9b-abe2-89c78bbc57c0", - "width": 70, - "x": -8610, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "c5f4878a-ded3-4e40-8977-0f1d7c0f0503", - "width": 7350, - "x": -2730, - "y": 8470, - "zOrder": 12646, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8820, - "layer": "", - "name": "sand_1", - "persistentUuid": "5b1c6866-b137-45f0-8bba-a493086ff545", - "width": 140, - "x": 4620, - "y": 8470, - "zOrder": 12647, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "sand_1", - "persistentUuid": "e33f8fda-4848-45c5-94da-ed395864188f", - "width": 140, - "x": -3640, - "y": 7560, - "zOrder": 12649, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "67cdc1a5-d1db-474a-851e-ccf8022b6927", - "width": 3850, - "x": -5250, - "y": 9240, - "zOrder": 12651, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "3e2b5720-f5b9-4021-9543-c8029678640e", - "width": 840, - "x": 1190, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "sand_1", - "persistentUuid": "642a9e84-6ea4-42f8-84a0-ba38822f6ac6", - "width": 140, - "x": 3850, - "y": 9380, - "zOrder": 12653, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "08485beb-8ff0-4a3f-8e2d-d42c1a73508d", - "width": 5950, - "x": -5250, - "y": 14350, - "zOrder": 12654, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "sand_1", - "persistentUuid": "8bb40d00-49d3-45ac-8ed0-4bb687bf16a1", - "width": 140, - "x": -7210, - "y": 9100, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "30fcaf14-e7be-40a2-891c-277b98e7e1ab", - "width": 2240, - "x": -5250, - "y": 15120, - "zOrder": 12656, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "sand_1", - "persistentUuid": "d9506cc8-5462-4c25-b8e9-d38b98e4bd02", - "width": 140, - "x": 3850, - "y": 15260, - "zOrder": 12657, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "efb09e86-67aa-46a4-acf9-d3a45adc2e11", - "width": 2100, - "x": -5110, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5810, - "layer": "", - "name": "road", - "persistentUuid": "070520f5-cffd-4a30-9a5c-80f43c89eff7", - "width": 210, - "x": -5530, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "name": "road", - "persistentUuid": "d80e9e3e-2c4e-4986-bafc-efd15cf10510", - "width": 210, - "x": -5810, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "d1e9151f-6016-4c88-97cf-e71b94a8e341", - "width": 490, - "x": -5810, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce7129a0-7ac5-4713-9a09-ed622ec063e0", - "width": 70, - "x": -5320, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "eded015b-c5c3-459b-bb89-a8099a803d59", - "width": 70, - "x": -5880, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "name": "road_1", - "persistentUuid": "765fa2ee-dc61-40e9-87c5-c8612b208137", - "width": 70, - "x": -5880, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "835a5ee7-023b-4ae1-b966-2907656958a9", - "width": 70, - "x": -5320, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3150, - "layer": "", - "name": "road_2", - "persistentUuid": "baa11a57-94c2-4f30-906d-5a193f280db1", - "width": 70, - "x": -5600, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "name": "road", - "persistentUuid": "5ce750f8-ce0b-436f-9f98-76da57be60d7", - "width": 210, - "x": -5530, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2170, - "layer": "", - "name": "road_1", - "persistentUuid": "45777613-d8ba-49ff-9fbe-71154e75b69c", - "width": 70, - "x": -5320, - "y": 15120, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b44948d0-cc56-4b32-ad86-0ce9124ab033", - "width": 70, - "x": -5600, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "725de249-cd93-4bfb-bb8a-f3ddbf24e158", - "width": 70, - "x": -5600, - "y": 14910, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7dab9454-dd07-4087-8557-c53965d48521", - "width": 70, - "x": -5600, - "y": 14630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6c5dd75f-1d4e-4bd1-a03d-05aa829003ee", - "width": 70, - "x": -5460, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d1348f79-5265-4096-8d2f-33b0bfaaa38e", - "width": 70, - "x": -5530, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ffeee3b-6998-4ce4-8eb8-0a75d4ca044f", - "width": 70, - "x": -5600, - "y": 14700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4aab0771-6008-4a6b-b2d9-d06fbffe26a7", - "width": 70, - "x": -5600, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "09d91e97-b077-4f96-8ee8-42a013b47d20", - "width": 70, - "x": -5320, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "507c506f-6fd5-47fe-a5d6-2bd9dfab4695", - "width": 70, - "x": -5320, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8636f961-c2d5-4952-bbd8-1da11b0e4e02", - "width": 70, - "x": -5600, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "9c47b4b0-0467-4888-814d-63f7e0cb442e", - "width": 210, - "x": -5390, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "81272b46-fae5-4a56-9203-600cd1c46ab0", - "width": 70, - "x": -5460, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3db336af-09ac-41db-ac9d-de618a115657", - "width": 70, - "x": -5600, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "6852158d-3116-4e06-98d2-5512e2ad75ba", - "width": 280, - "x": -5600, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f526c2c3-476b-49a0-8e1c-a9f1900c71cc", - "width": 70, - "x": -5530, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "10a6db18-1262-4fd1-8988-8a4a017cad73", - "width": 70, - "x": -5600, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "811d5381-ca87-4849-a5df-11b20b1de6ac", - "width": 70, - "x": -5600, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "db94c5b1-2f88-4fce-8aca-57011fa2683a", - "width": 70, - "x": -5600, - "y": 17430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "25425d9f-5db2-46fe-b976-35a9e269cedd", - "width": 70, - "x": -5460, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "903c2d1f-0664-41e9-bbb8-515df19bc3d0", - "width": 70, - "x": -5530, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4956e51b-52b6-4c62-af97-2d71298dbcf4", - "width": 70, - "x": -5600, - "y": 17500, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "05b35a97-553b-46f7-a9a9-f4c8f4540051", - "width": 70, - "x": -5320, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13d97a03-0e2e-4868-8d69-bd316cc3bbb7", - "width": 70, - "x": -5250, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d89d9209-c5cf-45c0-b6c3-dff41b901987", - "width": 70, - "x": -5180, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33008aa4-eacb-43a1-a2c7-27bce88436bf", - "width": 70, - "x": -5390, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5e731a7-aad3-4e91-8448-80cd0fefc644", - "width": 70, - "x": -5320, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ce8cc9e9-2266-4db2-b538-7860ce47db03", - "width": 70, - "x": -5460, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6e34479-90fa-4486-a60a-2e8298e82f63", - "width": 70, - "x": -5600, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e600222-a35f-4e72-9c02-3017d8a14485", - "width": 70, - "x": -5530, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65f8c1eb-bd45-4170-ab23-04640fff0b56", - "width": 70, - "x": -5740, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e3c83fad-d580-4605-95ed-daf7da3ab5d6", - "width": 70, - "x": -5670, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ab5d799e-113f-4e65-ae90-21022ff5e0ec", - "width": 70, - "x": -5810, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e930e389-749c-4fe6-a799-fa628b4fa914", - "width": 70, - "x": -5950, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "name": "sand_1", - "persistentUuid": "e049bc19-9b7f-42d2-a022-878628173fff", - "width": 140, - "x": -5250, - "y": 9380, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "0428247b-4489-45d5-836b-06950abaf878", - "width": 140, - "x": -5250, - "y": 15260, - "zOrder": 12658, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "c0a36e92-2a5a-47eb-b8d4-6a19589f533c", - "width": 980, - "x": -7210, - "y": 9030, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "name": "road_1", - "persistentUuid": "cf418193-66a1-4627-b1c4-624cb0d4fe12", - "width": 70, - "x": -6230, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3570, - "layer": "", - "name": "sand_1", - "persistentUuid": "2a70ef4a-edb4-4a98-b366-0bce3090ee09", - "width": 140, - "x": -6020, - "y": 8610, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "86c24e58-93d8-45f8-9944-6159c9dab371", - "width": 70, - "x": -6440, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "5ebdbe2a-2321-4d39-9085-3ec282acf52b", - "width": 1050, - "x": -7280, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6471bf2-7a6f-43dd-a7dc-4d1171362f16", - "width": 140, - "x": -6370, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9ed9b623-3667-4b99-8676-229c7dd77235", - "width": 70, - "x": -6230, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f3ac1b13-796a-48fb-9261-c5ed02df71ad", - "width": 70, - "x": -6230, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f324f87b-c1fb-4db9-a4b2-a8651e8790da", - "width": 70, - "x": -7280, - "y": 12180, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "8a4102bb-318a-4c22-8ba8-42c2d2cb7e68", - "width": 1330, - "x": -7210, - "y": 12180, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "b18577ce-a6af-465d-8b30-fbe97ac6869a", - "width": 1330, - "x": -7210, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "d85dfb0c-48fe-40bf-85e0-30201e1554bb", - "width": 1470, - "x": -7280, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "7c72e7d4-c5fc-4aa2-8b94-46573a215974", - "width": 1470, - "x": -7280, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "1f333745-12b8-4af0-8cdd-daed055eeb4a", - "width": 1540, - "x": -7280, - "y": 12390, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road_1", - "persistentUuid": "dc53239a-8a62-44ac-8852-f2f3b878a71f", - "width": 70, - "x": -7280, - "y": 12670, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "name": "road", - "persistentUuid": "3f4c654e-c56b-4323-9fa9-9d273f6b67f4", - "width": 140, - "x": -7420, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3220, - "layer": "", - "name": "road_2", - "persistentUuid": "d1ac5eae-3323-42ba-a89d-20c21e613994", - "width": 70, - "x": -7490, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "606965de-e14e-40df-98a3-442e31bfddb8", - "width": 70, - "x": -7490, - "y": 12530, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "70527afe-0d4f-4f40-9737-b0c39936b9a6", - "width": 70, - "x": -7490, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ea369a21-ba2f-4e72-b7bf-292642120f58", - "width": 70, - "x": -5880, - "y": 12180, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "debd15d3-de75-4904-b7af-b85b9e0d6e44", - "width": 70, - "x": -5880, - "y": 12600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a18cff49-49c4-487f-8dcb-92e223438fcb", - "width": 70, - "x": -5600, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c26cec2b-ff3b-4477-8c66-bff04be443be", - "width": 70, - "x": -5740, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0d8b7fa9-a1c9-4fe7-b410-8320f2f94536", - "width": 70, - "x": -5600, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "292a1c78-5c49-43f1-85a8-eef10ac7f655", - "width": 70, - "x": -5600, - "y": 12530, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_2", - "persistentUuid": "244176ea-4969-4996-bd04-92cc62952658", - "width": 70, - "x": -5600, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road_1", - "persistentUuid": "8f6600e9-9864-4842-8ad7-7bb827f8d1e8", - "width": 70, - "x": -5880, - "y": 12670, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "name": "road", - "persistentUuid": "df1df638-326d-4a45-bf7a-5e09cbe96b7a", - "width": 210, - "x": -5810, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cd7ba06b-ade9-458b-9e56-ce05864b850e", - "width": 70, - "x": -5600, - "y": 12320, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "960f8a1a-4220-4490-ad29-2a2385ddd8ae", - "width": 70, - "x": -5670, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5cf5b97c-6084-46a9-bf52-b64908ab4013", - "width": 70, - "x": -5600, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "40f8b2d4-02ee-4662-b847-68e466ffcd92", - "width": 70, - "x": -7490, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9b159405-0583-48cd-abd3-bdcc68621e8d", - "width": 70, - "x": -7490, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c5c45f0-f677-40d5-bf43-eb78bb82b24e", - "width": 70, - "x": -7350, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f343a6b2-e95a-4db0-b2e1-6b53b53258c3", - "width": 70, - "x": -7490, - "y": 15890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fcade6f6-9693-482a-8acf-422bf57f0c27", - "width": 70, - "x": -7420, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ab07225-749f-48cb-ba96-0d184e6d6e18", - "width": 70, - "x": -7280, - "y": 16170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed19dd95-100b-43f4-93e0-a0dc5e97ad94", - "width": 70, - "x": -7280, - "y": 15750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "c9b0c628-1adb-47fa-967a-b3c7f5bfdcb4", - "width": 1330, - "x": -7210, - "y": 15750, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "0de29563-80f0-401e-929d-ef370e55fef0", - "width": 1330, - "x": -7210, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "80b5adb8-6e92-44e1-95fd-0d35f464f6dc", - "width": 1470, - "x": -7280, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "30acc944-738b-43a8-8327-cd58be4d0df2", - "width": 1470, - "x": -7280, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "dbbffa7b-5463-406d-ad64-0a2db18ec55e", - "width": 1540, - "x": -7280, - "y": 15960, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "80de29c6-c54e-4537-b114-2b9a01aab776", - "width": 70, - "x": -7490, - "y": 16100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d92f2c4-007f-4b4c-b86e-f4d889da266b", - "width": 70, - "x": -7490, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "54a50d37-010f-42b2-8a7b-c96134291ebe", - "width": 70, - "x": -5880, - "y": 15750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "153c8673-aafb-4011-b33a-553b9efba106", - "width": 70, - "x": -5880, - "y": 16170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "17845cfa-9f77-4658-9cb1-0179fcf90027", - "width": 70, - "x": -5600, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d91c982-9f9c-4c7f-878e-f280d8ba99d3", - "width": 70, - "x": -5740, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a98fdbec-63e6-4d3c-971f-16f4dc347e46", - "width": 70, - "x": -5600, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dad394ae-0cc7-4c11-a9b8-68d0bea886df", - "width": 70, - "x": -5600, - "y": 16100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0516eefc-ed61-4f60-a4d1-1e1b5ed36d0d", - "width": 70, - "x": -5600, - "y": 15890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "007131f4-d22a-4651-975f-9973f0a82ce4", - "width": 70, - "x": -5670, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fcb3916d-a0c2-4365-a0f8-5eae41e14ff3", - "width": 70, - "x": -5600, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7630, - "layer": "", - "name": "road_1", - "persistentUuid": "a9952c56-84d3-4513-9ebd-799a9e2b7aee", - "width": 70, - "x": -5880, - "y": 16240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "road_2", - "persistentUuid": "a4eab494-9065-4aac-9a58-6ebd9c9a99bb", - "width": 70, - "x": -5600, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c493afe0-c237-41c2-b0f3-cc82a6de213f", - "width": 70, - "x": -7280, - "y": 18270, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "50006927-54f1-417a-bdb4-1b24eee36437", - "width": 70, - "x": -7490, - "y": 18060, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "926f244a-7638-472e-bcfb-a6fdc6714085", - "width": 350, - "x": -7630, - "y": 18270, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "df90dbbf-e96f-438e-80bd-209f9397ef43", - "width": 70, - "x": -7490, - "y": 18130, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "954249de-de86-487e-ad4b-6bdc07a47896", - "width": 4130, - "x": -7770, - "y": 8470, - "zOrder": 12646, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "sand_1", - "persistentUuid": "fbd33304-6397-4dd4-91b4-d8e95b4e5d62", - "width": 140, - "x": -2870, - "y": 7560, - "zOrder": 12649, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "747d6392-240d-4a72-9d97-2a6742a5d615", - "width": 70, - "x": 5810, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59544f10-5486-43aa-9fbc-11bf86e0015e", - "width": 70, - "x": 5740, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f7edadb9-b071-44a8-9bd3-be16ba1346e1", - "width": 70, - "x": 5600, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28f58568-7d44-4ee6-8a00-1f565b17b620", - "width": 70, - "x": 5670, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7ef45b99-4d78-491d-8b32-230cd7285cf1", - "width": 70, - "x": 5460, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92f2e168-2684-44bb-99ae-1b76ec56add9", - "width": 70, - "x": 5530, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e437e024-8d34-4f8d-8797-2fc0f1f85f51", - "width": 70, - "x": 5390, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30c38fd7-5475-4ebc-9a87-cf21e025634f", - "width": 70, - "x": 5250, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d22fb8a-0fee-4b5e-8182-45640b04480a", - "width": 70, - "x": 5320, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a2f2c5c-2bb7-4d16-bf91-a29ec91ad923", - "width": 70, - "x": 5110, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "517e082e-da60-46d4-8ce4-88c1353e9226", - "width": 70, - "x": 5180, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0798feb5-f77a-45d9-815a-712cb8c5328d", - "width": 70, - "x": 5040, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4fa14595-b7ec-4282-86c5-47d8c237a3d4", - "width": 70, - "x": 4900, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9530377e-6427-4be9-99f5-6b159c8d8f4b", - "width": 70, - "x": 4970, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "871b38fc-f3fb-49f6-938b-3079c52776b7", - "width": 70, - "x": 4760, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "699b0009-b10c-4d42-a266-4c1250c393af", - "width": 70, - "x": 4830, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc6db416-96e4-4635-954f-327ac53266f0", - "width": 70, - "x": 4690, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "357e35fb-ea54-496c-a129-82142518d026", - "width": 70, - "x": 4620, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "0c6a28c1-6234-4e92-acfa-6f0a87189043", - "width": 1820, - "x": -7770, - "y": 7490, - "zOrder": 12660, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01278d5e-6f1c-4eca-a9e7-7812a094cad6", - "width": 70, - "x": -6370, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1d35863-8988-483e-977a-fba78df964dc", - "width": 70, - "x": -6300, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4d7ee0e-1b99-49b9-a71c-f757a7b16fa6", - "width": 70, - "x": -6510, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b49f945f-c153-4fc3-bb46-7300c8aa644c", - "width": 70, - "x": -6440, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d618c788-5e99-444a-8a9d-e0ca3246f409", - "width": 70, - "x": -6580, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87fae5ec-912b-41cf-acbc-419e80085b0b", - "width": 70, - "x": -6720, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6773a4d7-446e-45ea-a776-286f5f15d9b8", - "width": 70, - "x": -6650, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf60ab02-1cbf-4666-b01f-8a6621f713c3", - "width": 70, - "x": -6860, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca84d90a-0af9-4013-919a-e153212ff583", - "width": 70, - "x": -6790, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edc9721f-38da-46cf-9f82-f972b49f9bf2", - "width": 70, - "x": -6930, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b188996c-0163-4978-aeb9-a552c852f4bf", - "width": 70, - "x": -6020, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "35ba16e0-86e6-4408-9caa-af86b4f9202f", - "width": 70, - "x": -5880, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "52c22f56-fe31-4749-8faf-0ea21a4208b3", - "width": 70, - "x": -6090, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4aa8561-f583-41c6-bc1f-f88bc5c62a3a", - "width": 70, - "x": -6160, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df1bb30d-49e0-4dbb-ab47-9af98b0a3847", - "width": 70, - "x": -6230, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfb72c0f-8cad-4d90-abc9-a2c79991024e", - "width": 70, - "x": -7840, - "y": 7560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da60912e-7970-46e1-a8cf-6807b3ebb42d", - "width": 70, - "x": -7840, - "y": 7630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b1c956d2-2460-4fe7-95b7-dcf9250f0c4d", - "width": 70, - "x": -7840, - "y": 7700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15004ebc-d47b-4fd6-9d82-03ef3599990f", - "width": 70, - "x": -7840, - "y": 7770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f55b1e3e-5954-46d9-9be8-a54788cc5e22", - "width": 70, - "x": -7840, - "y": 7840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86ca7fc8-e261-47ae-9232-89327790b4ae", - "width": 70, - "x": -7840, - "y": 7910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4f4c4e7c-c161-4642-8375-31b70d6d81b1", - "width": 70, - "x": -7840, - "y": 7980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56f7e25c-087f-47f4-a877-0a755e26c419", - "width": 70, - "x": -7840, - "y": 8050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e95157c-a6cf-4e5c-975a-fb10e1b19181", - "width": 70, - "x": -7840, - "y": 8120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e93bb75-47a8-424f-8255-7962ab051791", - "width": 70, - "x": -7840, - "y": 8190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "856d34ea-4f47-4913-bdbe-7ea13f95e898", - "width": 70, - "x": -7840, - "y": 8260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a5f0290-8917-4b0d-a88e-d1b477936edb", - "width": 70, - "x": -7840, - "y": 8330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6790, - "layer": "", - "name": "sand_2", - "persistentUuid": "e0c640da-0084-47bd-93f8-5e652a9f3031", - "width": 1820, - "x": -9870, - "y": 8610, - "zOrder": 12661, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "beach_sand_1", - "persistentUuid": "51c7c9dd-f563-470f-ad44-fa0ed1156891", - "width": 1820, - "x": -9870, - "y": 8540, - "zOrder": 12662, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebdc4bee-0d6f-479f-93eb-312c182ed5fd", - "width": 70, - "x": -9100, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "274ffd88-4317-4ee2-8bc0-5d33074fd6ab", - "width": 70, - "x": -8890, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34fc7ec9-8925-4213-9a59-0a9806ac6394", - "width": 70, - "x": -8960, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "46287452-7b8b-470c-a97a-d0161b338857", - "width": 70, - "x": -9030, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "84c2af78-dcd6-4047-aea1-0235e2de1db0", - "width": 70, - "x": -8820, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1252a170-eb8c-43fc-8e97-a7b31e09439a", - "width": 70, - "x": -8610, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "838c7491-cb6e-43e9-bae7-f60e00238466", - "width": 70, - "x": -8680, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4547ffd-c3c6-4fd5-8e1d-8498dcb36035", - "width": 70, - "x": -8750, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8bf9c58-30ae-49bb-90d0-4e997a7bc159", - "width": 70, - "x": -8400, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9e09dd1-f62d-4a1d-8a3e-08f876a9b69a", - "width": 70, - "x": -8470, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "344bf0b6-a0b7-4a50-9a2d-1bf9f6ec32ef", - "width": 70, - "x": -8540, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9800, - "layer": "", - "name": "sand_1", - "persistentUuid": "a0fe8956-e774-424c-9001-a6a11410b865", - "width": 140, - "x": -7840, - "y": 8540, - "zOrder": 12663, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "9d7b6c55-dbd9-40b8-a3f0-aad4d1720f4b", - "width": 1050, - "x": -7070, - "y": 12040, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "c3e53d1c-6830-475d-882c-e17d7a550d18", - "width": 1050, - "x": -7070, - "y": 9100, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "180490f3-a905-4132-adf1-4cf11e32a910", - "width": 1330, - "x": -7210, - "y": 12670, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "78ab74a4-b5d9-4f14-b49b-46b18f1624b6", - "width": 1330, - "x": -7210, - "y": 15610, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "sand_1", - "persistentUuid": "076bb920-c92f-47a2-9192-c864240f6a8b", - "width": 140, - "x": -6020, - "y": 12810, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "sand_1", - "persistentUuid": "c8e922bb-cd53-48b4-a2cb-33dd698ad0e5", - "width": 140, - "x": -7210, - "y": 12810, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "name": "sand_1", - "persistentUuid": "5cd2c23f-7a4c-48c9-bdea-0f8e10c7f50d", - "width": 140, - "x": -6020, - "y": 16240, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "21931ba2-4238-44f8-835b-e06aaa539a9c", - "width": 1190, - "x": -7210, - "y": 16240, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "sand_1", - "persistentUuid": "95d8ba7f-6d28-46b7-ad66-08997cdd5281", - "width": 140, - "x": -7210, - "y": 16380, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "801ed26a-d522-456f-a40f-9b70e2eadd30", - "width": 630, - "x": -8470, - "y": 15400, - "zOrder": 8, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "51725be8-f4f8-41b5-a979-0845ea9f3c2e", - "width": 70, - "x": -9100, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "215adfbd-37cc-4092-9b48-f94f06448788", - "width": 70, - "x": -9030, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cce5a629-5d3c-4747-938c-39fd6f764242", - "width": 70, - "x": -8540, - "y": 15400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73496796-23a9-4b9e-b39d-64cbacc50cb9", - "width": 70, - "x": -8540, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13be407c-2ef5-4937-b3d4-fccc47c2dae7", - "width": 70, - "x": -8540, - "y": 15470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3615c8c8-c3af-458f-b452-e4a95b62d6e2", - "width": 70, - "x": -8540, - "y": 15540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5598384-2307-4908-84dd-5885d3761a1f", - "width": 70, - "x": -8540, - "y": 15610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72758e61-cab9-429c-9044-f2f7d52c9b5e", - "width": 70, - "x": -8540, - "y": 15680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63739beb-1704-4ab8-bb69-30546404ec18", - "width": 70, - "x": -8540, - "y": 15750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9401413c-d589-4765-9295-be71248f6855", - "width": 70, - "x": -8540, - "y": 15820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "70be31a1-20a9-40af-9bdf-e4d272666c59", - "width": 70, - "x": -8540, - "y": 15890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16893649-5bee-4696-9203-d5af14abfd1d", - "width": 70, - "x": -8540, - "y": 15960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "45a8a0a0-e0bf-4af6-a77a-12f646ff8735", - "width": 70, - "x": -8540, - "y": 16030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d343bf95-8cfc-4fb9-aef7-81ac678f1167", - "width": 70, - "x": -8540, - "y": 16100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03d6d3e1-7e1f-43e4-9f4d-7af1c003c8fc", - "width": 70, - "x": -8540, - "y": 16170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "70d8133d-d163-48d5-83d0-261fe5a5b60f", - "width": 70, - "x": -8540, - "y": 16240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b7a4c86a-ea63-4de9-83e0-f61be2b5580a", - "width": 70, - "x": -8540, - "y": 16310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b604799-0dff-48be-add4-e426dfb66983", - "width": 70, - "x": -8540, - "y": 16380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98929ab3-3035-4a2a-a2bf-2b7c5a94796f", - "width": 70, - "x": -8540, - "y": 16450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d0988c1f-a59d-4a62-9b16-e0b928300e3a", - "width": 70, - "x": -8540, - "y": 16520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5ffc8aa-ae16-4cd9-a574-114eff3d0fc4", - "width": 70, - "x": -8540, - "y": 16590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "739fb669-7b17-4c04-ad0c-72c3cf1d68c4", - "width": 70, - "x": -8540, - "y": 16660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85c3557f-43c3-4278-a0a7-efb71749b491", - "width": 70, - "x": -8540, - "y": 16730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0dbd9d7c-8e68-4bd9-875c-34e6caba8165", - "width": 70, - "x": -8540, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30561e0f-0398-40ff-9013-1767e82ef26b", - "width": 70, - "x": -8540, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4be9897-3610-4fd8-b3e5-094dc92d7fb5", - "width": 70, - "x": -8540, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a159ef39-2b4d-48eb-8005-9844a75f3e35", - "width": 70, - "x": -8540, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f10f21-82d7-4d07-a277-596e71e9bb74", - "width": 70, - "x": -8540, - "y": 17080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b0a68466-289e-4235-80ee-802bb36623ba", - "width": 70, - "x": -8540, - "y": 17150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2d93dca-0471-4992-b1b3-8593618d3083", - "width": 70, - "x": -8540, - "y": 17220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "899e3ce9-5136-426c-9c9f-3c48007752a3", - "width": 70, - "x": -8540, - "y": 17290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d42759be-58bf-4dac-84ad-09a1e53b1ed6", - "width": 70, - "x": -8330, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f1ac6b5b-a69e-4f12-bbe5-56ec7cd99721", - "width": 70, - "x": -8260, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d504e5f6-61f1-444e-8434-65340066ce11", - "width": 70, - "x": -8470, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "690def48-c67e-4e48-8a67-cbe1482dcb00", - "width": 70, - "x": -8400, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "40682cb6-63b1-4026-960f-bb2c832ef979", - "width": 1050, - "x": -7070, - "y": 12810, - "zOrder": 12665, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "6100d9c5-fdff-40b8-aad7-f9d5aba2037c", - "width": 1050, - "x": -7070, - "y": 9240, - "zOrder": 12666, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "Water", - "persistentUuid": "5fa76c32-1d01-42ab-976f-987c43b3f289", - "width": 3290, - "x": -11550, - "y": 17430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7280, - "layer": "", - "name": "Water", - "persistentUuid": "89cfc073-3290-4d70-a7ef-5e9de095cf7d", - "width": 1610, - "x": -11550, - "y": 8190, - "zOrder": -5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "Water", - "persistentUuid": "a7698ac9-1411-40ef-bada-6e6681470ddf", - "width": 1120, - "x": -8260, - "y": 18830, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "44760818-59df-4515-a9c6-f201e09a086f", - "width": 770, - "x": -7840, - "y": 18340, - "zOrder": 12668, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "431986c2-42fa-4434-b9be-2e7d175c221e", - "width": 70, - "x": -8190, - "y": 17360, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1120, - "layer": "", - "name": "beach_sand_1", - "persistentUuid": "32cb1e6a-cb96-486d-af0b-bc1bd4141329", - "width": 70, - "x": -7910, - "y": 17360, - "zOrder": 12669, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "sand_2", - "persistentUuid": "8d27c4ee-c909-401b-b74e-1d8493b84797", - "width": 210, - "x": -8120, - "y": 17430, - "zOrder": 12670, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_2", - "persistentUuid": "8f9ab754-0a6b-4389-97e4-0d7af7c4a1e5", - "width": 210, - "x": -8120, - "y": 17360, - "zOrder": 12671, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "f601f492-9391-4f52-afd9-f6a27cc40669", - "width": 70, - "x": -8190, - "y": 17430, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7cc478e9-09a4-4573-9ef4-b2c0c95e52b9", - "width": 70, - "x": -8190, - "y": 17780, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "39805134-c524-4339-8d36-7be1a4d9eea8", - "width": 70, - "x": -8260, - "y": 18130, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11ff7831-e03e-4c47-97c3-dcb77cccdd21", - "width": 70, - "x": -8120, - "y": 17780, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "96d5b6bb-10c1-4606-95a3-777d1bd9540d", - "width": 70, - "x": -8120, - "y": 18130, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa42e8b7-6224-481a-88db-dd3fdf2250b2", - "width": 70, - "x": -8190, - "y": 18130, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "a823044c-10c3-4167-b9b8-c007d6686ae1", - "width": 70, - "x": -8050, - "y": 17850, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "sand_2", - "persistentUuid": "9982d215-af46-48eb-aa8e-5cd9cc2208ef", - "width": 70, - "x": -7980, - "y": 17780, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e395f35-9e2d-4f8a-9176-f9f30ae2f0a4", - "width": 70, - "x": -8050, - "y": 17780, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00201be9-5abe-4601-b9f4-30a3c0f36816", - "width": 70, - "x": -8050, - "y": 18130, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e314b9c5-726d-48d9-9f52-d5abddebd494", - "width": 70, - "x": -8260, - "y": 18760, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "ec40ecbc-e917-4fa3-bc3b-a0023f92b335", - "width": 70, - "x": -8260, - "y": 18200, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "797cf128-d8e4-44c1-b293-16786e1d48d5", - "width": 70, - "x": -8190, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "158a6a25-5ee5-4758-8b14-d3aeff6143b0", - "width": 70, - "x": -8120, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "726a9ece-f5ef-4dbf-8ff1-176f38217077", - "width": 70, - "x": -8050, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a3e63b0a-15c2-448a-a7a9-dfe0891d61a6", - "width": 70, - "x": -7980, - "y": 18760, - "zOrder": 55, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16ad7b90-c918-4a1a-8798-83b9439135a7", - "width": 70, - "x": -7910, - "y": 18760, - "zOrder": 55, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d045b72-39ba-4d15-967b-40286c713e8a", - "width": 70, - "x": -7840, - "y": 18760, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f72976b7-7cf6-407a-a15e-d8bb917e1e49", - "width": 70, - "x": -7210, - "y": 18760, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f40c291-4926-4415-b154-a659d2686153", - "width": 70, - "x": -7770, - "y": 18760, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "beach_sand_1", - "persistentUuid": "e30b081f-d0a8-454f-b34c-6b769be8af62", - "width": 280, - "x": -8190, - "y": 18200, - "zOrder": 65965, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8df8de97-3722-41f9-86ac-4ebeb0391e94", - "width": 70, - "x": -7700, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "10e5e803-af0b-46b5-95fc-7eb8ba926176", - "width": 70, - "x": -7630, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "afde8863-b662-4bdb-bb0f-ba3cbcb31c91", - "width": 70, - "x": -7560, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d22dbb9-a22a-45de-9826-4acfe2d94482", - "width": 70, - "x": -7490, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00919362-687c-4208-8639-1f6e051337b4", - "width": 70, - "x": -7420, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "228ec643-f44a-44b6-87b7-10972e3d84c1", - "width": 70, - "x": -7350, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ae25afc-a090-49e1-9b44-465eee2b8313", - "width": 70, - "x": -7280, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "f0b6928f-7e4e-428f-a372-b7927cd05593", - "width": 70, - "x": -7210, - "y": 18690, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04acfa31-ccfd-40f9-bb97-142c1985ae3c", - "width": 70, - "x": -7210, - "y": 18620, - "zOrder": 12643467, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f32369d-057d-4e4d-8c4e-da4b613e3b4d", - "width": 70, - "x": -7140, - "y": 18620, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b12353c7-f20d-44d0-a5c7-d27910ab4242", - "width": 70, - "x": -7070, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9d65101e-93d3-467f-a32b-6fdb9e61a8b6", - "width": 70, - "x": -7000, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "655c2e48-1be4-4d9a-a139-cf756cd88247", - "width": 70, - "x": -6930, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a382ac6c-44eb-4114-a5b6-55c8f58c3cdc", - "width": 70, - "x": -6860, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5cb19bed-8ef6-4b75-9783-81ab6e5cff40", - "width": 70, - "x": -6790, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "beach_sand_1", - "persistentUuid": "8453de9c-a6d6-4a27-927c-48030ce2c2df", - "width": 700, - "x": -7910, - "y": 18480, - "zOrder": 12643468, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 840, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "ed3323bb-cf76-4c59-b8e9-1b8baa2fa18a", - "width": 70, - "x": -6720, - "y": 17780, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a63d59d-e43d-4751-bde2-3b92d2f61dc9", - "width": 70, - "x": -6720, - "y": 18620, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "name": "sand_2", - "persistentUuid": "ea4cd821-8e02-4235-ad7d-e0c6d181cea4", - "width": 350, - "x": -7070, - "y": 17780, - "zOrder": 12643469, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_2", - "persistentUuid": "7dfb4339-c831-4de2-b5c3-384bb8a38a82", - "width": 490, - "x": -7210, - "y": 18480, - "zOrder": 12643470, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e774fc00-6171-4bbe-8b3a-1e655ded2d64", - "width": 70, - "x": -6720, - "y": 17710, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00e41956-e6ba-499e-bae9-fd653585b9e1", - "width": 70, - "x": -6860, - "y": 17570, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcea7bdf-2481-43e5-a01c-f89153a9378f", - "width": 70, - "x": -7000, - "y": 17360, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d98ee9fa-a210-4903-bde7-6d0e9425e558", - "width": 70, - "x": -7070, - "y": 17150, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aff21ba1-4383-4d42-8b05-dfc1b4aa0d38", - "width": 70, - "x": -6790, - "y": 17710, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "fe0c03b4-1d40-4551-8c32-eb5b2f5fe8fa", - "width": 70, - "x": -6860, - "y": 17640, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "4ff60bb3-7ecd-420f-8cfb-9df856aa9da3", - "width": 70, - "x": -7000, - "y": 17430, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "beach_sand_2", - "persistentUuid": "497d1d83-0508-440d-8a73-8f96c077a60d", - "width": 70, - "x": -7070, - "y": 17220, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a42b480-f06e-4606-8397-ce773ab13a86", - "width": 70, - "x": -6930, - "y": 17570, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "sand_2", - "persistentUuid": "3ed307a1-002d-416f-97d9-cb2de96af2e7", - "width": 70, - "x": -7070, - "y": 17430, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_2", - "persistentUuid": "fd6528b1-3900-47e5-9240-6ce9914b2908", - "width": 70, - "x": -7000, - "y": 17640, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_2", - "persistentUuid": "7d130c06-9879-4ea4-a4e8-eba78e28788b", - "width": 70, - "x": -6930, - "y": 17640, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e500497b-bdbb-4d52-90ac-d524965b7d7c", - "width": 70, - "x": -7070, - "y": 17360, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "566536d3-c497-45ab-99c4-4737d460c095", - "width": 70, - "x": -7000, - "y": 17570, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "617790bc-3093-44d6-8f4e-cfa53707d94d", - "width": 70, - "x": -6860, - "y": 17710, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "0f75a9dc-160c-45d7-a39a-2679f6d5b3fa", - "width": 1050, - "x": -7070, - "y": 16380, - "zOrder": 12643472, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b1cb9f5-fee2-4c47-8cd5-14447f78871c", - "width": 70, - "x": -6160, - "y": 17080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b171ec9-f2f8-4067-98d1-b0f509453d95", - "width": 70, - "x": -6300, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5ed2346-3721-4e4a-b22e-1833895ac76d", - "width": 70, - "x": -6230, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aadbe79e-b9db-4b82-a899-39dcc7a18559", - "width": 70, - "x": -6440, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8723f613-d8fb-4c39-b981-581a92303ad7", - "width": 70, - "x": -6370, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "014fec03-a8ff-426c-bf9f-c0c247f5381c", - "width": 70, - "x": -6580, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3a3f656b-455f-455e-8834-999cecb3b746", - "width": 70, - "x": -6510, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03762107-4e9a-4909-ab02-86cf5bf2c4fb", - "width": 70, - "x": -6720, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13adc3f0-3f49-4f8e-a7d3-2b21e788b19f", - "width": 70, - "x": -6650, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "95f1b7a1-a599-4641-9f52-51f16b46ade8", - "width": 70, - "x": -6860, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e029d00f-9528-4029-b7c1-72d6f9e9e7ad", - "width": 70, - "x": -6790, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a371c961-d145-44e2-9535-8660cc19c6e5", - "width": 70, - "x": -6930, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c53f6ca1-198d-4b5e-89ee-739f20698d5a", - "width": 70, - "x": -7000, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6cb7f7d3-0698-479a-a8a1-5e04f124515f", - "width": 70, - "x": -6160, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bac197e6-2fac-4658-b0b1-f2f011d4da2e", - "width": 70, - "x": -6160, - "y": 17150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "be3a0e79-b0b2-44a2-85a2-9adb54125b80", - "width": 70, - "x": -6160, - "y": 17220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b63dcb42-f6eb-4967-a22e-0b362a9e1ac2", - "width": 70, - "x": -6160, - "y": 17290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4638698c-2925-4c9d-9fbb-c86247156c1f", - "width": 70, - "x": -6160, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41974193-0b75-41e0-96c0-f7f573b66c86", - "width": 70, - "x": -6160, - "y": 17430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3df60252-032a-4743-9b74-850b5c221830", - "width": 70, - "x": -6160, - "y": 17500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "242270fa-74a4-447c-9260-b446be7bd447", - "width": 70, - "x": -6160, - "y": 17570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ae35c55-dc22-46d8-979f-647a3d88605a", - "width": 70, - "x": -6160, - "y": 17640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e99892c5-f615-4fe6-b9a7-51d019f02afc", - "width": 70, - "x": -6160, - "y": 17710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f83f7012-5cfd-4d3d-8d7c-9ab65c1fa29f", - "width": 70, - "x": -6090, - "y": 17780, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92f9bb64-c7b1-4f6a-a639-a55818de20e5", - "width": 70, - "x": -6090, - "y": 17710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "5dc6fa2e-8ec0-4e59-955f-d8e92513960b", - "width": 70, - "x": -6090, - "y": 16800, - "zOrder": 12643473, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1fc5cd47-9cfe-467f-8fdf-17bc79720721", - "width": 70, - "x": -6090, - "y": 17850, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57ccae66-3958-4e8e-8678-0c4ad5bf28bf", - "width": 70, - "x": -7070, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a35d824-155f-415a-b79c-7e24ff546292", - "width": 70, - "x": -7070, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "Water", - "persistentUuid": "67e022a8-1ddf-4660-b9e6-cb2efde4873c", - "width": 840, - "x": -7000, - "y": 16870, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9800, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "66173c68-452d-490d-b059-0630696d1b07", - "width": 1260, - "x": 4760, - "y": 7490, - "zOrder": 12643474, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e4bfa92-4c67-4e73-9853-5cb28c55fe70", - "width": 70, - "x": -7070, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d65b92a-2998-49b9-83a1-f0c24f2b4e54", - "width": 70, - "x": -7070, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6860, - "layer": "", - "name": "sand_1", - "persistentUuid": "d276a827-9c7d-4d13-a7ed-bedd49c84c1b", - "width": 210, - "x": -8050, - "y": 8540, - "zOrder": 12643475, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "sand_1", - "persistentUuid": "4c7efd93-3705-40e5-836e-a462354c822e", - "width": 140, - "x": -6160, - "y": 8610, - "zOrder": 12643476, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c997480-0e40-4c70-8235-9a952e393e54", - "width": 70, - "x": -9870, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfb9a3d7-4045-405f-97a9-640f3dc1b469", - "width": 70, - "x": -9800, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8afff63-978d-42a4-be65-a4fa85bcd885", - "width": 70, - "x": -9590, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38501f07-5359-4292-86c8-9b07fe67fefb", - "width": 70, - "x": -9660, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36891e1d-e121-4f29-b8b3-35f13bb2b9a9", - "width": 70, - "x": -9730, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b5a5fae-87e6-473e-b09c-4694eaf51c7b", - "width": 70, - "x": -9520, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "277f2110-5e53-419c-8fbb-9b392f2be5a9", - "width": 70, - "x": -9450, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77f66f6a-5221-4027-bcb6-b9a1d19e81a0", - "width": 70, - "x": -9380, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7dc17f3-e543-426c-8c26-bcbcbd7ac09f", - "width": 70, - "x": -9310, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e87c23d9-1656-4ac3-9753-a539e412ffb9", - "width": 70, - "x": -9240, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19184887-f231-4ac1-9967-a1f82b5f1d1a", - "width": 70, - "x": -9660, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea0cf809-e35c-4255-ac22-038cc5c37c09", - "width": 70, - "x": -9450, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b0b266c2-c683-4832-bf5a-1eab25df6641", - "width": 70, - "x": -9380, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8d13ab8-5833-496a-aa17-78a2967d7706", - "width": 70, - "x": -9310, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e1d71d6-62a5-4c59-afe3-3edeffc12d3e", - "width": 70, - "x": -9240, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5901bd3f-a554-41dd-a0ac-cd97dbf3e23c", - "width": 70, - "x": -9590, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1deed8d2-f0fd-473c-89f9-a51bb5c49919", - "width": 70, - "x": -9520, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b7fb009-295a-49e0-ad7e-712ea8a9c724", - "width": 70, - "x": -9870, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f65c86c2-4878-4f59-85b6-0bdd0c6813a1", - "width": 70, - "x": -9800, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72b680ef-d407-414e-b567-8f9c3ba30624", - "width": 70, - "x": -9730, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1750, - "layer": "", - "name": "road_1", - "persistentUuid": "5e8605c6-d1ab-4946-96c2-fa0eb2d8806b", - "width": 70, - "x": 2800, - "y": 9590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "deffa7c0-2362-4349-8d39-38f349e9fc18", - "width": 70, - "x": 2520, - "y": 9870, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "dcc1e05f-57bf-4c11-8d03-969a4309b58e", - "width": 420, - "x": 2380, - "y": 9520, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4970, - "layer": "", - "name": "road", - "persistentUuid": "5ecb59d0-c34c-4abe-b6be-3e258e47434a", - "width": 70, - "x": 2730, - "y": 9590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4970, - "layer": "", - "name": "road", - "persistentUuid": "7df9d2c7-8356-445c-b1c6-a1da5eb62dab", - "width": 140, - "x": 2590, - "y": 9590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b5cf0113-01a5-4cd3-8b00-3e6f71e894ee", - "width": 70, - "x": 2800, - "y": 9520, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "road_1", - "persistentUuid": "f414c422-29bf-42c4-b35f-364f3017da94", - "width": 70, - "x": 2030, - "y": 9240, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 280, - "layer": "", - "name": "road_1", - "persistentUuid": "88614646-a2ca-48ee-be4d-fa4ee0cd52fa", - "width": 70, - "x": 2310, - "y": 9240, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e6ad7029-9d18-4ac9-a029-8996b43b0186", - "width": 70, - "x": 2310, - "y": 9520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "road", - "persistentUuid": "503eacc9-3207-43e7-aa69-46654342cae4", - "width": 140, - "x": 2100, - "y": 9170, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "road", - "persistentUuid": "4323a9c1-dfa6-4c90-9a51-3e3bfad0e58b", - "width": 70, - "x": 2240, - "y": 9170, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a88a6fde-1611-4e91-ae44-ed838c7b737e", - "width": 70, - "x": 2030, - "y": 9800, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "755b4c62-dae5-4e9c-acaa-84c85d58a0be", - "width": 420, - "x": 2100, - "y": 9800, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5ee2e821-87d0-4e60-af04-29d278c77c12", - "width": 70, - "x": 2520, - "y": 9800, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c284df70-3795-4a89-9918-a27097c5b449", - "width": 490, - "x": 2100, - "y": 9730, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "7379ba78-a14c-442c-bbb6-41c92a81d7fc", - "width": 490, - "x": 2100, - "y": 9590, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "11350731-d751-46d4-b888-356b0a4ae292", - "width": 1610, - "x": 2380, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0dbfcca3-0751-4378-ac7f-f9432ad2f414", - "width": 70, - "x": 2310, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3a793d17-aac2-4b13-b7e8-5d0db8aa4b9a", - "width": 70, - "x": 2030, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "e36c146d-647e-4a51-a28c-60a6aa95e12d", - "width": 1610, - "x": 2380, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "3c8aa9c9-b643-41a4-9784-7c319234b448", - "width": 1120, - "x": 2870, - "y": 14490, - "zOrder": 12643482, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3d7cd72f-9e2f-489a-af37-a72d4f569259", - "width": 70, - "x": 2520, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c98b5071-c886-43e5-a878-bfe41f833f88", - "width": 70, - "x": 2800, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "5627212d-ac54-4ae8-82a8-301f7cadfb56", - "width": 1330, - "x": 1190, - "y": 14350, - "zOrder": 12643483, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "3ca155e3-9658-4371-9596-d749422b62f8", - "width": 980, - "x": 2870, - "y": 14350, - "zOrder": 12643483, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "a8360158-2ce0-4708-ac13-fdf96ecffe1d", - "width": 1330, - "x": 1190, - "y": 14490, - "zOrder": 12643484, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "646eeadb-556c-4791-95da-b739c3858a24", - "width": 70, - "x": 700, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "af9b61ea-625f-45b8-8f6b-760883af7598", - "width": 70, - "x": 1120, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2bb2b689-955d-4fd8-848c-2c07d4f80f11", - "width": 70, - "x": 910, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "540426af-3ce7-4e34-aa62-4ff00a59a438", - "width": 70, - "x": 1050, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b95e7cdd-7995-4198-99f5-68aa84b83fc1", - "width": 70, - "x": 910, - "y": 14630, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "117a464e-6a45-4f4f-a550-a59dc94e2c77", - "width": 70, - "x": 770, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "98dfa310-4004-4e95-8a31-b502e60494f8", - "width": 70, - "x": 910, - "y": 14700, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d317825d-48e1-4839-b002-12d7b3af25b5", - "width": 70, - "x": 980, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e0ba0b65-7ac3-41af-96e5-495e256bf15d", - "width": 70, - "x": 840, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "sand_1", - "persistentUuid": "8109ac20-376a-4115-82bb-7a7e6f54c345", - "width": 70, - "x": 1190, - "y": 9380, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "f860c398-399e-4962-8682-84e2551ea854", - "width": 70, - "x": 630, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "b62b0064-7910-4d3c-8f00-489956c79e28", - "width": 280, - "x": -8050, - "y": 8470, - "zOrder": 12643486, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea21d1ce-7e5d-47f5-8c34-9e3b70044156", - "width": 70, - "x": -8120, - "y": 8400, - "zOrder": 12644, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e749d8e3-42db-4af7-bc82-78e3ed77da3b", - "width": 70, - "x": -8120, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "Water", - "persistentUuid": "e833e94b-98c0-48eb-9c9e-478db4eeb27a", - "width": 770, - "x": -6930, - "y": 17360, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "Water", - "persistentUuid": "6771c954-cf99-409c-b53b-80ea50dc4168", - "width": 700, - "x": -6790, - "y": 17570, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "name": "Water", - "persistentUuid": "f64ce44a-6e7b-48a6-85b3-56391983c7fc", - "width": 70, - "x": -8260, - "y": 17430, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Water", - "persistentUuid": "428a9e7e-6dd4-4c57-b75e-1057dfd20bd5", - "width": 140, - "x": -8190, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "Water", - "persistentUuid": "72c54e6f-2292-4661-9cca-6b413334a81f", - "width": 3010, - "x": -11550, - "y": 15470, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "Water", - "persistentUuid": "73bd6316-916c-4329-ab8b-c29491da6114", - "width": 1820, - "x": -9940, - "y": 7420, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "Water", - "persistentUuid": "a76ce4ec-120f-4472-b386-1083fd410968", - "width": 280, - "x": -8120, - "y": 7420, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "name": "Water", - "persistentUuid": "38fd4693-d24c-41bd-b668-2dd68d0a4aeb", - "width": 280, - "x": -3850, - "y": 3710, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "Water", - "persistentUuid": "13c0a2b2-58ed-4052-906b-30126b74f16c", - "width": 1330, - "x": 3430, - "y": 1050, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "Water", - "persistentUuid": "5cb168d7-0c57-40df-a8bf-77c324f5afdf", - "width": 70, - "x": -1330, - "y": -1960, - "zOrder": 0, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", - "width": 280, - "x": -2800, - "y": 3640, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Water_cover", - "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", - "width": 70, - "x": -2590, - "y": 3360, - "zOrder": 0, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", - "width": 210, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "25fb9619-1f9c-4f5b-89c7-51ae50950ca4", - "width": 4690, - "x": -1330, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "Water_cover", - "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 1, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", - "width": 210, - "x": -3780, - "y": 3640, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "a162b4ea-6173-46f9-a85a-61c71fc7a04e", - "width": 4270, - "x": -7840, - "y": 7420, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "d5d2c653-478d-42e4-a9af-50dc0464ee5f", - "width": 7420, - "x": -2730, - "y": 7420, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", - "width": 70, - "x": -350, - "y": 3430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", - "width": 70, - "x": 420, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", - "width": 70, - "x": 490, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", - "width": 70, - "x": 560, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "weapon_icons", - "persistentUuid": "e1f10fa7-78d4-4f19-91f7-1e2a6439f087", - "width": 0, - "x": 1170, - "y": 67, - "zOrder": 12643489, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "e042c5e2-efbb-49b7-a0b7-6c0b5792a3ef", - "width": 6090, - "x": -5320, - "y": 10780, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": true, - "name": "road", - "persistentUuid": "7739b9f8-f40c-4433-9291-3a8cba7d4f84", - "width": 6090, - "x": -5320, - "y": 12530, - "zOrder": 12643490, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "road", - "persistentUuid": "ac095ec6-7d39-468c-8c91-929d943d004c", - "width": 210, - "x": -2450, - "y": 10990, - "zOrder": 12643491, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "8155c9ca-6539-4956-bcdb-5d4e64ac3dff", - "width": 210, - "x": -1330, - "y": 9170, - "zOrder": 12643491, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "01e1d755-9d54-4a4e-a931-de6b46f8cc37", - "width": 1470, - "x": 1120, - "y": 11410, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "7d02376a-2279-4032-b27f-48cedca93877", - "width": 1260, - "x": 2800, - "y": 11410, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "1d447aa6-1573-4c33-82ae-44b0fed1b5f3", - "width": 910, - "x": 1120, - "y": 13020, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "af23a607-b48e-416b-8a5d-1988608a0ba5", - "width": 210, - "x": 1820, - "y": 12810, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "83571f1b-56a8-4377-8a3f-5b248b07910f", - "width": 770, - "x": 1820, - "y": 12600, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "fc793079-ff0a-45cc-afeb-84141ddb8fdc", - "width": 8960, - "x": -5110, - "y": 16870, - "zOrder": -9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0627fea-7cdc-4399-b342-0a39842f86e6", - "width": 70, - "x": -6160, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b5d067c-92e8-4c55-a203-886eeb423958", - "width": 70, - "x": -6160, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "94168488-5caf-486d-bbf1-1b94b9e1ed97", - "width": 70, - "x": -6160, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "name": "road", - "persistentUuid": "32ce0db4-cc1f-414e-956c-2f313f079a1b", - "width": 210, - "x": 840, - "y": 15050, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "name": "road", - "persistentUuid": "5ff25d77-0d7a-434d-baf1-7d7738b89e56", - "width": 210, - "x": -2940, - "y": 15050, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "1ff9ea21-751b-4b8f-a644-be48e933a6e8", - "width": 3010, - "x": 1050, - "y": 16170, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8303a4e7-1924-4f7e-bd7c-65b4cdd0f7d5", - "width": 3570, - "x": -2730, - "y": 15750, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "c450d767-8906-4290-ac8f-9b9c6cbdc436", - "width": 70, - "x": -1050, - "y": 9240, - "zOrder": 12643497, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "name": "sand_1", - "persistentUuid": "3e77b787-b584-4c5b-82d3-a87e9a1967ad", - "width": 70, - "x": -1470, - "y": 9380, - "zOrder": 12643498, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "680b7da9-bed1-4cd2-9b95-0c83fcd0a7ee", - "width": 1610, - "x": -980, - "y": 10640, - "zOrder": 12643499, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "0fa3e663-991e-4a46-8f71-2b7fae1f4c84", - "width": 3640, - "x": -5110, - "y": 10640, - "zOrder": 12643500, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "sand_1", - "persistentUuid": "889e97ba-d425-4216-afd1-76b70f76c949", - "width": 70, - "x": -2170, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "sand_1", - "persistentUuid": "8159bef8-1db5-44f4-82c2-94f834a4251e", - "width": 70, - "x": -2590, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "sand_1", - "persistentUuid": "e375491d-15ca-4eab-9ffa-d2d8dc97c427", - "width": 140, - "x": 1120, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "name": "sand_1", - "persistentUuid": "391b820e-b425-4753-a1c1-3331be9250da", - "width": 70, - "x": 1120, - "y": 16380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "name": "sand_1", - "persistentUuid": "d5c6f58d-da1e-44be-a5ef-00ad9a7c83e6", - "width": 70, - "x": 700, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "sand_1", - "persistentUuid": "495cb8c8-2881-49f3-8568-7561c2045a6c", - "width": 70, - "x": -3080, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "name": "sand_1", - "persistentUuid": "a25e8b82-3d6f-4a62-9632-256150bacb81", - "width": 70, - "x": -2660, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "sand_1", - "persistentUuid": "6feef300-cdbb-48cd-8a95-7e23ec495270", - "width": 70, - "x": -2660, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "sand_1", - "persistentUuid": "7f7d2cbd-8419-4b44-a7ff-b1988d247de2", - "width": 70, - "x": 700, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "100d31e7-7ea9-4568-b8f2-5ba3dfc328a3", - "width": 2520, - "x": -5110, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "cb430ccb-e8c2-4408-8d46-b799ddb79351", - "width": 2520, - "x": -5110, - "y": 12390, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "b15b6516-47aa-4322-9f76-99c821bce1ff", - "width": 2800, - "x": -2100, - "y": 12390, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "043a2f8e-03d2-4cca-97c8-ef419dba6cb9", - "width": 2730, - "x": -2100, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "b8c6512a-0aad-4012-922a-e65dd7e2d826", - "width": 5880, - "x": -5180, - "y": 12810, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "efc5152f-5ee6-4e0a-b26a-14fc7b1cba20", - "width": 3290, - "x": -2590, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "029e51c4-7bda-4a0a-a3ca-629b8a1f514d", - "width": 3290, - "x": -2590, - "y": 15680, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "55bd0d7e-7510-4c4c-8c64-aed20a865c4c", - "width": 2800, - "x": 1190, - "y": 16380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "0fc3d9c0-2e58-47e5-9f23-47c5627474b8", - "width": 2730, - "x": 1120, - "y": 16100, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "f6391ff6-b446-4707-8d9d-3094b577fdec", - "width": 910, - "x": 1190, - "y": 13230, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "6c203a6f-6d4a-4cf0-b4be-cc73b1572f4a", - "width": 770, - "x": 1750, - "y": 12530, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "69d90660-ff7d-485c-8630-9128f133fc90", - "width": 630, - "x": 1190, - "y": 12950, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "1d9a5193-2a62-4b5e-bca7-7889aeb11b04", - "width": 490, - "x": 2030, - "y": 12810, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "sand_1", - "persistentUuid": "06234479-56a4-4036-a7ec-23a8527fb605", - "width": 70, - "x": 1750, - "y": 12600, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "sand_1", - "persistentUuid": "41c48415-2c63-4a39-acb7-c3861ab15138", - "width": 70, - "x": 2030, - "y": 12880, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "23178177-fa57-4f36-a21f-771e960789bb", - "width": 1260, - "x": 1260, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "e9c3a6f0-c3c0-4f6c-9135-54efd8568518", - "width": 1260, - "x": 1260, - "y": 11270, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "18d33c01-88b8-4ef0-8caf-d1a80f92bef0", - "width": 980, - "x": 2870, - "y": 11270, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "0f8fdffc-9715-430d-be0f-2386de68805c", - "width": 980, - "x": 2870, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "b454dd12-7fd2-4ebb-bb12-7c8ac543bb0c", - "width": 560, - "x": 1960, - "y": 9870, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "eac27552-b212-4cdb-b1dd-40f81f4652e6", - "width": 560, - "x": 2380, - "y": 9450, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "sand_1", - "persistentUuid": "f105f9e7-148c-450a-9bc1-5cf5cf8ebd73", - "width": 70, - "x": 1960, - "y": 9380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "name": "sand_1", - "persistentUuid": "f7512d44-4060-420f-9400-e6114f96451c", - "width": 70, - "x": 2870, - "y": 9520, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "name": "sand_1", - "persistentUuid": "8ddab793-4fe0-4fdc-8840-8005edffeadc", - "width": 70, - "x": 2450, - "y": 9940, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand_1", - "persistentUuid": "d5cfb198-c20b-4cc5-9a09-e38aaf9cd10a", - "width": 70, - "x": 2380, - "y": 9380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "name": "sand_1", - "persistentUuid": "c6c5c95a-d065-493e-ae36-f4a47529b24f", - "width": 70, - "x": 2450, - "y": 11760, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2590, - "layer": "", - "name": "sand_1", - "persistentUuid": "94a052ef-083b-4a06-bacb-67f6f1791984", - "width": 70, - "x": 2870, - "y": 11760, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "def3d32b-ae60-4f7b-a986-2806231f00d2", - "width": 70, - "x": 2450, - "y": 12880, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "30abca1d-f46c-4c3d-a07a-8ff57691e021", - "width": 70, - "x": 2520, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "45a91d60-0368-45c9-af90-88a0c18ac7fd", - "width": 1330, - "x": 1190, - "y": 11340, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "51c78b04-7dc5-4172-8110-ba1f7b8155f9", - "width": 1330, - "x": 1190, - "y": 11620, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8235ed59-e314-432e-b90c-ca0f21e40daa", - "width": 70, - "x": 1120, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df45c1d3-bd7c-494f-b26c-c703637613dc", - "width": 70, - "x": 1120, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "road_1", - "persistentUuid": "6445f5fc-74aa-410e-a89e-005585ce3f46", - "width": 70, - "x": 2520, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1330, - "layer": "", - "name": "road_1", - "persistentUuid": "2cbd23ce-0b9d-4d39-ac57-7cafa688fe11", - "width": 70, - "x": 1120, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "name": "road_1", - "persistentUuid": "11bceeae-f109-4df6-a30e-836da82e7b67", - "width": 70, - "x": 2520, - "y": 12810, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1260, - "layer": "", - "name": "road_1", - "persistentUuid": "e7c201d9-9bbc-4298-8d7d-1029c361b470", - "width": 70, - "x": 1120, - "y": 13230, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "sand_1", - "persistentUuid": "cf8f6061-19f4-4c8c-8b1a-1e3061328ea9", - "width": 70, - "x": 1190, - "y": 13300, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "sand_1", - "persistentUuid": "f60c5850-db03-495e-ba61-29410d7aae04", - "width": 70, - "x": 1190, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "ccf8237f-b267-4862-9c69-455005c2b513", - "width": 1120, - "x": 2870, - "y": 11340, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "sand_1", - "persistentUuid": "c86ddc89-26ff-4b96-aac7-7edd5c42e03f", - "width": 140, - "x": 3850, - "y": 11690, - "zOrder": 12653, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "78c237ba-82fe-47bb-bf5b-39ba05a1b6ba", - "width": 1120, - "x": 2870, - "y": 11620, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a3a7b433-3b08-4782-b893-37a26e22d242", - "width": 70, - "x": 3990, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72c1dd4b-d3d5-4a33-b398-f6f4cb184864", - "width": 70, - "x": 3990, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "road_1", - "persistentUuid": "b1a39793-eb58-47dd-9b74-0f1000bdf0ae", - "width": 70, - "x": 3990, - "y": 11690, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2800, - "layer": "", - "name": "road_1", - "persistentUuid": "13c464b4-2016-45f7-b95f-e2c28cfdf14b", - "width": 70, - "x": 2800, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "458157e8-f8c0-4427-a471-9a082b8786a1", - "width": 70, - "x": 2800, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7874e2e1-dbda-4d91-bafd-21abe12903b9", - "width": 70, - "x": 2800, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ba6031e-e7ce-470b-bb9b-60f31708892a", - "width": 70, - "x": 700, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b24d2c75-4e68-427f-b0e8-7cfdb0ecd730", - "width": 70, - "x": 700, - "y": 12740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": true, - "name": "road_3", - "persistentUuid": "697f7d36-879d-48a3-a2cd-b973bedd6668", - "width": 2730, - "x": -5250, - "y": 12460, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "28614a52-d196-464c-92e2-a25b7d0b46e5", - "width": 70, - "x": -2520, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "d3c68258-5690-4a6c-bd4f-a2a5c130b51f", - "width": 70, - "x": -2240, - "y": 11060, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "05f35f85-30f7-415d-9cfe-9f50589c8f40", - "width": 70, - "x": -2240, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "40323d70-4ebd-490a-975c-9bb8c0e85812", - "width": 2870, - "x": -2170, - "y": 12460, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "60cd48bd-5dcc-4fd1-b8d9-ad0f5ed558be", - "width": 70, - "x": -2520, - "y": 11060, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "518cf787-4d5f-4a5b-b13f-80ff8c778b53", - "width": 5950, - "x": -5250, - "y": 12740, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1680, - "layer": "", - "name": "road_1", - "persistentUuid": "22b7f40d-787c-4940-a90e-a3f4a102526f", - "width": 70, - "x": -5320, - "y": 12810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "74ad8c95-75ce-40e6-b0bc-2d48b6bd31b0", - "width": 70, - "x": -5320, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e58b927b-78bd-45bd-8173-c090e9ac2f47", - "width": 70, - "x": -5320, - "y": 12740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "name": "road_1", - "persistentUuid": "6f97a09b-0300-4261-aa70-eadec8028cd4", - "width": 70, - "x": 700, - "y": 12810, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "d9673fd3-afce-412a-bd87-d4038d57cdf5", - "width": 70, - "x": 630, - "y": 12880, - "zOrder": 12643503, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "sand_1", - "persistentUuid": "5d62e308-04da-4abc-809f-7c1046d2e562", - "width": 140, - "x": -5250, - "y": 12810, - "zOrder": 12643504, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "sand_1", - "persistentUuid": "45c485fb-ae86-42b8-89b3-9643f082ce12", - "width": 140, - "x": -5250, - "y": 11060, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "fc74767c-a2d4-4de5-acf4-6ebe4e8a97e3", - "width": 3850, - "x": -5250, - "y": 10710, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "806e57a1-c9c9-47fa-9b1e-8ba59201db9e", - "width": 2730, - "x": -5250, - "y": 10990, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2e9ef84f-551e-4daa-9bb1-0734e3dd1ac3", - "width": 70, - "x": -5320, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1dc5e481-e27f-4676-8787-0c0c5d785e1f", - "width": 70, - "x": -5320, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "cd0647a8-1424-4fab-9fdf-bfb58c16c12b", - "width": 70, - "x": -5320, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "sand_1", - "persistentUuid": "dd86a73c-5865-4145-9bfa-7879ec72d01a", - "width": 1610, - "x": -980, - "y": 9240, - "zOrder": 12643499, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ba8fbef-4939-41a3-855c-9db9e1882971", - "width": 70, - "x": -1400, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0c332993-2c9e-4b57-8ea8-c0b0298ff609", - "width": 70, - "x": -1120, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "90b49373-9a24-41ac-93df-77c0319cdf8c", - "width": 1750, - "x": -1050, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "333b6627-597c-4e87-a3b3-3030455ee9b4", - "width": 70, - "x": -1120, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "42a40bef-22e1-44d8-8811-36d7efa782ad", - "width": 70, - "x": -1400, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "0e230f4f-d9fe-4307-8dad-b09906dc4cc1", - "width": 1750, - "x": -1050, - "y": 10710, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "67c83955-b672-46db-9dc0-e68f2b8ee264", - "width": 70, - "x": -1120, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a200e738-bffc-4e3c-9555-030fd1b892a1", - "width": 70, - "x": -1400, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "155a836e-f6f9-4226-81dc-911c3f72043c", - "width": 70, - "x": -2520, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a4ddde41-2fa5-4d7d-8e23-c30a9622e3c8", - "width": 70, - "x": -2240, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "e8c04fb4-d4b5-4099-852d-7a45ce971407", - "width": 2870, - "x": -2170, - "y": 10990, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "name": "sand_1", - "persistentUuid": "8e3ab075-aace-4777-842d-08b0de9a4fa5", - "width": 70, - "x": 630, - "y": 11060, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "d462c8bb-768c-4d50-9fc3-1bff4c24bf66", - "width": 70, - "x": 700, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0789b801-08ab-4ddd-9a29-e00b3cdf6c29", - "width": 70, - "x": 700, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a7c22db9-2473-474c-b18e-c4cb4c3b9323", - "width": 70, - "x": 700, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4317c0e2-9ee0-4cc8-8b85-3f489122c4a6", - "width": 70, - "x": 2520, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "32795d5e-edeb-4cf2-a0a5-8f22dddf8d23", - "width": 3430, - "x": -2660, - "y": 15120, - "zOrder": 12643505, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "3cd12a2b-e740-48be-b41d-1c741b26eb69", - "width": 3430, - "x": -2660, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "91bb979c-64f1-447a-bc6c-95904f0bdf23", - "width": 2870, - "x": 1120, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4f127d75-c8d4-40af-a750-f42fea8ce736", - "width": 70, - "x": 770, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "name": "road_1", - "persistentUuid": "b0cd93bd-5296-4d7f-a2bd-b14877cf8c7d", - "width": 70, - "x": 770, - "y": 15120, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1050, - "layer": "", - "name": "road_1", - "persistentUuid": "46c25684-cac3-4f22-b6a9-f1f9753528af", - "width": 70, - "x": 1050, - "y": 15120, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c47e4417-f8b5-40a6-976c-d1856521ba06", - "width": 70, - "x": 1050, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 910, - "layer": "", - "name": "road_1", - "persistentUuid": "888f8e83-60ae-4e7a-aa75-7fe2b5d7a3d4", - "width": 70, - "x": 1050, - "y": 16380, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bd636162-e35b-4a4b-8b20-8bd1b653f979", - "width": 70, - "x": -3010, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "43c7730f-ee88-4f4b-a447-27831619489f", - "width": 70, - "x": -2730, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "road_1", - "persistentUuid": "f8656434-afd2-4e26-ac74-a5f389adc73f", - "width": 70, - "x": -2730, - "y": 15120, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1330, - "layer": "", - "name": "road_1", - "persistentUuid": "3c45318e-aabc-4308-91b7-72866502b59a", - "width": 70, - "x": -2730, - "y": 15960, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b2ac814d-9d58-408c-99cb-3a96dd88b079", - "width": 70, - "x": -3010, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0aebc34f-f57d-49b8-ace1-4c66383e19e3", - "width": 70, - "x": -2730, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2170, - "layer": "", - "name": "road_1", - "persistentUuid": "c3d651bb-cb47-41d0-bb97-0e20a0e4055e", - "width": 70, - "x": -3010, - "y": 15120, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "name": "road_1", - "persistentUuid": "94f6d611-0c34-4576-9f48-5c60406c87c9", - "width": 70, - "x": 770, - "y": 15960, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "93216ae2-e31d-4cd9-a600-f7098703fc3f", - "width": 2870, - "x": 1120, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "affba3c2-0216-455a-bf71-8a13e85ca9be", - "width": 70, - "x": 1050, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2e3d3f6e-0d02-4fc3-bed3-ef653b88c3ab", - "width": 70, - "x": 770, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "7a444b43-f10b-4db5-8fe5-a6a9bac2fd42", - "width": 3430, - "x": -2660, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "efdc01e4-4458-42d1-b446-38f6fce27e8c", - "width": 2730, - "x": 1120, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "road_1", - "persistentUuid": "a21324af-7c49-47b1-aa07-8dbda8b3cdff", - "width": 70, - "x": 3990, - "y": 16380, - "zOrder": 12643506, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "sand_1", - "persistentUuid": "9edf2270-3192-45ab-979d-99942c38f406", - "width": 140, - "x": 3850, - "y": 16450, - "zOrder": 12643507, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "a61e7474-ecbd-4d16-a9b4-9a95394d5466", - "width": 2870, - "x": 1120, - "y": 15120, - "zOrder": 12643508, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "Water_cover", - "persistentUuid": "ca4cc295-0a29-40b7-aa4b-f60c44c9dbe0", - "width": 70, - "x": -7840, - "y": 7490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "91918661-454f-4dc5-986d-2fc8521d210d", - "width": 280, - "x": -8120, - "y": 8400, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "a2014203-7646-4310-9324-0874933e6f12", - "width": 1820, - "x": -9940, - "y": 8470, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6930, - "layer": "", - "name": "Water_cover", - "persistentUuid": "f0470224-ca40-44f1-8cd2-c12ab632b71b", - "width": 70, - "x": -9940, - "y": 8540, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "89ca0126-d1ea-45ca-9305-f7b25ffec068", - "width": 1330, - "x": -9870, - "y": 15400, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "name": "Water_cover", - "persistentUuid": "7de26ef2-d9f1-46a7-b67f-a16928abc8a9", - "width": 70, - "x": -8540, - "y": 15470, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "ba6d0a70-2cd7-4ddf-97ad-4a96cf9bd639", - "width": 280, - "x": -8470, - "y": 17360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "Water_cover", - "persistentUuid": "4a10ae1d-ef5d-457e-bc29-aa21c3eb278c", - "width": 70, - "x": -8190, - "y": 17430, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "5dc37b91-60e5-41b7-a25b-26fbad617906", - "width": 70, - "x": -8120, - "y": 17780, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Water_cover", - "persistentUuid": "0c5371e9-8cd6-4c6f-853b-c1249749f08e", - "width": 70, - "x": -8050, - "y": 17850, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "cd597e62-657b-42b2-ad66-208786adabd7", - "width": 210, - "x": -8260, - "y": 18130, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "name": "Water_cover", - "persistentUuid": "0b9427c7-02dd-48b4-858e-55736618dee3", - "width": 70, - "x": -8260, - "y": 18200, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "b950b47e-87b0-4d62-8078-5426931f1f3e", - "width": 1050, - "x": -8190, - "y": 18760, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "d75ce23c-4176-4562-a54f-bc29742af4ac", - "width": 980, - "x": -7070, - "y": 16800, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "Water_cover", - "persistentUuid": "54e22422-721d-4208-9a2a-810ebfd76269", - "width": 70, - "x": -6160, - "y": 16870, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "Water_cover", - "persistentUuid": "7bb6dabe-907d-4c1a-8b97-723f2c877b67", - "width": 70, - "x": -7070, - "y": 16870, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "Water_cover", - "persistentUuid": "58184660-68ce-4ad8-b063-6f0c503fcc9d", - "width": 70, - "x": -7000, - "y": 17360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "866039b3-056a-48bc-9718-be63aac5d200", - "width": 210, - "x": -7000, - "y": 17570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "road_2", - "persistentUuid": "f66efa8d-6271-4cdd-9288-3f2ceb550566", - "width": 70, - "x": -5600, - "y": 14980, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "name": "road_2", - "persistentUuid": "f4c6f185-ddf7-4f54-9fea-e7cd807d68fa", - "width": 70, - "x": -5600, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "56d0b0db-eef9-41a3-8bfa-8f911f1fc488", - "width": 70, - "x": -5600, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "017fd4a3-562e-493d-afa4-caf0e9818275", - "width": 70, - "x": -5600, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c79e71f-2ea3-45cc-a8a4-f0431ad2ae23", - "width": 70, - "x": -5320, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "name": "road_2", - "persistentUuid": "38375a04-6cf9-49f8-8d6c-1ff13b4ee969", - "width": 70, - "x": -980, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1cdec8c-d45e-4e1e-aa61-734fde443c4c", - "width": 70, - "x": -1120, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7c0934a8-c7f6-4a84-89a1-b66d66dacacc", - "width": 70, - "x": -840, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2ae85f20-15c8-4158-9d41-dc2009f2b251", - "width": 70, - "x": -980, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "68089a35-ee6f-4426-bb81-99b8dbd2282a", - "width": 70, - "x": -910, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a00fcaf5-5d21-4dd5-8ab9-4d9d98a98dab", - "width": 70, - "x": -1050, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "187c724f-8d7a-4597-8177-8c39dc4a75a9", - "width": 70, - "x": -980, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a2b48ff0-e6f9-4d4d-9a44-104b43091777", - "width": 70, - "x": -980, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "road", - "persistentUuid": "8a28a609-1610-4f74-9935-aa158a4f500d", - "width": 210, - "x": -1190, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2590, - "layer": "", - "name": "road", - "persistentUuid": "60c06c14-b0fd-4140-a187-94737fa9b6a5", - "width": 210, - "x": -910, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "ad135c01-14b4-411a-a2a0-a307991305c8", - "width": 3290, - "x": -770, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "road", - "persistentUuid": "a43090c2-daed-4908-afb4-e4956ba18128", - "width": 210, - "x": 1190, - "y": 17640, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "8b6f33e8-7da8-47ef-8769-c22c0f30f379", - "width": 70, - "x": 1400, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "dced9197-6e09-4780-bb66-a07151536cc4", - "width": 1890, - "x": -700, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "b2a4df06-2006-4a95-94a9-e3dad7817974", - "width": 1610, - "x": 1400, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "road", - "persistentUuid": "cea98b7c-09d1-42d1-ac78-21009087ed17", - "width": 210, - "x": 3010, - "y": 17640, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "a8ee8f4e-2c41-4743-80ed-4aee747e577d", - "width": 70, - "x": 2940, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "99b631cf-7f19-4f97-a52b-a933f1f4b9f1", - "width": 70, - "x": 3220, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "a9d503cd-39e7-4092-9113-2f5d24d6e6a0", - "width": 2660, - "x": 3220, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "5f481de1-3666-4c77-a62e-02a94e85b418", - "width": 1260, - "x": 4480, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b122042b-567d-4bb6-9d65-8ce953e2199d", - "width": 70, - "x": 4410, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "072473c4-00eb-4212-bfc8-61d35adea2ae", - "width": 70, - "x": 4340, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "2db86430-dd30-46a7-a0c8-7da436079b67", - "width": 1540, - "x": 4620, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ceb57880-0b3a-4a53-ab10-c133343067fa", - "width": 70, - "x": 4550, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "634f99dc-ca8e-4901-a302-18cabf4eabe4", - "width": 70, - "x": 6160, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9bfaa3b9-deef-4a97-9918-3cf7ab0aa35b", - "width": 70, - "x": 5880, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "87a7ca73-0898-47e6-8b90-8b25e4f3d7f7", - "width": 210, - "x": 5950, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ac98c29c-4b7f-470d-b73d-b9d4493985ae", - "width": 70, - "x": 5740, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7008b2d4-be1a-4c29-902a-8d240b789c76", - "width": 70, - "x": 5810, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "635b3c92-c0b7-4fa3-b88b-3c815974e7bb", - "width": 70, - "x": 5880, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "name": "road_2", - "persistentUuid": "93a4e9ee-0392-490c-89fe-ae1aba80c84f", - "width": 70, - "x": 5880, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "33ec0878-1ab4-4cb4-832b-367481db9d1e", - "width": 70, - "x": 5880, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 5950, - "layer": "", - "name": "road_1", - "persistentUuid": "0b689b22-56d0-4ce0-9f26-d86ba89a8dbc", - "width": 70, - "x": 6160, - "y": 17360, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2170, - "layer": "", - "name": "road", - "persistentUuid": "5d23e693-b55e-4f44-9f02-a673adc27069", - "width": 210, - "x": -5530, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "43339b0e-d69a-4828-b2f4-4d37812a6614", - "width": 70, - "x": -700, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d7fa8444-5094-4dfc-b293-0cb20fe3f7fb", - "width": 70, - "x": -1260, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "9f8fe1cc-1013-4308-85f7-47b804ce5f19", - "width": 1750, - "x": -630, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fe73ceab-5a37-492e-acce-6dc14f7940d1", - "width": 70, - "x": 1400, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d60259b3-643a-4bc1-a421-9e6c4da77515", - "width": 70, - "x": 1120, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "482aa9a9-ef64-4830-a501-b701393e5e93", - "width": 1470, - "x": 1470, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "42007926-9902-4f8c-ac80-13d840f8dbe5", - "width": 2310, - "x": 3290, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "road", - "persistentUuid": "e684e364-aede-4dae-baa6-02138ab3119f", - "width": 210, - "x": 5670, - "y": 17850, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "name": "road", - "persistentUuid": "77cde4b7-96e3-4439-814e-f482ab12aa64", - "width": 210, - "x": 5950, - "y": 17780, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "1796961d-e242-4b16-901d-c4f10053130e", - "width": 70, - "x": 5600, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a9f55f07-6018-486a-91fb-e29425786a8c", - "width": 70, - "x": 3220, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f2065fb-2836-4b50-8250-90ead2c749f1", - "width": 70, - "x": 2940, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "04b044f5-d9a0-4ff8-8d54-a13429efe8e3", - "width": 70, - "x": 5600, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "be79a9b9-620c-49a9-a66e-73b465e197ec", - "width": 2170, - "x": -630, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "6e67896a-e19c-4c3f-b53b-9caa1f24633c", - "width": 1470, - "x": 1470, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "6b566e0d-d2d2-41c1-bee1-bba2c51e8112", - "width": 4270, - "x": 1400, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "e2c1bc46-0ae6-4afb-8e10-7decd38ff1c2", - "width": 1750, - "x": 1330, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "aebc81bd-14f2-4d70-b779-f2e79a17caa0", - "width": 2310, - "x": 3290, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "1594c083-8a1c-46aa-ac38-3d90c033c661", - "width": 1750, - "x": -630, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "87402300-52c2-43d6-9fea-4315f62af3e0", - "width": 70, - "x": 1120, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "6f672300-8d30-4028-8d8f-55e845aa7d4a", - "width": 70, - "x": -1260, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "2e062214-5d69-4156-9896-7e3237dc13a7", - "width": 70, - "x": -700, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "13a787b8-505a-4245-bf6a-ca303b62e31b", - "width": 1890, - "x": -770, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dc049b6f-947e-4142-9278-61a5f79b5a75", - "width": 70, - "x": -840, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "53fe552b-819b-4ae6-b6e5-ccecd12166c9", - "width": 70, - "x": -980, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "400df026-4fba-470b-bbb4-c6f9e07d6dce", - "width": 70, - "x": -980, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "11cad365-d6aa-4000-9894-eb34d4235de5", - "width": 2100, - "x": -700, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "debb6737-f2dd-4dd3-a520-b6a46bb6cea3", - "width": 2030, - "x": -700, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7c190ad4-d4fe-414b-a834-91c8a65a94c9", - "width": 70, - "x": -980, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2730, - "layer": "", - "name": "road_1", - "persistentUuid": "a514dba9-3925-4768-a392-437db143d1ea", - "width": 70, - "x": -700, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road", - "persistentUuid": "118a35e5-0cbb-4551-b5a3-1550a1440f31", - "width": 210, - "x": -910, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "name": "road_2", - "persistentUuid": "2960bace-e55d-4e9c-9240-5a6131078a00", - "width": 70, - "x": -980, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "58c4f5ed-e866-46cb-bf74-b1e327c3ff17", - "width": 1330, - "x": 1540, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "3704d8c4-0649-4c84-9946-7398ee97d6eb", - "width": 2240, - "x": 3360, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "name": "road", - "persistentUuid": "90b3fc4b-987d-441c-a742-15d3fa409a03", - "width": 140, - "x": 2940, - "y": 20510, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road", - "persistentUuid": "6fed4323-c66b-4242-8640-d55dc966de6d", - "width": 140, - "x": 3150, - "y": 20300, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "9f07faa8-353a-44e3-a02a-d755827fe55b", - "width": 1470, - "x": 1470, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b36d850-3e5e-4ee7-94d6-18cc2805692c", - "width": 70, - "x": 1260, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fd9206ca-6485-46ae-aa4a-b9227f47be21", - "width": 70, - "x": 1400, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "da3d0e56-2c3d-4f17-87de-58e62693c706", - "width": 70, - "x": 1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "name": "road_2", - "persistentUuid": "97ec23a8-09ab-48a8-8a7e-a36e35262c4a", - "width": 70, - "x": 3080, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 980, - "layer": "", - "name": "road_1", - "persistentUuid": "f1154345-e0f7-43f3-88fe-d41f9b1c3ffd", - "width": 70, - "x": 3290, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2730, - "layer": "", - "name": "road_1", - "persistentUuid": "be7cd826-0d6a-45b8-9dba-38ef21f2d479", - "width": 70, - "x": 2870, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "09f2b7ac-493a-4a3f-82a4-ce153b8e5c6b", - "width": 70, - "x": 3080, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "83bdb520-8e1a-413f-a275-6f900215281c", - "width": 70, - "x": 2940, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec755d74-8055-45d5-a473-9221f9670cdd", - "width": 70, - "x": 3220, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bbbc09d2-5d97-4cc0-acd5-ae3fc32856f9", - "width": 70, - "x": 3080, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "8ba268c0-9aae-4506-ae10-e2b10602e845", - "width": 2450, - "x": 3290, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8942069f-de78-4a73-b6d6-3c910384a2fd", - "width": 2380, - "x": 3290, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road", - "persistentUuid": "9883f5d0-cab2-4839-b486-492bed46e31e", - "width": 210, - "x": 5670, - "y": 20300, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "ef8dd07e-dd05-4188-a68a-aa8cc06b43d2", - "width": 1470, - "x": 1470, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "7d2c4612-4dab-4f1c-b4d7-5b228227e56d", - "width": 1750, - "x": 1330, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "9aa32591-0105-4651-89d9-c1a5889b95ac", - "width": 1330, - "x": 1540, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "5cd1e6c0-0c33-4000-a92e-0f4a606b8769", - "width": 1470, - "x": 1470, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8078bbf3-4885-4b1d-8470-b1037e623d6d", - "width": 70, - "x": 1260, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ac04604b-3346-479d-9c57-f0e25986c583", - "width": 70, - "x": 1400, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f7d08fef-2fb2-4345-b93b-140bda76f743", - "width": 70, - "x": 1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "639b217d-d36f-40ad-b118-a730c6b7adbe", - "width": 70, - "x": 3080, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8c19b55e-ab5c-49a7-9c44-0f6b21ae5658", - "width": 70, - "x": 2940, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "46d4ec0a-d835-4852-8fd4-d630db94fc1f", - "width": 70, - "x": 3080, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "66f91587-9dcb-4905-bf01-4e7a85c5bcaf", - "width": 1470, - "x": 1400, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "e510282f-30a2-4742-8019-3ae18739779a", - "width": 1820, - "x": 1260, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "a2e75508-f0b8-4d66-9843-58ecdc402415", - "width": 1400, - "x": 1470, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "86884d0e-f721-4689-9812-1c8c64703157", - "width": 3710, - "x": -770, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e3ccd255-b5b2-4306-ba2d-6d4d779358fa", - "width": 70, - "x": 3080, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0a29acb8-2fdd-4039-a100-f122c123ced9", - "width": 70, - "x": 2940, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7438f78-854b-4410-b146-dc8418a8f7ea", - "width": 70, - "x": 3080, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "40189ef5-d498-40fd-b30c-1401c53ff51d", - "width": 2170, - "x": -630, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "643b6c04-ffa0-4f62-9c56-7ec93313f3c6", - "width": 1750, - "x": 1330, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "be4fe5a8-a0d9-42a9-9ddd-a13b3408b5e2", - "width": 2100, - "x": -770, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "04e218dd-4531-4b61-b281-af7c37581889", - "width": 2030, - "x": -770, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "225eb31f-5dc9-43a4-895f-a9bcb55f7230", - "width": 4270, - "x": -5390, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "9d3fd818-db99-45f1-a874-7225228000b5", - "width": 2030, - "x": -630, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99948f85-5ef5-4a9c-8dc6-fcaad71d1e75", - "width": 70, - "x": -980, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aad3b412-ea31-40a5-8760-fb2108198fe1", - "width": 70, - "x": -980, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed7a9a0b-4446-4932-8843-2b9f42679e8f", - "width": 70, - "x": -840, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "62a2c4cb-6d66-49ab-9b58-2c90827227d4", - "width": 70, - "x": 3080, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "name": "road_2", - "persistentUuid": "96b4117b-95a0-4893-9a59-f5b7561f8dea", - "width": 70, - "x": 3080, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "23ea7eb7-ce07-4f19-ab90-37baf75ab4a8", - "width": 70, - "x": 3290, - "y": 21910, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "c787fd2f-d7e0-4a78-a877-5c800ab37e23", - "width": 2380, - "x": 3290, - "y": 21630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "91f0b421-bc25-4144-9712-8e65b14fa06c", - "width": 2240, - "x": 3360, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "3625e093-2c18-4334-b53d-30f7762544cf", - "width": 2240, - "x": 3360, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "875738d7-b699-4cb8-97e0-1c628eccced0", - "width": 70, - "x": 3220, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "87025c7b-9dbe-4558-9978-71409382d495", - "width": 2450, - "x": 3290, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "b8f76040-4573-4a6b-a6b7-9914185f4892", - "width": 2730, - "x": 3150, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "f2465aad-7151-4dcd-815a-f117f3e7ad16", - "width": 2730, - "x": 3150, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "11515d34-6cf1-43d3-b447-427a62594d86", - "width": 140, - "x": 3150, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "road", - "persistentUuid": "bde90f2b-73e2-449e-b737-5d505230b4e2", - "width": 140, - "x": 2940, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2660, - "layer": "", - "name": "road_1", - "persistentUuid": "3544c9a4-4de3-46a1-8d56-ae8e2cc37fe9", - "width": 70, - "x": 2870, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "649c3784-1e1c-4a69-aace-3747f7a7d998", - "width": 70, - "x": 3290, - "y": 23940, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "road_1", - "persistentUuid": "3a243a71-55c6-4838-b8e4-c106b9fd0165", - "width": 70, - "x": 5600, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "name": "road_1", - "persistentUuid": "a4afa0ee-3b17-4861-8572-daf3504f81af", - "width": 70, - "x": 5600, - "y": 21910, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "569e4e42-f297-4ded-ac0a-ec3b0a069290", - "width": 12040, - "x": 5950, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "name": "road_2", - "persistentUuid": "5f794691-f090-4bea-bba8-096f17db9952", - "width": 70, - "x": 5880, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "96b4c31c-3a29-406e-a0a4-56a0562215ed", - "width": 70, - "x": 5880, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8adcedd7-89ae-445b-928a-b944c0423024", - "width": 70, - "x": 5740, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ea2a9d1-5907-4f4a-a521-22ba39950530", - "width": 70, - "x": 5880, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99fbd0a7-8873-41e1-b2d3-b18fee226282", - "width": 70, - "x": 5880, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d1d12927-f5db-448c-80fe-25d080733249", - "width": 70, - "x": 5880, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d1ee021f-879f-4921-8c78-f52e62009afb", - "width": 70, - "x": 5740, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "536683d7-994e-4e81-a359-f59aeca74b63", - "width": 70, - "x": 5880, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "name": "road_2", - "persistentUuid": "f46935e1-424b-4c3a-81b4-3c064f44b818", - "width": 70, - "x": 5880, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3f46b7d2-eb10-454e-a9fb-feb9730ee1be", - "width": 70, - "x": 5880, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8c7bfb21-c217-4818-82da-e332a4d4f5a7", - "width": 12040, - "x": 5950, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "d04c50b3-d0ca-4da1-a585-c962edc03d22", - "width": 11760, - "x": 6230, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "349ef3ae-6902-4bd2-bcbd-e20b58cba5fa", - "width": 11970, - "x": 6020, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "a1afbf1b-aa2a-4a05-bf2f-e5e1094a9768", - "width": 11760, - "x": 6230, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "5629e394-60ac-46ba-b940-ad5fdc05cdc1", - "width": 210, - "x": 5670, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "road", - "persistentUuid": "6771f524-4b6d-4e43-8500-85bdb178c643", - "width": 210, - "x": 5950, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "road_1", - "persistentUuid": "c7b4895e-4ab3-486b-9b7a-a92d75abfdd7", - "width": 70, - "x": 5600, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "4a561fba-ee16-40aa-b86b-a28258948256", - "width": 70, - "x": 6160, - "y": 23940, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "be04183c-ace9-43f7-879b-b772ac7d95a2", - "width": 70, - "x": 6160, - "y": 25970, - "zOrder": 12643509, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "236f15ed-edf6-43c1-9d52-e06f943ef3c0", - "width": 70, - "x": 5880, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "8fcadf3b-10cc-4b89-a15f-7e8af3ca9cf0", - "width": 2870, - "x": 3290, - "y": 25760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "b61c5fcc-7ca6-46a7-b700-c52ac4d1fa73", - "width": 2730, - "x": 3150, - "y": 25480, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba8a5b7d-6dcb-4982-9af1-4ac1b148f34f", - "width": 70, - "x": 5880, - "y": 25550, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "570a80b9-05c1-4cdd-b8dd-6597ff75f326", - "width": 70, - "x": 5740, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "9b70438d-7f14-47da-9bc8-30d02a880e05", - "width": 2450, - "x": 3290, - "y": 25690, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "4b20b0e4-3a1d-4bad-8fb7-b90fd556239f", - "width": 2240, - "x": 3360, - "y": 25410, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 980, - "layer": "", - "name": "road_1", - "persistentUuid": "633e7dc2-4c44-4f8c-8f68-4df5c31b5662", - "width": 70, - "x": 3290, - "y": 26040, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "80eaa856-7513-4d3e-a6b9-1dabdc3059d5", - "width": 70, - "x": 3080, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "77f911f4-ae4d-4583-b718-59ef7b0a64b5", - "width": 2800, - "x": 3360, - "y": 25970, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "road", - "persistentUuid": "a3125ec4-fd6c-45ed-a6ee-6a1b6f4a2743", - "width": 140, - "x": 3150, - "y": 25760, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0c540e86-d488-4e3d-9f43-f97bfe065714", - "width": 70, - "x": 3080, - "y": 25550, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5e871efe-014d-431a-b97f-f67ceeca4805", - "width": 70, - "x": 3080, - "y": 25830, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "name": "road_2", - "persistentUuid": "eced79e2-4a23-4a51-b602-217d7bcfec1c", - "width": 70, - "x": 3080, - "y": 25900, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8522bac6-206d-471f-8d81-039a1f37eb0c", - "width": 70, - "x": 3220, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "26989467-8f4e-41ff-a3c1-ca9053174cfd", - "width": 70, - "x": 3290, - "y": 27020, - "zOrder": 12643509, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b4ca7b9c-35bb-4c96-9832-eac7b75dcb3a", - "width": 70, - "x": 3080, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5e10212f-c3fa-4d04-a591-8521d98ff5c7", - "width": 70, - "x": 3080, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "09e15789-1608-40cb-8ea3-c424cfa7b9e8", - "width": 70, - "x": 2940, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "c92c082c-66b9-496e-9140-ce1dd0cbea77", - "width": 2450, - "x": 490, - "y": 26810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "name": "road", - "persistentUuid": "6d9eef7e-5459-4559-8ee7-c2e43e0eb0fd", - "width": 210, - "x": -910, - "y": 23940, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2660, - "layer": "", - "name": "road_1", - "persistentUuid": "af3abdc3-87a0-43b5-8cfb-0256e0ec7f92", - "width": 70, - "x": -700, - "y": 23940, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "916161df-5ab8-4bb4-85f5-86725b44ae66", - "width": 70, - "x": -980, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "name": "road_2", - "persistentUuid": "984d0cb7-e3d6-48a3-9122-68462627a64b", - "width": 70, - "x": -980, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "0075ca37-5c72-44fe-b20c-b9e3057ef0ce", - "width": 140, - "x": -910, - "y": 23380, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "road", - "persistentUuid": "b98e1d3a-8400-40c4-98dd-663d01115d65", - "width": 140, - "x": -910, - "y": 23660, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "89333ccf-6a14-44b1-98f8-bf21c68a736e", - "width": 70, - "x": -770, - "y": 23870, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "5e54b4e1-35dc-4968-b568-1e1b941531f7", - "width": 2030, - "x": 1050, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "fb95be39-b38d-49e3-935b-36a29a6ce9df", - "width": 1890, - "x": 1260, - "y": 26880, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "823794b2-2b1b-4c80-8cab-e9e717ea02b1", - "width": 2800, - "x": 490, - "y": 27020, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "6dc0beab-a06e-4242-949a-0e1db829cc6b", - "width": 3500, - "x": -630, - "y": 26600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "547e2e74-c32e-48e3-bce4-cdaed0878161", - "width": 1750, - "x": -700, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "e84e1171-fc5a-408b-b613-e8fb20863bcb", - "width": 2240, - "x": -980, - "y": 26880, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5ba5c11b-5af2-42ba-858b-df8836e5f755", - "width": 70, - "x": -980, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fea729cd-3e5d-4668-87d5-7ea64787000d", - "width": 70, - "x": -980, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "19acdfa2-1c9e-46f4-bcd6-c86d328ec75e", - "width": 70, - "x": -840, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "3e6e76b6-7e5e-4852-bebd-0f016881b38c", - "width": 1260, - "x": -770, - "y": 26810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6230, - "layer": "", - "name": "road", - "persistentUuid": "3376c395-e769-4d71-af8e-6eaeb686b273", - "width": 210, - "x": -5810, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "55295248-21b6-4d06-a962-10d49f3bc115", - "width": 1680, - "x": -1190, - "y": 27020, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c4fc6471-be51-4cc8-9f2b-aea088580182", - "width": 70, - "x": 1190, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a714169e-eae2-4fd6-a8e4-2d1d33f1124c", - "width": 70, - "x": 1330, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e759c2ab-a28b-47a1-a0e5-dc294d8db8b1", - "width": 70, - "x": 3080, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ebfef3e3-4300-4986-80cc-a1f996277899", - "width": 70, - "x": 3010, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fe56a723-5f20-482a-a372-ea9e04e3520f", - "width": 70, - "x": 3150, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8a363f95-c28e-4d62-ac57-de2d835308d3", - "width": 70, - "x": 5880, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8fc604be-6a2f-4816-af68-6bb0634318e1", - "width": 70, - "x": 5810, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0389aca3-1e20-4305-9773-7b6280dcfe7f", - "width": 70, - "x": 5880, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0d8c49f6-3b05-4c90-8842-41daa7eae600", - "width": 70, - "x": 3150, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "89daab6d-4221-43fe-b68a-a8d398759b3c", - "width": 70, - "x": 3010, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d9aa60d1-1789-44bd-a6a3-344df344eeee", - "width": 70, - "x": 3080, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "59bbc31f-0c33-4b6c-81df-1e987141e859", - "width": 70, - "x": 3080, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2e2abde0-d405-4722-9f9b-def51fc73818", - "width": 70, - "x": 5950, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6e6a5ca-b907-4de2-8201-fd94c7504aec", - "width": 70, - "x": 5880, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb41657c-de9b-40b5-aa58-e9ee17f0538f", - "width": 70, - "x": 5880, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ca247b24-c8a1-40c0-b9ff-01e65335259a", - "width": 70, - "x": 5810, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ecf9e2e0-9690-4863-8131-6fa8fcd65031", - "width": 70, - "x": 5880, - "y": 25620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "39933a0d-9f6a-47ac-9266-0eb9ee2625e8", - "width": 70, - "x": 5810, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "944fbc74-54a3-430a-ba0f-09eb85553aa9", - "width": 70, - "x": 3150, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "36b14ec3-d5c0-445c-b23c-66eef0e39718", - "width": 70, - "x": 3080, - "y": 25760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a5a8fbad-c697-418d-80d2-c832df473229", - "width": 70, - "x": 3080, - "y": 25620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "49e5f9f0-9eac-4140-b02e-7a7e10b38761", - "width": 70, - "x": 3010, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "32a8b44a-9362-4276-b698-5b4b38c6b09a", - "width": 70, - "x": 3080, - "y": 26740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec57d7be-0ad4-456c-91b6-3667cbcddcfe", - "width": 70, - "x": -980, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "28bc9548-87ea-4956-91a8-80a188bbb946", - "width": 70, - "x": -910, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6cf35728-a548-49a4-bd84-cef02ad093ac", - "width": 70, - "x": -980, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6ed7ef19-3b2e-49e8-9514-f3e6e6f770c0", - "width": 70, - "x": -910, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cc757865-bb98-4684-bb99-d436b420db1b", - "width": 70, - "x": -980, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd357626-8756-4747-a3e5-0aa9decfb4ff", - "width": 70, - "x": -980, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dee279ec-5ff7-42c0-95b1-8931f093e0a9", - "width": 70, - "x": 3290, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0a689286-526c-435c-93f7-877bdd6b8faa", - "width": 70, - "x": 3220, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "66a885b6-bfc3-451c-bd90-6575ae009c88", - "width": 70, - "x": 2940, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "96865ba8-2f80-4413-9597-b4f49db0a144", - "width": 70, - "x": 2870, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4bfe5a3f-159e-41be-bc72-454143df9bd1", - "width": 70, - "x": 5600, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e93b15f-0419-4917-bc02-24ef97dc5eaa", - "width": 70, - "x": 5600, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3570da2f-dc04-413d-8284-5678e21b28e9", - "width": 70, - "x": 5600, - "y": 21560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "18abe69b-1fc3-4c06-80e4-ccbb932646d3", - "width": 70, - "x": 5600, - "y": 21840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0fa84797-4813-400b-a6a6-cb63a561fe73", - "width": 70, - "x": 3290, - "y": 21560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "480e5f75-eead-4dc4-bafb-b95f2b24e09c", - "width": 70, - "x": 3290, - "y": 21840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "679d7c54-e0d1-4ac9-a046-06bc5fe2961b", - "width": 70, - "x": 2870, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a8944dc-9918-400e-a852-4530821e0fe2", - "width": 70, - "x": 3290, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd4f1a3a-1862-453f-a560-db787003177d", - "width": 70, - "x": 3290, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c1d61cee-615d-423c-8d86-e0adc88123c2", - "width": 70, - "x": 2870, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b111038c-87de-4f71-bf59-2126548fa4ef", - "width": 70, - "x": 5600, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "875f062d-0782-4029-be02-184ef143c824", - "width": 70, - "x": 5600, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1cac85b3-85b0-4cda-b051-49f97b0722b1", - "width": 70, - "x": 6160, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d0933a9-9fa2-4a09-acff-98be1de5288b", - "width": 70, - "x": 6160, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7a4cc886-1d27-455e-a3fd-0f7fd45fd77f", - "width": 70, - "x": 5600, - "y": 25410, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4cbdfc33-29a5-49d8-9af5-06941091f9c0", - "width": 70, - "x": 3290, - "y": 25970, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0b4e5c2e-dcc9-4e85-bc1c-1775272b9766", - "width": 70, - "x": 3290, - "y": 25410, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0c6cb425-41df-4348-877f-adc5ea41a240", - "width": 70, - "x": 2870, - "y": 26600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4a753335-c797-453d-91ad-7d26fde0183c", - "width": 70, - "x": -700, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4ce3b8f7-0e27-4505-918d-131695191d5b", - "width": 70, - "x": -700, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b9b83c6-1c97-4328-8229-5e180c2cfcfc", - "width": 70, - "x": 1400, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce324e04-f582-4b2b-a4d6-e34603054247", - "width": 70, - "x": 1120, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0491bc18-14ab-44c2-94f8-87fe10a58ea0", - "width": 70, - "x": -700, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3f7931f9-91dd-4ab3-9a5d-7a4b0d714090", - "width": 70, - "x": -700, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "6f50b8d1-4ba4-49c6-9026-4d340ca96791", - "width": 2240, - "x": 3360, - "y": 21560, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "66935797-bb50-49fa-b090-dc3c917a4673", - "width": 2240, - "x": 3360, - "y": 21840, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8820, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "fdcf3bba-acc4-4981-ad71-e14b11f74e75", - "width": 3640, - "x": -700, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7630, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "9d2ac214-8f8d-4d31-8fb4-c226af57e8b0", - "width": 2380, - "x": 3290, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "mouse_point", - "persistentUuid": "022047c8-b187-4408-b53e-1b2ace0405d1", - "width": 0, - "x": 5110, - "y": 24710, - "zOrder": 12643511, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "ac68d0de-734c-446a-a6c8-4b3dc0080d1f", - "width": 350, - "x": 7420, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "43baf9b5-1c1f-430b-911b-c9e777c2402f", - "width": 350, - "x": 7420, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "739fe610-a8e0-49af-a032-ded5032c0fd5", - "width": 350, - "x": 7770, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "2543b559-ed25-4415-9371-6fb8fc80470e", - "width": 350, - "x": 7770, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "d8961153-cacf-4b67-bb2a-5a1255519e1c", - "width": 350, - "x": 8470, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "cb06cbe0-1762-490a-813a-5426185db3ce", - "width": 350, - "x": 8120, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "62df7308-798a-4702-a151-b6610fc40545", - "width": 350, - "x": 8120, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "06aaaac2-776d-47b2-8181-290c3b2fdd10", - "width": 350, - "x": 8470, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "c16a9aae-19cf-4ba8-a9f9-491e31f4bd17", - "width": 350, - "x": 9870, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "2e7fd3d7-894d-43bc-8116-3d270f129021", - "width": 350, - "x": 8820, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "2ed624cd-3099-4953-b5a6-c87104fa5238", - "width": 350, - "x": 10570, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "2352f1a1-20e5-4d60-803c-d4c233630f16", - "width": 350, - "x": 9170, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "736bb1a8-fa79-4dda-9177-ec8af0304d75", - "width": 350, - "x": 9520, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "c77b7d25-2c35-4789-8848-e637a493a68c", - "width": 350, - "x": 9520, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "4fff97ee-5a70-478d-8aab-d21ca59fcbf3", - "width": 350, - "x": 10220, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "05d9247a-e487-4948-a77f-443595828b0d", - "width": 350, - "x": 8820, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "45d8e08d-b46e-440f-bb7e-beb2ac29fedf", - "width": 350, - "x": 9170, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "d2936501-13ff-45bf-8f2d-9f2e0243a9ab", - "width": 350, - "x": 9870, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "f8f74975-89f4-4a28-9538-c71841e880a9", - "width": 350, - "x": 10570, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "6e5d62dc-d947-48ab-a631-4e9d3b39d15a", - "width": 350, - "x": 10220, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "5c1df6f1-02e9-4f90-b367-a5734c3f1a57", - "width": 350, - "x": 11270, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "3a63c4ad-6733-4d8a-afc9-a211cb1fbe7e", - "width": 350, - "x": 10920, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "4b59c42c-1e58-4965-8b00-359a5ec7d3b0", - "width": 350, - "x": 10920, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "6902b9c7-1089-4d7f-819e-d262055aaf87", - "width": 350, - "x": 11270, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "462a0a37-7c26-4645-a05c-23b1e2aed7eb", - "width": 350, - "x": 11970, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "947b85e9-46e1-4e84-be94-1b834e799ff5", - "width": 350, - "x": 11620, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "cf65b54e-b209-43f6-bc0b-000c83a21f50", - "width": 350, - "x": 11620, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "6043fa90-8a8e-4653-9ca1-546fb4637659", - "width": 350, - "x": 11970, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "5a13239d-883b-42d3-a211-a4a9c99a016e", - "width": 350, - "x": 12670, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "9ee4d907-b8ab-4737-8e5a-85d1892a9c4e", - "width": 350, - "x": 12320, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "bb2d98d9-2eef-466b-a238-c5cb621cfc39", - "width": 350, - "x": 12320, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "076b787f-180f-4d09-8ee1-21b357d375f1", - "width": 350, - "x": 12670, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "94a2d62b-d932-4aab-b083-69219f69f1e4", - "width": 350, - "x": 13370, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "42a18f60-2fb3-40d1-a4fa-849dd8f9fd73", - "width": 350, - "x": 13020, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "110076a5-7cec-415f-8470-445e0c686c98", - "width": 350, - "x": 13020, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "4dff5779-7149-411f-81ea-872832d0808b", - "width": 350, - "x": 13370, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "38946fa8-d405-479e-abfb-6c035364755e", - "width": 350, - "x": 14070, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "061dac88-ff27-40be-b949-04205106e62a", - "width": 350, - "x": 13720, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "70e5bf77-b763-4ada-92e2-5d961eb7b59b", - "width": 350, - "x": 13720, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "39823d0f-0b4a-462c-8e53-9a16bfad7716", - "width": 350, - "x": 14070, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "d94d6df6-a8ee-4a2c-bb0c-8278ba008ce0", - "width": 350, - "x": 14770, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "58963f7c-9839-4f6f-8edd-9ae2b1bc5671", - "width": 350, - "x": 14420, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "efcf8067-a3e4-41f2-a1c8-e4a7f81e3bf9", - "width": 350, - "x": 14420, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "313dac02-4344-40cc-9fe4-feae24f71841", - "width": 350, - "x": 14770, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "047ac6b7-f703-41d2-a5eb-3d7fb05d3e8e", - "width": 350, - "x": 15470, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "ee2c4c06-32c7-4ef2-9b27-c7ca4d8aefce", - "width": 350, - "x": 15120, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "16ee4450-52fa-47e9-9fd8-659e00c646c8", - "width": 350, - "x": 15120, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "e94d3cf4-b531-4777-a457-d6f6c8d1db1e", - "width": 350, - "x": 15470, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8750, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "adb561a9-08ed-450a-91a4-8eaba8b92a9e", - "width": 1330, - "x": 6160, - "y": 17290, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "97829a79-4303-4255-82a7-db1c499432d8", - "width": 1470, - "x": 6020, - "y": 16100, - "zOrder": 12643512, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "b8bdfe38-a421-43a5-bf26-6270e246c987", - "width": 4130, - "x": 3360, - "y": 26040, - "zOrder": 12643513, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "8ad81f6f-792f-4255-9819-6eca5335ba1f", - "width": 5670, - "x": -1260, - "y": 27090, - "zOrder": 12643514, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "fcf8d501-f1e6-4303-a0c8-446cead5ddb3", - "width": 350, - "x": 16170, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "b644b9f9-b411-4311-a358-cafc2cb1bcee", - "width": 350, - "x": 15820, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "48eb89a9-5efa-46bd-880c-196f12c0f215", - "width": 350, - "x": 15820, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "bridge", - "persistentUuid": "bb7824dc-7508-4a50-ac5e-96c3ccadfa31", - "width": 350, - "x": 16170, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4200, - "layer": "", - "name": "Water", - "persistentUuid": "67085a45-105b-4092-a0b0-2950782b51a3", - "width": 8890, - "x": 7560, - "y": 24010, - "zOrder": 12643515, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "name": "Water", - "persistentUuid": "30f55ea7-cfc9-4a91-ad2f-8bf44c9a4daa", - "width": 8890, - "x": 7560, - "y": 20440, - "zOrder": 12643516, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "Health", - "persistentUuid": "51c740a3-2016-4425-8029-6911b124bb8b", - "width": 0, - "x": 0, - "y": 70, - "zOrder": 12643517, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1597d8aa-519a-4a90-b5f5-d79c0f65aa99", - "width": 70, - "x": -1120, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b07ba268-47f9-4eec-affc-19e4741989f8", - "width": 70, - "x": -5600, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9b1af817-12d7-4ad5-9b60-f4a081e08992", - "width": 70, - "x": -5460, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3290, - "layer": "", - "name": "road", - "persistentUuid": "cbcf16c6-43bd-47cd-b055-3077fa54c258", - "width": 210, - "x": -5530, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "name": "road_2", - "persistentUuid": "63561e49-821b-41d5-9b95-ce215003aa66", - "width": 70, - "x": -5600, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_4", - "persistentUuid": "298e41cd-ca92-41a0-8912-4200cd7ec77c", - "width": 4270, - "x": -5390, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9e8d2910-b4be-49cc-84f9-8d78204c4c0a", - "width": 70, - "x": -1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "0f326e38-5d58-4e49-b8c8-864a8afc8381", - "width": 4340, - "x": -5530, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "07c382fa-2d4e-4db5-8914-0fc0cc22fd45", - "width": 70, - "x": -5600, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3b989393-18ae-460f-ac54-e539ecaf54c2", - "width": 70, - "x": -5600, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2b4d2929-d173-44c8-98b0-d776aec5629a", - "width": 70, - "x": -5600, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7132451-123c-4d51-9888-aa6ff1c5d546", - "width": 70, - "x": -5460, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "dd69c66b-b54a-42d9-a984-75fcca462397", - "width": 4340, - "x": -5320, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d2dcf62e-eca2-468e-8275-7af94ec9a089", - "width": 70, - "x": -1260, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "18621a8a-eed1-423e-a75b-90c2fc25488e", - "width": 3990, - "x": -5250, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "name": "road_1", - "persistentUuid": "b269aba8-6276-4fd0-aee1-6359c4022a6c", - "width": 70, - "x": -5320, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8aba3efd-e13c-436f-bd6f-049173afbd35", - "width": 70, - "x": -5320, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "name": "road", - "persistentUuid": "ab2894fc-946a-4cff-bc8e-d5a828fbcec3", - "width": 210, - "x": -1190, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2730, - "layer": "", - "name": "road_1", - "persistentUuid": "fcdd1ccf-2e9e-41d5-9aea-b7ffa552af6d", - "width": 70, - "x": -1260, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "77c761a7-075f-4335-ad77-bdd36b366a21", - "width": 70, - "x": -1260, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "13adfa86-5a9a-41e7-bb31-5a2867deafcb", - "width": 3990, - "x": -5250, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f2a1c0cb-5a5e-4efd-b395-48ba2bb6b1be", - "width": 70, - "x": -5320, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2730, - "layer": "", - "name": "road_1", - "persistentUuid": "aa50b30d-e0b5-4870-a955-0e5bfc0b7eb5", - "width": 70, - "x": -5320, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "7ba668ea-b9c4-4188-9a17-2448585501da", - "width": 4340, - "x": -5320, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "15ed8016-9aa6-4f9c-bae0-23c6e2853a92", - "width": 4620, - "x": -5600, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0379158d-de9f-4780-9550-03a9b50d5234", - "width": 70, - "x": -5880, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "d7eeeea9-a4b6-43a4-8916-40168ee808cb", - "width": 3990, - "x": -5250, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_3", - "persistentUuid": "64794b87-3106-4e01-8f23-576fa461be0a", - "width": 4550, - "x": -5810, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1059e8ab-5f12-4dad-b596-c4202a2101f8", - "width": 70, - "x": -5320, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3150, - "layer": "", - "name": "road", - "persistentUuid": "a8c58325-c6a7-4b8e-babf-d259fc2e12b5", - "width": 210, - "x": -1190, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "name": "road_1", - "persistentUuid": "d9429d04-2754-41f7-b580-8c93ecfbf636", - "width": 70, - "x": -1260, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "00b7c1c4-3ac8-48af-b035-93b26916df0a", - "width": 70, - "x": -1260, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cdbb123b-1118-49ba-8a66-5e55e44a7bbd", - "width": 70, - "x": -1260, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "871d15f2-4ef1-4c9f-9907-bbe5ed9a40fc", - "width": 70, - "x": -5600, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "acd8ba68-606c-4f77-a5de-ffe455d2c0bc", - "width": 70, - "x": -1050, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "77f2b853-015d-4fa3-9875-e782f8c650ba", - "width": 70, - "x": -5600, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6dff04b4-8639-4318-a1b0-f38c88b7ba0a", - "width": 70, - "x": -5530, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c1c0179a-a312-496e-909c-c302304cffb0", - "width": 70, - "x": -5600, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f1cc467-f134-4b4d-a0f0-94dbeff457ff", - "width": 70, - "x": -5530, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e0349584-59fd-4e58-a9d2-c6fbd1035707", - "width": 70, - "x": -5600, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "26720435-ce1a-4edf-a663-b268a0be89c7", - "width": 70, - "x": -1050, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "8e479e2c-626d-446e-92bb-77dfc188242f", - "width": 4130, - "x": -5320, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ac75d8e-a40d-409c-a496-dbd1d180854a", - "width": 70, - "x": -1260, - "y": 27020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5274dcbe-f55a-441f-9fa6-d117eb61c465", - "width": 70, - "x": -700, - "y": 26600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "41436357-0e7d-4fe2-b783-ce4319f3c2a8", - "width": 70, - "x": -980, - "y": 26740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8fa7c3ad-131b-49af-a8ce-af8d8cea07a9", - "width": 70, - "x": -910, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "2d3f8e61-76f6-48d3-8dc8-f4a6e8ce221b", - "width": 0, - "x": 13790, - "y": 23351, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "61860341-74b1-4ecc-8981-8679c94fb532", - "width": 0, - "x": 13790, - "y": 23650, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "fdcffdfd-92c5-4729-b1ad-2d8c81d11724", - "width": 0, - "x": 13790, - "y": 23549, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "a7dc483c-d01c-494d-a243-d3c3aafd2d63", - "width": 0, - "x": 13790, - "y": 23450, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "29e5bc44-30a2-4dd6-b6ca-f3d8e311cfaa", - "width": 0, - "x": 13790, - "y": 23749, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "fab7d286-6789-43ab-9ac5-b4f65589baef", - "width": 0, - "x": 13790, - "y": 23847, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "AmmoText", - "persistentUuid": "c4aa480c-5f33-44be-bff1-b7581f5de51f", - "width": 0, - "x": 0, - "y": 490, - "zOrder": 12643519, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "e38e9d4a-005b-4783-94cf-df132737369e", - "width": 140, - "x": -5250, - "y": 17920, - "zOrder": 12643520, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "cdbf6154-439e-4562-8086-6536191d3c47", - "width": 140, - "x": -1400, - "y": 17920, - "zOrder": 12643520, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "4951c0c7-e63c-4352-b259-bc4a52f2e3c6", - "width": 3710, - "x": -5110, - "y": 17920, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "3d6a6ad5-910e-46a8-ac37-272b760e7d54", - "width": 3710, - "x": -5110, - "y": 19810, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "1dbf8c21-b95f-4b25-b5ae-b1b9002dceda", - "width": 3990, - "x": -5250, - "y": 20580, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "10e40f8b-4d84-4818-925d-4c7fec70ac96", - "width": 3990, - "x": -5250, - "y": 23170, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "name": "sand_1", - "persistentUuid": "f78938e6-4b0c-4cbd-9d7e-e9490a81caef", - "width": 140, - "x": -5250, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "name": "sand_1", - "persistentUuid": "ecb7c297-bc45-4b99-80eb-e70eef857b08", - "width": 140, - "x": -1400, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "name": "sand_1", - "persistentUuid": "2d19757c-7902-4560-be5b-4bd25b4e3de5", - "width": 140, - "x": 2730, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "name": "sand_1", - "persistentUuid": "62bb49a1-4e07-4a0a-be28-2dd82f0e7661", - "width": 140, - "x": -630, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "54401507-6137-4d0f-8394-d1ec5240c08d", - "width": 3500, - "x": -630, - "y": 20580, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "34fef25a-acb0-44ec-ac0b-821da32874a5", - "width": 3500, - "x": -630, - "y": 23170, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "8ffcf775-964a-455c-98bb-17f6c1318b6b", - "width": 3500, - "x": -630, - "y": 23940, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "ecc9eb11-55a4-479c-8637-8da2700f57de", - "width": 3500, - "x": -630, - "y": 26460, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "sand_1", - "persistentUuid": "2d792cfb-9aba-481a-9339-16eb9a91b25b", - "width": 140, - "x": 2730, - "y": 24080, - "zOrder": 12643524, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "name": "sand_1", - "persistentUuid": "b75db4e8-633d-4934-aa5c-31b20a1e8066", - "width": 140, - "x": -630, - "y": 24080, - "zOrder": 12643525, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "412fbbb1-5170-4e13-80a7-263b441952c2", - "width": 1470, - "x": 1470, - "y": 17920, - "zOrder": 12643526, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "sand_1", - "persistentUuid": "d151a30c-7196-44b5-bcbd-f816aef3bedc", - "width": 140, - "x": 1470, - "y": 18060, - "zOrder": 12643527, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "sand_1", - "persistentUuid": "7421704b-b842-4c44-865f-8cdf16d0c0b9", - "width": 140, - "x": 2800, - "y": 18060, - "zOrder": 12643528, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "21d0ea71-8d09-42a9-af69-62dc9f19c8c3", - "width": 1190, - "x": 1610, - "y": 19810, - "zOrder": 12643529, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "14be3c5c-a6da-4965-8724-b126e61dbdde", - "width": 140, - "x": 3360, - "y": 23940, - "zOrder": 12643530, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "sand_1", - "persistentUuid": "420c5f15-6a05-4451-a375-d94591e158ff", - "width": 140, - "x": 5460, - "y": 23940, - "zOrder": 12643531, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "a40fc982-2871-4f2c-b5d4-55047d001ad7", - "width": 1960, - "x": 3500, - "y": 23940, - "zOrder": 12643532, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "5cbfe985-e686-49f6-b85c-f45c462d06d8", - "width": 1960, - "x": 3500, - "y": 25270, - "zOrder": 12643533, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "5bcc1592-085b-4536-acac-41b3b8b64a5f", - "width": 2240, - "x": 3360, - "y": 21910, - "zOrder": 12643534, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "sand_1", - "persistentUuid": "a63c90b1-db37-44c6-a664-31b8deb2b7f5", - "width": 140, - "x": 5460, - "y": 22050, - "zOrder": 12643535, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "name": "sand_1", - "persistentUuid": "caf7a4a2-5a91-41d1-b850-517761975df4", - "width": 140, - "x": 3360, - "y": 22050, - "zOrder": 12643536, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "6b619fea-cc7b-4ca7-8657-415d3a853acf", - "width": 1960, - "x": 3500, - "y": 23170, - "zOrder": 12643537, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "64ad246f-f46a-444e-aadd-af17e95b4546", - "width": 2240, - "x": 3360, - "y": 20580, - "zOrder": 12643538, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "67cca899-f306-4a81-8e12-bd6688ad04d0", - "width": 2240, - "x": 3360, - "y": 21420, - "zOrder": 12643539, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "name": "sand_1", - "persistentUuid": "1ab67060-3a11-4b7c-8138-e013c1a2943a", - "width": 140, - "x": 5460, - "y": 20720, - "zOrder": 12643540, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "name": "sand_1", - "persistentUuid": "211e410e-451b-4297-9449-ef90336938cb", - "width": 140, - "x": 3360, - "y": 20720, - "zOrder": 12643541, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "6c945cde-9f5b-41f4-b3fc-8489ab60ab83", - "width": 140, - "x": 3290, - "y": 17920, - "zOrder": 12643542, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "9c9485ea-21db-4f89-ad79-80a35f04fa18", - "width": 140, - "x": 5460, - "y": 17920, - "zOrder": 12643542, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "8a99633d-05ac-4ebe-b988-220919f2275c", - "width": 2030, - "x": 3430, - "y": 17920, - "zOrder": 12643543, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "5961cbba-46e4-44e2-8f23-4ccaa23720be", - "width": 2030, - "x": 3430, - "y": 19810, - "zOrder": 12643544, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "c85c1a29-c6c1-4e83-8f02-dfb7e5ffac39", - "width": 140, - "x": 980, - "y": 17920, - "zOrder": 12643545, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "name": "sand_1", - "persistentUuid": "b69b3f2c-6805-49eb-ad8e-306e27b2aeab", - "width": 140, - "x": -630, - "y": 17920, - "zOrder": 12643546, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "0fb51466-61e5-4e60-bebb-fee5be683805", - "width": 1470, - "x": -490, - "y": 17920, - "zOrder": 12643547, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sand_1", - "persistentUuid": "3c1d7e05-ad55-4797-b1fa-2885ebbab892", - "width": 1470, - "x": -490, - "y": 19810, - "zOrder": 12643548, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "weaponholding", - "persistentUuid": "13d249b9-06b6-4f5a-b593-79789f2fe2f6", - "width": 0, - "x": 0, - "y": 420, - "zOrder": 12643549, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "mele2", - "persistentUuid": "09afe30b-b74c-417f-a4d0-68548d755fec", - "width": 0, - "x": 70, - "y": 1330, - "zOrder": 12643551, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "You_lose", - "persistentUuid": "f744036a-8f49-422b-a95e-88395ebaf4df", - "width": 0, - "x": 375, - "y": 280, - "zOrder": 12643552, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "5e1892e5-4d7c-43d9-b40c-16e53d4125e3", - "width": 0, - "x": -3780, - "y": 12880, - "zOrder": 12643553, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "9003b74c-eafb-484e-8309-746323071dfe", - "width": 0, - "x": -4410, - "y": 18410, - "zOrder": 12643554, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "sand_1", - "persistentUuid": "b0df6117-2c96-4859-84f9-d173b53c23ca", - "width": 420, - "x": -3500, - "y": 18060, - "zOrder": 1264355, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "roof_tops", - "persistentUuid": "f33dcc53-5bb3-4f5d-ab50-8a17e6da228c", - "width": 700, - "x": 1540, - "y": 11900, - "zOrder": 12643555, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "23fa64cb-272b-42a2-ad0e-52c7401aa2d2", - "width": 0, - "x": 3080, - "y": 10430, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "c2cac24f-0eed-4068-aae6-6224142c33c9", - "width": 0, - "x": 3080, - "y": 9520, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "22ca8ce7-ef49-4bc0-9eb3-7e46e828312f", - "width": 0, - "x": 3080, - "y": 11830, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "1b7eb4c2-a0e7-46c9-8b88-e9cfa61e96be", - "width": 0, - "x": 3080, - "y": 13580, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "e7db47f8-58b4-4359-a67d-63d14a48fa43", - "width": 0, - "x": 3080, - "y": 12690, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "roof_tops", - "persistentUuid": "036dcc5a-7549-4109-bf66-286e1af7fa46", - "width": 1190, - "x": 1330, - "y": 15400, - "zOrder": 12643557, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "roof_tops", - "persistentUuid": "891ed0d8-f246-4ce4-87be-6055b8cbaf0d", - "width": 1190, - "x": 2590, - "y": 15400, - "zOrder": 12643557, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4a665405-f563-4b6b-b35d-8d889eb271eb", - "width": 980, - "x": 1400, - "y": 16520, - "zOrder": 12643558, - "numberProperties": [ - { - "name": "animation", - "value": 15 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "roof_tops", - "persistentUuid": "5f44745a-3bf4-4cd0-93f3-16bf7220347d", - "width": 980, - "x": 2660, - "y": 16520, - "zOrder": 12643558, - "numberProperties": [ - { - "name": "animation", - "value": 15 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "roof_tops", - "persistentUuid": "d1cc791d-b1fb-40aa-b7e0-697f0d090eac", - "width": 1050, - "x": 1680, - "y": 18130, - "zOrder": 12643559, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4c4ccc12-654a-4d4e-8e65-2f521bcde1ba", - "width": 0, - "x": 1750, - "y": 19110, - "zOrder": 12643560, - "numberProperties": [ - { - "name": "animation", - "value": 17 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "roof_tops", - "persistentUuid": "23644083-799b-4d85-9d3b-567f4c6d1e13", - "width": 1680, - "x": 3640, - "y": 22120, - "zOrder": 12643560, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "name": "roof_tops", - "persistentUuid": "95b3bc67-8b66-4760-abee-730b11e60fe5", - "width": 560, - "x": 3570, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "name": "roof_tops", - "persistentUuid": "77780327-24f8-4729-9b04-3796a0889d57", - "width": 560, - "x": 4830, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "name": "roof_tops", - "persistentUuid": "7fdf90c5-4ff2-44a8-991a-7ddc0e424811", - "width": 560, - "x": 4200, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "door", - "persistentUuid": "99f5ac72-0a60-4827-987e-71768de59cb4", - "width": 140, - "x": -289, - "y": 780, - "zOrder": 12643562, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "2" - }, - { - "name": "Direction", - "type": "string", - "value": "-90" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 193, - "layer": "", - "name": "door", - "persistentUuid": "a78462a8-150c-4ca9-9f1d-e2f13572f6d0", - "width": 121, - "x": -2373, - "y": 1886, - "zOrder": 12643563, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "3" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 168, - "layer": "", - "name": "door", - "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", - "width": 205, - "x": -2448, - "y": 893, - "zOrder": 12643564, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "5" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 127, - "layer": "", - "name": "door", - "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", - "width": 231, - "x": -1262, - "y": 1966, - "zOrder": 12643565, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 142, - "layer": "", - "name": "door", - "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", - "width": 139, - "x": -1176, - "y": 1325, - "zOrder": 12643566, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 194, - "layer": "", - "name": "door", - "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", - "width": 124, - "x": 1938, - "y": 1129, - "zOrder": 12643567, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "6" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 1289, - "layer": "Fade", - "name": "Transitions", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "ground_1", - "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", - "width": 1680, - "x": -910, - "y": -214, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "grass", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets\\foliage\\grass\\tile_01.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Placeholder", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "deceleration": 800, - "acceleration": 400, - "maxSpeed": 200, - "rotateObject": false, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 500, - "ignoreDefaultControls": true - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\placeholder.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Niko", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_stand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Single_pistol.png", - "points": [ - { - "name": "shoot", - "x": 58, - "y": 42 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Machine_gun_hold.png", - "points": [ - { - "name": "shoot", - "x": 56, - "y": 27 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_flametrhower.png", - "points": [ - { - "name": "f_t_collision", - "x": 47.5, - "y": 31 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_sniper.png", - "points": [ - { - "name": "shoot", - "x": 61, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 22 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun5-loaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 100, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 25, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_tazer.png", - "points": [ - { - "name": "hitbox", - "x": 45, - "y": 33 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 24, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim1", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim2", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "gun5 unloaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 101, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 22, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a1.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a2.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a3.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a4.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a5.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "roof_tops", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\rooftop\\roof_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 4.505209922790527, - "y": 1.6666699647903442 - }, - { - "x": 189.5050048828125, - "y": 0 - }, - { - "x": 184.5050048828125, - "y": 378.3330078125 - }, - { - "x": -0.49479201436042786, - "y": 375 - } - ], - [ - { - "x": 194.5050048828125, - "y": 100 - }, - { - "x": 464.5050048828125, - "y": 108.33300018310547 - }, - { - "x": 467.8389892578125, - "y": 271.6669921875 - }, - { - "x": 187.83900451660156, - "y": 276.6669921875 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14_horizontal.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_16.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_21.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_22.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_23.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_24.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_25.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_06.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_05.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\side_walk\\sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\dirt.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_20.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flame_thrower_fire_collision", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [ - { - "name": "CenterBurning", - "x": 50, - "y": 16 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "crossair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair010", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair_3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair060", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair008", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun4", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "tazer_hitbox", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun5", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": -15, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": -15, - "y": 4.852940082550049 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Slash1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "energy", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (21).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26.121299743652344, - "y": 26.470600128173828 - }, - { - "x": 63.474300384521484, - "y": 26.470600128173828 - }, - { - "x": 63.76839828491211, - "y": 37.058799743652344 - }, - { - "x": 26.7096004486084, - "y": 37.647098541259766 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (2).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (27).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 26, - "y": 26 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (1).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (9).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (5).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 40 - }, - { - "x": 37, - "y": 40 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (23).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (22).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_block", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceRed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceYellow.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bullet", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", - "points": [ - { - "name": "effects_bullet", - "x": 31.95669937133789, - "y": 3.863640069961548 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "AmmoText", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weaponholding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeLarge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeSmall.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_183.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_186.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "house_enter", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "Water_cover", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "Water", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sports_equipments_movable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sports_equipments", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (77).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 30, - "y": 14 - }, - { - "x": 64, - "y": 25 - }, - { - "x": 64, - "y": 40 - }, - { - "x": 31, - "y": 49 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (65).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets\\sport\\ground\\ground_beige.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ground_elements", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sport\\ground_elements\\element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "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": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "color": "112;112;112" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Phone", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 1, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_off.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.0625, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_app.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "deco", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\deco\\deco_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "trash_movable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\oil.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBeige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBrown.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bridge", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\bridge\\bridge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_1", - "texture": "assets\\Road\\road\\tile_35-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets\\Road\\concrete\\concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_3", - "texture": "assets\\Road\\road\\tile_37-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "content": { - "bold": true, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_4", - "texture": "assets\\Road\\road\\tile_63-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "beach_sand_1", - "texture": "assets\\Road\\map_edge\\tile_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "beach_sand_2", - "texture": "assets\\Road\\map_edge\\tile_19.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_1", - "texture": "assets\\Road\\side_walk\\sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_2", - "texture": "assets\\Road\\map_edge\\tile_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Pointer", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.0714, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Health", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "100", - "font": "", - "textAlignment": "", - "characterSize": 64, - "color": { - "b": 0, - "g": 0, - "r": 255 - }, - "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": "100", - "font": "", - "textAlignment": "", - "characterSize": 64, - "color": "255;0;0" - } - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "You_lose", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 2, - "leftEdgeAnchor": 1, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1 - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "WASTED", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "", - "characterSize": 95, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "WASTED", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "", - "characterSize": 95, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Thumb", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\thumb_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15.5, - "y": 129.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 15.5, - "y": 129.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "grass" - }, - { - "objectName": "grass_tiled" - }, - { - "objectName": "Placeholder" - }, - { - "objectName": "Niko" - }, - { - "objectName": "road" - }, - { - "objectName": "roof_tops" - }, - { - "objectName": "sand" - }, - { - "objectName": "door" - }, - { - "objectName": "flame_thrower_fire_collision" - }, - { - "objectName": "crossair" - }, - { - "objectName": "gun1" - }, - { - "objectName": "gun3" - }, - { - "objectName": "gun4" - }, - { - "objectName": "gun2" - }, - { - "objectName": "tazer_hitbox" - }, - { - "objectName": "gun5" - }, - { - "objectName": "mele1" - }, - { - "objectName": "mele2" - }, - { - "objectName": "Slash1" - }, - { - "objectName": "ammo" - }, - { - "objectName": "energy" - }, - { - "objectName": "Fences" - }, - { - "objectName": "road_block" - }, - { - "objectName": "bullet" - }, - { - "objectName": "AmmoText" - }, - { - "objectName": "weaponholding" - }, - { - "objectName": "foliage" - }, - { - "objectName": "house_enter" - }, - { - "objectName": "Water_cover" - }, - { - "objectName": "Water" - }, - { - "objectName": "sports_equipments_movable" - }, - { - "objectName": "sports_equipments" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "ground_elements" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "reloading" - }, - { - "objectName": "Phone" - }, - { - "objectName": "Wheel_info" - }, - { - "objectName": "deco" - }, - { - "objectName": "trash_movable" - }, - { - "objectName": "brown_leaves_particle" - }, - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "bridge" - }, - { - "objectName": "road_1" - }, - { - "objectName": "road_2" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "road_3" - }, - { - "objectName": "phone_wifi" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "road_4" - }, - { - "objectName": "beach_sand_1" - }, - { - "objectName": "beach_sand_2" - }, - { - "objectName": "sand_1" - }, - { - "objectName": "sand_2" - }, - { - "objectName": "Pointer" - }, - { - "objectName": "weapon_icons" - }, - { - "objectName": "NewObject" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "bullet_destroy_rocket" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "Health" - }, - { - "objectName": "You_lose" - }, - { - "objectName": "Thumb" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - }, - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Rooftops", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::Or" - }, - "parameters": [], - "subInstructions": [ - { - "type": { - "value": "SceneJustResumed" - }, - "parameters": [ - "" - ] - }, - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "niko_movement", - "=", - "1" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "-50" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Water", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Water_cover", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "road", - "=", - "-10" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Basket ball", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "Placeholder", - "" - ] - }, - { - "type": { - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "Fences", - "" - ] - }, - { - "type": { - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "roof_tops", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "sports_equipments_movable", - "", - "", - "" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "AddForceAL" - }, - "parameters": [ - "sports_equipments_movable", - "Placeholder.Angle()", - "120", - "1" - ] - }, - { - "type": { - "value": "PlayAnimation" - }, - "parameters": [ - "sports_equipments_movable" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Arret" - }, - "parameters": [ - "sports_equipments_movable" - ] - } - ], - "actions": [ - { - "type": { - "value": "AnimatableCapability::AnimatableBehavior::PauseAnimation" - }, - "parameters": [ - "sports_equipments_movable", - "Animation" - ] - } - ] - } - ], - "parameters": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "BlackAndWhite", - "name": "BlackAndWhite", - "doubleParameters": { - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "ZoomBlur", - "name": "ZoomBlur", - "doubleParameters": { - "centerX": 0.5, - "centerY": 0.5, - "innerRadius": 0, - "strength": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "GUI", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/customisation.json b/src/layouts/customisation.json deleted file mode 100644 index e86827339..000000000 --- a/src/layouts/customisation.json +++ /dev/null @@ -1,1279 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Customisation", - "name": "Customisation", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.9679970813577352, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Body", - "persistentUuid": "fe739552-1993-438f-b5b4-5c816cf15f53", - "width": 0, - "x": 334, - "y": 255, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Leg", - "persistentUuid": "1ab6ba1f-9d01-40cc-a99c-79e52279ef47", - "width": 0, - "x": 337, - "y": 195, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Hand", - "persistentUuid": "95d85909-f8e1-4db3-860b-07dac18c73ee", - "width": 0, - "x": 341, - "y": 375, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "SquareWhiteSlider", - "persistentUuid": "57f41a4c-af1b-4264-9a44-b3e0ee2286dc", - "width": 0, - "x": 259, - "y": 496, - "zOrder": 7, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "WhiteDecoratedButton", - "persistentUuid": "a50905bd-9ce5-4c4a-8abf-e4868197ee7b", - "width": 0, - "x": 697, - "y": 487, - "zOrder": 8, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "name": "Movement", - "type": "structure", - "children": [ - { - "folded": true, - "name": "handTweenDuration", - "type": "number", - "value": 0.5 - }, - { - "folded": true, - "name": "legTweenDuration", - "type": "number", - "value": 0.5 - } - ] - }, - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.1, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 400, - "customIsometryAngle": 30, - "deceleration": 800, - "ignoreDefaultControls": false, - "maxSpeed": 200, - "movementAngleOffset": 0, - "rotateObject": true, - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g499.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g492.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g527.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g503.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 49, - "y": 0 - }, - { - "x": 49, - "y": 73 - }, - { - "x": 0, - "y": 73 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.3, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g571.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g576.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g568.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g575.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g574.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g578.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g569.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characters_g569.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 43, - "y": 0 - }, - { - "x": 43, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "bfeeb465a4a164b560a2215e3ff9e78e66123af43cbf7ef1f22d56fca4271c80", - "name": "SquareWhiteSlider", - "type": "PanelSpriteSlider::PanelSpriteSlider", - "variables": [], - "effects": [], - "behaviors": [], - "content": { - "BarTopPadding": 6, - "BarLeftPadding": 6, - "BarRightPadding": 6, - "BarBottomPadding": 6, - "LabelMargin": 6, - "MaxValue": 3, - "InitialValue": 0 - }, - "childrenContent": { - "Background": { - "bottomMargin": 4, - "height": 28, - "leftMargin": 2, - "rightMargin": 2, - "texture": "Square White Slider Border.png", - "tiled": false, - "topMargin": 4, - "width": 265 - }, - "FillBar": { - "bottomMargin": 2, - "height": 16, - "leftMargin": 0, - "rightMargin": 0, - "texture": "Square White Slider Fill Bar.png", - "tiled": false, - "topMargin": 0, - "width": 16 - }, - "Label": { - "bold": false, - "italic": false, - "smoothed": true, - "underlined": false, - "string": "It displays the value when it changes.", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 221, - "g": 221, - "r": 221 - }, - "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": "It displays the value when it changes.", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "221;221;221" - } - }, - "Thumb": { - "bottomMargin": 2, - "height": 36, - "leftMargin": 1, - "rightMargin": 1, - "texture": "Square White Slider Thumb.png", - "tiled": false, - "topMargin": 2, - "width": 22 - } - } - }, - { - "assetStoreId": "d907b5df38595e6d3f128058fbb3dbd0861f86505cc6d7bf9859ddcc3eceeb1f", - "name": "WhiteDecoratedButton", - "type": "PanelSpriteButton::PanelSpriteButton", - "variables": [], - "effects": [], - "behaviors": [], - "content": { - "LeftPadding": 16, - "RightPadding": 16, - "PressedLabelOffsetY": 6, - "BottomPadding": 24, - "TopPadding": 20, - "HoveredFadeOutDuration": 0.25 - }, - "childrenContent": { - "Hovered": { - "bottomMargin": 22, - "height": 64, - "leftMargin": 16, - "rightMargin": 16, - "texture": "White Decorated Button_Hovered.png", - "tiled": true, - "topMargin": 16, - "width": 192 - }, - "Idle": { - "bottomMargin": 22, - "height": 64, - "leftMargin": 16, - "rightMargin": 16, - "texture": "White Decorated Button_Idle.png", - "tiled": true, - "topMargin": 16, - "width": 192 - }, - "Label": { - "bold": false, - "italic": false, - "smoothed": true, - "underlined": false, - "string": "Start", - "font": "ArchitectsDaughter.ttf", - "textAlignment": "center", - "characterSize": 16, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Start", - "font": "ArchitectsDaughter.ttf", - "textAlignment": "center", - "characterSize": 16, - "color": "0;0;0" - } - }, - "Pressed": { - "bottomMargin": 16, - "height": 64, - "leftMargin": 16, - "rightMargin": 16, - "texture": "White Decorated Button_Pressed.png", - "tiled": true, - "topMargin": 22, - "width": 192 - } - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "folderName": "Player", - "children": [ - { - "objectName": "Leg" - }, - { - "objectName": "Hand" - }, - { - "objectName": "Body" - } - ] - }, - { - "objectName": "SquareWhiteSlider" - }, - { - "objectName": "WhiteDecoratedButton" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "AnimatableCapability::AnimatableBehavior::SetIndex" - }, - "parameters": [ - "Body", - "Animation", - "=", - "SquareWhiteSlider.Value() " - ] - }, - { - "type": { - "value": "AnimatableCapability::AnimatableBehavior::SetIndex" - }, - "parameters": [ - "Hand", - "Animation", - "=", - "SquareWhiteSlider.Value()" - ] - }, - { - "type": { - "value": "AnimatableCapability::AnimatableBehavior::SetIndex" - }, - "parameters": [ - "Leg", - "Animation", - "=", - "SquareWhiteSlider.Value()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Player.Customisation.body", - "=", - "Body.Animation::Index()" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Player.Customisation.hand", - "=", - "Hand.Animation::Index()" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Player.Customisation.leg", - "=", - "Leg.Animation::Index()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "PanelSpriteButton::PanelSpriteButton::IsClicked" - }, - "parameters": [ - "WhiteDecoratedButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "\"City\"", - "" - ] - } - ] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/firstlaunch.json b/src/layouts/firstlaunch.json deleted file mode 100644 index ed0375108..000000000 --- a/src/layouts/firstlaunch.json +++ /dev/null @@ -1,754 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "FirstLaunch", - "name": "FirstLaunch", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.3645833333333333, - "windowMask": false - }, - "objectsGroups": [], - "variables": [ - { - "name": "PCRank", - "type": "structure", - "children": [ - { - "folded": true, - "name": "adder", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "rank", - "type": "string", - "value": "0" - } - ] - } - ], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "rank", - "persistentUuid": "45362f31-08b3-45ca-9373-900542bf4feb", - "width": 0, - "x": 870, - "y": 486, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "rank", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 50, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 50, - "color": "0;0;0" - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "rank" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "GroupExists" - }, - "parameters": [ - "\"Game\"", - "CurrentSceneName() + \"FirstLaunch\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"131;214;155\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "sceneLoad", - "=", - "\"City\"" - ] - }, - { - "type": { - "value": "LireFichierTxt" - }, - "parameters": [ - "\"Game\"", - "CurrentSceneName() + \"Rank\"", - "", - "PCRank.rank" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "System.rank", - "=", - "PCRank.rank" - ] - }, - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "\"Loading\"", - "yes" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "GroupExists" - }, - "parameters": [ - "\"Game\"", - "CurrentSceneName() + \"FirstLaunch\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "EcrireFichierTxt" - }, - "parameters": [ - "\"Game\"", - "CurrentSceneName() + \"FirstLaunch\"", - "\"true\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"139;87;42\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"248;231;28\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"245;166;35\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"208;2;27\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"126;211;33\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"65;117;5\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"189;16;224\"" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SceneBackground" - }, - "parameters": [ - "", - "\"144;19;254\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenNumberEffectPropertyTween" - }, - "parameters": [ - "", - "\"adder\"", - "200", - "", - "\"Effect\"", - "\"blur\"", - "\"linear\"", - "7" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "AlignObject::ToSceneCentered" - }, - "parameters": [ - "", - "rank", - "" - ] - }, - { - "type": { - "value": "TextContainerCapability::TextContainerBehavior::SetValue" - }, - "parameters": [ - "rank", - "Text", - "=", - "PCRank.rank" - ] - } - ] - }, - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Tween::SceneTweenIsPlaying" - }, - "parameters": [ - "", - "\"adder\"" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - ">", - "50" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"A\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - "<", - "50" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"B\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - "<", - "40" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"C\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - "<", - "30" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"D\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - "<", - "20" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"E\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::CompareNumbers" - }, - "parameters": [ - "FPS::FPS()", - "<", - "10" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "PCRank.rank", - "=", - "\"F\"" - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Tween::SceneTweenHasFinished" - }, - "parameters": [ - "", - "\"adder\"" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "EcrireFichierTxt" - }, - "parameters": [ - "\"Game\"", - "CurrentSceneName() + \"Rank\"", - "PCRank.rank" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "System.rank", - "=", - "PCRank.rank" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "sceneLoad", - "=", - "\"City\"" - ] - }, - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "\"Loading\"", - "yes" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Blur", - "name": "Effect", - "doubleParameters": { - "blur": 1, - "kernelSize": 15, - "quality": 1, - "resolution": 10 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/functionsincludes.json b/src/layouts/functionsincludes.json deleted file mode 100644 index 11278010d..000000000 --- a/src/layouts/functionsincludes.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "FunctionsIncludes", - "name": "FunctionsIncludes", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.4777499999999978, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [], - "objects": [], - "objectsFolderStructure": { - "folderName": "__ROOT" - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "This scene only exists to workaround an exporter bug, it should not be delted or switched to." - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Toujours" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "BackgroundScene::loadBGScene" - }, - "parameters": [ - "", - "", - "" - ] - }, - { - "type": { - "value": "BackgroundScene::switchBack" - }, - "parameters": [ - "", - "" - ] - }, - { - "type": { - "value": "BackgroundScene::switchToBGScene" - }, - "parameters": [ - "", - "", - "" - ] - }, - { - "type": { - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "", - "" - ] - }, - { - "type": { - "value": "RoomManager::registerRoom" - }, - "parameters": [ - "", - "", - "", - "", - "" - ] - } - ] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/game_map.json b/src/layouts/game_map.json deleted file mode 100644 index bf45372df..000000000 --- a/src/layouts/game_map.json +++ /dev/null @@ -1,33688 +0,0 @@ -{ - "b": 232, - "disableInputWhenNotFocused": true, - "mangledName": "Game_95Map", - "name": "Game_Map", - "r": 102, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 165, - "uiSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 2.013971951038722, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "Phone_status_bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - }, - { - "name": "Static", - "objects": [ - { - "name": "building_rooftop" - }, - { - "name": "props_foliage" - }, - { - "name": "basketball_hoop" - }, - { - "name": "props_decorations" - }, - { - "name": "props_roadblock" - }, - { - "name": "props_fences" - } - ] - }, - { - "name": "WeaponWheel", - "objects": [ - { - "name": "weapon_icon" - }, - { - "name": "weapon_bar" - }, - { - "name": "weaponWheelSticker" - } - ] - } - ], - "variables": [ - { - "folded": true, - "name": "DebugVariables", - "type": "structure", - "children": [ - { - "name": "shadowAdder", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Game", - "type": "structure", - "children": [ - { - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Zoom", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "folded": true, - "name": "GodMode", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Player", - "type": "structure", - "children": [ - { - "name": "WeaponWheel", - "type": "structure", - "children": [ - { - "folded": true, - "name": "adder", - "type": "number", - "value": 0 - } - ] - }, - { - "name": "Weapons", - "persistentUuid": "156e00a8-0565-4399-b01a-2d67f7dd2aea", - "type": "structure", - "children": [ - { - "name": "Active", - "type": "structure", - "children": [ - { - "name": "pistolSilencer", - "persistentUuid": "ca505ad0-64b4-44ee-b4b4-20ba640dd356", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "rocketLauncher", - "persistentUuid": "a8cbcdb0-769a-42ec-97ba-2d4452a2f44c", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "rocketLauncherModern", - "persistentUuid": "c25e6f18-b9d3-4077-badd-9e7fe02d7289", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "shotgunLong", - "persistentUuid": "1ea7f09e-67e9-446c-b924-8b7841d8c706", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "sniper", - "persistentUuid": "fd26e664-81a2-41e1-b99d-eb5b6f68fd1f", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "uzi", - "persistentUuid": "8042baed-2539-4ca7-a163-86635a6c0c14", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLong", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLongSilencer", - "persistentUuid": "f1e60af4-7996-42a0-b4ec-fa7e985445ea", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziSilencer", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - } - ] - }, - { - "folded": true, - "name": "Selected", - "type": "string", - "value": "" - }, - { - "name": "Slot", - "type": "structure", - "children": [ - { - "folded": true, - "name": "current", - "type": "number", - "value": 0 - }, - { - "name": "max", - "type": "number", - "value": 4 - } - ] - } - ] - } - ] - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", - "width": 2100, - "x": -3220, - "y": -210, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1610, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", - "width": 1680, - "x": 1680, - "y": -490, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", - "sealed": true, - "width": 2450, - "x": -3220, - "y": 1260, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", - "width": 70, - "x": -2940, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", - "width": 70, - "x": -3500, - "y": 3570, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 140, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", - "width": 2590, - "x": -2730, - "y": 3220, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", - "width": 140, - "x": -3780, - "y": 2590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", - "width": 70, - "x": 490, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", - "width": 70, - "x": 420, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", - "width": 70, - "x": 490, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", - "width": 70, - "x": 420, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", - "width": 70, - "x": -280, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", - "width": 70, - "x": -210, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", - "width": 70, - "x": 560, - "y": 1050, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", - "width": 70, - "x": 630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", - "width": 70, - "x": 700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", - "width": 70, - "x": 700, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", - "width": 70, - "x": 700, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", - "width": 70, - "x": 700, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", - "width": 70, - "x": 700, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", - "width": 70, - "x": 700, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", - "width": 70, - "x": 700, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", - "width": 70, - "x": 700, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", - "width": 70, - "x": 700, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", - "width": 70, - "x": 700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", - "width": 70, - "x": 560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", - "width": 70, - "x": 630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", - "width": 70, - "x": 420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", - "width": 70, - "x": 280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", - "width": 70, - "x": 350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", - "width": 70, - "x": 140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", - "width": 70, - "x": 210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", - "width": 70, - "x": 0, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", - "width": 70, - "x": 0, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", - "width": 70, - "x": 0, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", - "width": 70, - "x": 0, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", - "width": 70, - "x": 0, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", - "width": 70, - "x": 0, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", - "width": 70, - "x": 0, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", - "width": 70, - "x": 0, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", - "width": 70, - "x": 70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", - "width": 70, - "x": 140, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", - "width": 70, - "x": 70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", - "width": 70, - "x": 280, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", - "width": 70, - "x": 210, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", - "width": 70, - "x": 350, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", - "width": 70, - "x": -210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", - "width": 70, - "x": -140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", - "width": 70, - "x": -350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", - "width": 70, - "x": -280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", - "width": 70, - "x": -490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", - "width": 70, - "x": -420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", - "width": 70, - "x": -630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", - "width": 70, - "x": -560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", - "width": 70, - "x": -700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", - "width": 70, - "x": -910, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", - "width": 70, - "x": -840, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", - "width": 70, - "x": -770, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", - "width": 70, - "x": -910, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", - "width": 70, - "x": -910, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", - "width": 70, - "x": -910, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", - "width": 70, - "x": -910, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", - "width": 70, - "x": -910, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", - "width": 70, - "x": -910, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", - "width": 70, - "x": -910, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", - "width": 70, - "x": -910, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", - "width": 70, - "x": -910, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", - "width": 70, - "x": -840, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", - "width": 70, - "x": -770, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", - "width": 70, - "x": -700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", - "width": 70, - "x": -630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", - "width": 70, - "x": -490, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", - "width": 70, - "x": -420, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", - "width": 70, - "x": -560, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_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": "props_fences", - "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", - "width": 70, - "x": -350, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", - "width": 70, - "x": -1120, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", - "width": 70, - "x": -1120, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", - "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", - "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", - "width": 70, - "x": -1050, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", - "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", - "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", - "width": 70, - "x": -980, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", - "width": 70, - "x": -140, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", - "width": 70, - "x": -70, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", - "width": 70, - "x": -70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", - "width": 70, - "x": -70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": -241, - "y": 484, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -830, - "y": 549, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -830, - "y": 969, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -772, - "y": 771, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", - "width": 70, - "x": -980, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", - "width": 70, - "x": -980, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", - "width": 70, - "x": -980, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", - "width": 70, - "x": -980, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", - "width": 70, - "x": -1470, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", - "width": 70, - "x": -1120, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", - "width": 70, - "x": -1190, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", - "width": 70, - "x": -1050, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", - "width": 70, - "x": -1540, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", - "width": 70, - "x": -1400, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", - "width": 70, - "x": -1330, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", - "width": 70, - "x": -1260, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", - "width": 70, - "x": -1680, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", - "width": 70, - "x": -1680, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", - "width": 70, - "x": -1680, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", - "width": 70, - "x": -1680, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", - "width": 70, - "x": -1680, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", - "width": 70, - "x": -1680, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", - "width": 70, - "x": -1680, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", - "width": 70, - "x": -1680, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", - "width": 70, - "x": -980, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", - "width": 70, - "x": -980, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", - "width": 70, - "x": -980, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", - "width": 70, - "x": -980, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", - "width": 70, - "x": -1680, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", - "width": 70, - "x": -1680, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", - "width": 70, - "x": -1680, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", - "width": 70, - "x": -1680, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", - "width": 70, - "x": -1680, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", - "width": 70, - "x": -980, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", - "width": 70, - "x": -1680, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", - "width": 70, - "x": -1680, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", - "width": 70, - "x": -1680, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", - "width": 70, - "x": -1680, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", - "width": 70, - "x": -1330, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", - "width": 70, - "x": -1400, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", - "width": 70, - "x": -1470, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", - "width": 70, - "x": -1540, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", - "width": 70, - "x": -1050, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", - "width": 70, - "x": -1120, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", - "width": 70, - "x": -1190, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", - "width": 70, - "x": -1260, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", - "width": 70, - "x": -980, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", - "width": 70, - "x": -980, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1540, - "y": 1120, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", - "width": 70, - "x": -1680, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1610, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, - "x": -1470, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1120, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1190, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1050, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", - "width": 70, - "x": -1540, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", - "width": 70, - "x": -1400, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", - "width": 70, - "x": -1330, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", - "width": 70, - "x": -1260, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", - "width": 70, - "x": -1610, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", - "width": 70, - "x": -1610, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", - "width": 70, - "x": -980, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", - "width": 70, - "x": -980, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1540, - "y": 1330, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1540, - "y": 1610, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1540, - "y": 1820, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "props_foliage", - "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", - "width": 140, - "x": -1540, - "y": 2170, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", - "width": 70, - "x": -910, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", - "width": 70, - "x": -910, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", - "width": 70, - "x": -910, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", - "width": 70, - "x": -910, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", - "width": 70, - "x": -910, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", - "width": 70, - "x": -910, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", - "width": 70, - "x": -910, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", - "width": 70, - "x": 630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", - "width": 70, - "x": 490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", - "width": 70, - "x": 560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", - "width": 70, - "x": 350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", - "width": 70, - "x": 420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", - "width": 70, - "x": 210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", - "width": 70, - "x": 280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", - "width": 70, - "x": 140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", - "width": 70, - "x": 700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", - "width": 70, - "x": -350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", - "width": 70, - "x": -490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", - "width": 70, - "x": -420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", - "width": 70, - "x": -630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", - "width": 70, - "x": -560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", - "width": 70, - "x": -770, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", - "width": 70, - "x": -700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", - "width": 70, - "x": -840, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", - "width": 70, - "x": 0, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", - "width": 70, - "x": -140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", - "width": 70, - "x": -70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", - "width": 70, - "x": -280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", - "width": 70, - "x": -210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", - "width": 70, - "x": 70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", - "width": 70, - "x": 700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", - "width": 70, - "x": 700, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", - "width": 70, - "x": 630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", - "width": 70, - "x": 490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", - "width": 70, - "x": 560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", - "width": 70, - "x": 350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", - "width": 70, - "x": 420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", - "width": 70, - "x": 210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", - "width": 70, - "x": 280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", - "width": 70, - "x": 140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": 0, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", - "width": 70, - "x": 70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", - "width": 70, - "x": -140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", - "width": 70, - "x": -70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", - "width": 70, - "x": -280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", - "width": 70, - "x": -210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", - "width": 70, - "x": -490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", - "width": 70, - "x": -630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", - "width": 70, - "x": -560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", - "width": 70, - "x": -770, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", - "width": 70, - "x": -700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", - "width": 70, - "x": -840, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", - "width": 70, - "x": -910, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", - "width": 70, - "x": -2030, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", - "width": 70, - "x": -1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", - "width": 70, - "x": -1960, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", - "width": 70, - "x": -1960, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", - "width": 70, - "x": -1960, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", - "width": 70, - "x": -1960, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", - "width": 70, - "x": -1960, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", - "width": 70, - "x": -1960, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", - "width": 70, - "x": -1960, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", - "width": 70, - "x": -1960, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", - "width": 70, - "x": -1960, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", - "width": 70, - "x": -1960, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", - "width": 70, - "x": -1960, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", - "width": 70, - "x": -1960, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", - "width": 70, - "x": -1960, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", - "width": 70, - "x": -1960, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", - "width": 70, - "x": -1960, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", - "width": 70, - "x": -1960, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 85, - "layer": "", - "name": "basketball_hoop", - "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": "basketball", - "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, - "layer": "", - "locked": true, - "name": "building_rooftop", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 648, - "x": -1543, - "y": 1066, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 0, - "height": 490, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 490, - "x": -1470, - "y": 1755, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 626, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 626, - "x": 74, - "y": 424, - "zOrder": 200, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 700, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 700, - "x": -2660, - "y": 1470, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 606, - "layer": "", - "locked": true, - "name": "building_rooftop", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 606, - "x": -2624, - "y": 797, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", - "width": 70, - "x": -2030, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", - "width": 70, - "x": -2030, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", - "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", - "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", - "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", - "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", - "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", - "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", - "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", - "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", - "width": 70, - "x": -2380, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", - "width": 70, - "x": -2030, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", - "width": 70, - "x": -2100, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", - "width": 70, - "x": -2310, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", - "width": 70, - "x": -2240, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", - "width": 70, - "x": -2170, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", - "width": 70, - "x": -2660, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", - "width": 70, - "x": -2660, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", - "width": 70, - "x": -2660, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", - "width": 70, - "x": -2660, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", - "width": 70, - "x": -2660, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", - "width": 70, - "x": -2660, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", - "width": 70, - "x": -2660, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", - "width": 70, - "x": -2660, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", - "width": 70, - "x": -2660, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", - "width": 70, - "x": -2660, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", - "width": 70, - "x": -2660, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", - "width": 70, - "x": -2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", - "width": 70, - "x": -2450, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", - "width": 70, - "x": -2520, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", - "width": 70, - "x": -2590, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", - "width": 70, - "x": -2660, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", - "width": 70, - "x": -2660, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", - "width": 70, - "x": -2660, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", - "width": 70, - "x": -2660, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", - "width": 70, - "x": -2660, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", - "width": 70, - "x": -2660, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", - "width": 70, - "x": -2660, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", - "width": 70, - "x": -2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", - "width": 70, - "x": -2660, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", - "width": 70, - "x": -2660, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", - "width": 70, - "x": -2660, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", - "width": 70, - "x": -2660, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", - "width": 70, - "x": -2660, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", - "width": 70, - "x": -2660, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", - "width": 70, - "x": -2590, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", - "width": 70, - "x": -2520, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", - "width": 70, - "x": -2450, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", - "width": 70, - "x": -2380, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", - "width": 70, - "x": -2310, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", - "width": 70, - "x": -2240, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", - "width": 70, - "x": -2170, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", - "width": 70, - "x": -2100, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", - "width": 70, - "x": -2030, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", - "width": 70, - "x": -2590, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", - "width": 70, - "x": -2100, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", - "width": 70, - "x": -2520, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", - "width": 70, - "x": -2170, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", - "width": 70, - "x": -2240, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", - "width": 70, - "x": -2450, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", - "width": 70, - "x": -2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", - "width": 70, - "x": -2030, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", - "width": 70, - "x": -2100, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", - "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", - "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", - "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", - "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", - "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", - "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", - "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", - "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", - "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", - "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", - "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", - "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", - "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", - "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", - "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", - "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", - "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", - "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", - "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", - "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", - "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", - "width": 70, - "x": -2730, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", - "width": 70, - "x": -2730, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", - "width": 70, - "x": -2730, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", - "width": 70, - "x": -2730, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", - "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", - "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", - "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", - "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", - "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", - "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", - "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", - "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", - "width": 70, - "x": -2380, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", - "width": 70, - "x": -2310, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", - "width": 70, - "x": -2240, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", - "width": 70, - "x": -2590, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", - "width": 70, - "x": -1190, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", - "width": 70, - "x": -1120, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", - "width": 70, - "x": -1050, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", - "width": 70, - "x": -1400, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", - "width": 70, - "x": -1330, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", - "width": 70, - "x": -1260, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", - "width": 70, - "x": -1680, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", - "width": 70, - "x": -1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", - "width": 70, - "x": -1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", - "width": 70, - "x": -1470, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "basketball_court", - "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": "basketball_court", - "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": "basketball_court", - "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": "basketball_court", - "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": "basketball_hoop", - "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": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", - "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", - "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", - "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", - "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", - "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", - "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", - "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", - "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", - "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", - "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", - "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", - "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", - "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", - "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", - "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", - "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", - "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", - "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", - "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", - "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", - "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", - "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", - "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", - "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", - "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", - "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", - "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", - "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", - "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", - "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", - "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", - "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", - "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", - "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", - "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", - "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", - "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", - "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", - "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", - "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", - "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", - "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", - "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", - "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", - "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", - "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", - "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", - "width": 70, - "x": -1260, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", - "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", - "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "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": "road_sprite_all", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", - "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", - "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", - "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", - "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", - "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", - "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", - "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", - "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", - "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", - "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", - "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", - "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", - "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", - "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", - "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", - "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", - "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", - "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", - "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", - "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", - "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", - "width": 70, - "x": -2940, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", - "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", - "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", - "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", - "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", - "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", - "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", - "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", - "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", - "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", - "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", - "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", - "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", - "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", - "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", - "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", - "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", - "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", - "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", - "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", - "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", - "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", - "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", - "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", - "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", - "width": 70, - "x": -2800, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", - "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", - "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", - "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", - "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", - "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", - "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", - "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", - "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", - "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", - "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", - "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", - "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", - "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", - "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", - "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", - "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", - "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", - "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", - "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", - "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", - "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", - "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", - "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", - "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", - "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", - "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", - "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", - "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", - "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", - "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", - "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", - "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", - "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", - "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", - "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", - "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", - "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", - "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", - "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", - "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", - "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", - "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", - "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", - "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", - "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", - "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", - "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", - "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road_sprite_all", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", - "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", - "width": 70, - "x": -1960, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", - "width": 70, - "x": -1960, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", - "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", - "width": 70, - "x": -1960, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", - "width": 70, - "x": -1960, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", - "width": 70, - "x": -2030, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1960, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "persistentUuid": "f213373c-ee27-4b40-9713-d6ee5e0af152", - "width": 0, - "x": 1304, - "y": -210, - "zOrder": 113, - "numberProperties": [], - "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": 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": "weapon_reloading", - "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 1243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "locked": true, - "name": "building_rooftop", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "sealed": true, - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 490, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "props_decorations", - "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": "props_decorations", - "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": "props_fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", - "width": 70, - "x": 2100, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", - "width": 70, - "x": 2030, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", - "width": 70, - "x": 1960, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", - "width": 70, - "x": 1890, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", - "width": 70, - "x": 1820, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", - "width": 70, - "x": 1750, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", - "width": 70, - "x": 3010, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", - "width": 70, - "x": 3010, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", - "width": 70, - "x": 3010, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", - "width": 70, - "x": 2940, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", - "width": 70, - "x": 2870, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", - "width": 70, - "x": 2800, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", - "width": 70, - "x": 2730, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", - "width": 70, - "x": 2660, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", - "width": 70, - "x": 2590, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", - "width": 70, - "x": 2520, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", - "width": 70, - "x": 2450, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", - "width": 70, - "x": 2380, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", - "width": 70, - "x": 2310, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", - "width": 70, - "x": 2240, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", - "width": 70, - "x": 2170, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", - "width": 70, - "x": 3010, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", - "width": 70, - "x": 3010, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", - "width": 70, - "x": 3010, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", - "width": 70, - "x": 3010, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", - "width": 70, - "x": 3010, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", - "width": 70, - "x": 3010, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", - "width": 70, - "x": 3010, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", - "width": 70, - "x": 3010, - "y": 350, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", - "width": 70, - "x": 2940, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", - "width": 70, - "x": 3010, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", - "width": 70, - "x": 3010, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", - "width": 70, - "x": 3010, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", - "width": 70, - "x": 2450, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", - "width": 70, - "x": 2590, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", - "width": 70, - "x": 2520, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", - "width": 70, - "x": 2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", - "width": 70, - "x": 2730, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", - "width": 70, - "x": 2800, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", - "width": 70, - "x": 2870, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", - "width": 70, - "x": 2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", - "width": 70, - "x": 2170, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", - "width": 70, - "x": 2240, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", - "width": 70, - "x": 2310, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", - "width": 70, - "x": 2380, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", - "width": 70, - "x": 2030, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", - "width": 70, - "x": 1680, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", - "width": 70, - "x": 1890, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", - "width": 70, - "x": 1960, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", - "width": 70, - "x": 1750, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", - "width": 70, - "x": 1820, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", - "width": 70, - "x": 1680, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", - "width": 70, - "x": 1680, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", - "width": 70, - "x": 1680, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", - "width": 70, - "x": 1680, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", - "width": 70, - "x": 1680, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", - "width": 70, - "x": 1680, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", - "width": 70, - "x": 1680, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", - "width": 70, - "x": 1680, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1680, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", - "width": 70, - "x": 1680, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2240, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", - "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", - "width": 70, - "x": 2030, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", - "width": 70, - "x": 1890, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1750, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1820, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2870, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", - "width": 70, - "x": 2870, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", - "width": 70, - "x": 2870, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", - "width": 70, - "x": 2870, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", - "width": 70, - "x": 2870, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "building_rooftop", - "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": "building_rooftop", - "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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_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": "props_roadblock", - "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": "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": "props_roadblock", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "props_moveable", - "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": "", - "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": 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": 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": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "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": "props_roadblock", - "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_tiled_4", - "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_tiled_4", - "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_tiled_3", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "308ad9c0-3704-4801-8827-26bcd1798c33", - "width": 70, - "x": 420, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", - "width": 70, - "x": 490, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", - "width": 70, - "x": 560, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 168, - "layer": "", - "name": "door", - "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", - "width": 205, - "x": -2448, - "y": 893, - "zOrder": 12643564, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "5" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 127, - "layer": "", - "name": "door", - "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", - "width": 231, - "x": -1262, - "y": 1966, - "zOrder": 12643565, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 142, - "layer": "", - "name": "door", - "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", - "width": 139, - "x": -1176, - "y": 1325, - "zOrder": 12643566, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 194, - "layer": "", - "name": "door", - "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", - "width": 124, - "x": 1938, - "y": 1129, - "zOrder": 12643567, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "6" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 1289, - "layer": "Fade", - "name": "game_transition", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "ground_1", - "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", - "width": 1680, - "x": -910, - "y": -210, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "5c3e7176-be09-41ac-8269-d3ace2f2371d", - "width": 70, - "x": 0, - "y": 3010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "237d1536-4fd1-4a5c-8a73-1cd4ed60add0", - "width": 70, - "x": 0, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "props_fences", - "persistentUuid": "c605b6ec-1edf-495c-8d29-d5c714c3a0ea", - "width": 70, - "x": 1680, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78fe3d08-6e15-494f-a136-5ff9e7a0626a", - "width": 70, - "x": -210, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b4d252a-6b5b-460a-9a42-35bc6e19c4fa", - "width": 70, - "x": -280, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6caa23d7-ed59-4cbc-b67c-76de7feeed12", - "width": 70, - "x": -210, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c48aa9db-027c-4560-8dd2-18a708d39604", - "width": 70, - "x": -280, - "y": 910, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb8f8d9c-e647-4cb6-88b9-d0342f319e63", - "width": 70, - "x": -210, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76df59a4-f87d-49c0-bd6f-c1a8c8684853", - "width": 70, - "x": -280, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "88087dc3-c9d2-43ee-a015-3e6fb38ca20c", - "width": 70, - "x": -210, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec8ec0f0-4c02-44df-a0a4-030a7d08eafc", - "width": 70, - "x": -350, - "y": 770, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "121d4993-ef53-4451-8f86-892688e154e4", - "width": 70, - "x": -350, - "y": 630, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8984bad-a8f9-47c2-9116-3e90cfb1cc1b", - "width": 70, - "x": -350, - "y": 700, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99b670a1-8572-4782-97cb-513a598d6059", - "width": 70, - "x": -280, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f986bd4-2531-4926-a726-8dcc780318aa", - "width": 70, - "x": -280, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac9b1747-d05b-43c5-830f-2f81d55ad52a", - "width": 70, - "x": -210, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2511381-364e-4bf1-8371-61f70777e9ab", - "width": 70, - "x": -210, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f76fbe4-6471-4959-bee4-ea7968f8746c", - "width": 70, - "x": -280, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 626, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "e7b514b2-97b8-4e9c-9ea1-ed8a127f3679", - "width": 626, - "x": -795, - "y": 457, - "zOrder": 200, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "95952c6e-50a7-4fcf-a9a0-12899c0b91d5", - "width": 70, - "x": 490, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e650a56-601f-41af-b521-bf959db9dea1", - "width": 70, - "x": 420, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02f1e15d-2841-42f2-a7c9-ec2aa88bdb99", - "width": 70, - "x": -980, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7eabebcf-da6b-46aa-a492-8a048a37eb5e", - "width": 70, - "x": -980, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c753278a-75de-48cf-92d2-74d9198fa008", - "width": 70, - "x": 1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5d05599-ff2e-4a19-b553-7e0c5d2ea416", - "width": 70, - "x": 1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f3a0a4a-64f8-4c98-933c-389d23505f1f", - "width": 70, - "x": 1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": true, - "name": "sea_tiled_water", - "persistentUuid": "dc574f3c-0e4b-49aa-b47b-ad1ba2564ffe", - "sealed": true, - "width": 0, - "x": -10620, - "y": -7330, - "zOrder": -12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "405d6ded-99e2-4121-a8b1-1443f2202568", - "width": 0, - "x": 18, - "y": 96, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "info", - "type": "string", - "value": "hide Sea" - }, - { - "folded": true, - "name": "id", - "type": "string", - "value": "sea" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "f0e1911b-a40a-4d17-b752-4c88c231f1ac", - "width": 0, - "x": 18, - "y": 54, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "shadow" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "1d0de529-1976-49aa-995b-d6a7e22f8a7c", - "width": 0, - "x": 1671, - "y": 19, - "zOrder": 12643570, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_N", - "persistentUuid": "9dc9d21b-2551-47a7-9ba8-de2477d628b3", - "width": 1890, - "x": -3220, - "y": -280, - "zOrder": 12643576, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_N", - "persistentUuid": "944ff9df-5eb5-4138-ab44-389d729de5c0", - "width": 1820, - "x": 1540, - "y": -560, - "zOrder": 12643578, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "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_SE", - "persistentUuid": "75213ac3-53f4-4305-b31b-a1b82dfd36ae", - "width": 210, - "x": -2450, - "y": 770, - "zOrder": 12643590, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 3850, - "keepRatio": true, - "layer": "", - "name": "bridge_tiled_1", - "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_tiled_1", - "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": "player_crosshair", - "persistentUuid": "808484fa-24aa-4068-9347-4591d049c015", - "width": 0, - "x": -366, - "y": 1384, - "zOrder": 12643596, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 34, - "keepRatio": true, - "layer": "Debug", - "name": "debug_fps", - "persistentUuid": "7a76b0af-6c17-4bb9-b114-4c8700fe0ab5", - "width": 419, - "x": 630, - "y": 0, - "zOrder": 12643597, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_body", - "persistentUuid": "c90152c3-f5fd-4840-8342-c22364a67001", - "width": 0, - "x": -280, - "y": 1680, - "zOrder": 12643598, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "f56fa6f9-776f-432c-a128-396ffc5439fd", - "width": 0, - "x": -210, - "y": 1766, - "zOrder": 12643599, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_NE", - "persistentUuid": "63a52dd6-6deb-4f7c-a2aa-9971ca90a3e0", - "width": 70, - "x": 910, - "y": -350, - "zOrder": 12643601, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_NW", - "persistentUuid": "201fc58f-54bd-4655-b0d3-2c8e7ef6fd57", - "width": 0, - "x": 910, - "y": -350, - "zOrder": 12643602, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_NE", - "persistentUuid": "8d1d6c87-d360-41b1-96dc-a0592d41e37d", - "width": 70, - "x": 1470, - "y": -350, - "zOrder": 12643601, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1050, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_W", - "persistentUuid": "1a05da90-9fa7-459e-86e5-0e94b0f5e85f", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 490, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_E", - "persistentUuid": "159ea2d7-8a30-4d9e-8b96-b75581e57f6f", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1890, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "8abab0e2-4e45-4c53-b11c-0c2738b7b075", - "width": 210, - "x": 1260, - "y": -280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1610, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "664365c4-ed21-48c5-96ff-30c5b91675e4", - "width": 210, - "x": 980, - "y": -280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "dc3a9593-86ee-4e62-afe6-169594e868cd", - "width": 2730, - "x": -3430, - "y": 2520, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1400, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "d811e2a1-bde1-452d-a503-3841e3c51d3a", - "width": 210, - "x": -420, - "y": 1610, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "135860a8-628a-4bbb-9fdc-e024af60b664", - "width": 1890, - "x": -700, - "y": 1330, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 910, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "c2032357-ff3d-4576-a252-f16cdfbf28ab", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "e5223d12-e55d-419a-9522-9ff29737bea0", - "width": 1680, - "x": -210, - "y": 1610, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "a9d89074-bc37-4a08-9831-adcf8ea832f5", - "width": 2730, - "x": -3150, - "y": 2800, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1190, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "58b0eefc-1506-4df8-acd7-bb313f3ccaa2", - "width": 210, - "x": -700, - "y": 1540, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 630, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "07f62aa9-1cd2-458c-a781-e0a00d1528da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_N", - "persistentUuid": "d6c499c8-8097-4986-bafe-d6e2fbd5a0ef", - "width": 490, - "x": 980, - "y": -350, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1540, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_W", - "persistentUuid": "204e4ba1-7225-461b-a951-99fc1f54abd8", - "width": 70, - "x": 910, - "y": -280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_S", - "persistentUuid": "ebf3f2c2-cd25-42fa-a2f6-ed79493363fb", - "width": 1610, - "x": -140, - "y": 1820, - "zOrder": 12643603, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 2100, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_E", - "persistentUuid": "3b4a2e94-ec5c-4e16-b870-6d029118ccbe", - "width": 70, - "x": 1470, - "y": -280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_S", - "persistentUuid": "2e0bb4ae-a254-492b-9cc7-b32904d439ae", - "width": 2660, - "x": -2870, - "y": 3010, - "zOrder": 12643604, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_N", - "persistentUuid": "24716a88-c015-41e5-84e9-e31201b39ca7", - "width": 2660, - "x": -3430, - "y": 2450, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_N", - "persistentUuid": "10818b17-ff00-47dd-928e-a34cf1cb9b18", - "width": 1610, - "x": -700, - "y": 1260, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1120, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_W", - "persistentUuid": "6d5fbd31-2f18-4a05-95cf-c5a45a1c74ae", - "width": 70, - "x": -770, - "y": 1330, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1120, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_E", - "persistentUuid": "e73b5e84-ec07-4cd2-b436-43a6ea7fcc77", - "width": 70, - "x": -210, - "y": 1890, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_NW", - "persistentUuid": "d2ccc137-8250-4f9a-a9d3-950726041243", - "width": 0, - "x": -3500, - "y": 2450, - "zOrder": 12643605, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_NW", - "persistentUuid": "222088f2-3dcd-4627-8a0b-0f72150a5489", - "width": 0, - "x": -770, - "y": 1260, - "zOrder": 12643606, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_SE", - "persistentUuid": "297a69df-a4e6-4326-a8a3-3d2c3eee6041", - "width": 0, - "x": 1470, - "y": 1820, - "zOrder": 12643607, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_SE", - "persistentUuid": "5a7c66d1-e309-42c1-9a33-5b4556dba759", - "width": 0, - "x": -210, - "y": 3010, - "zOrder": 12643608, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1540, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "f3b0efc5-56d0-441f-8cdc-2b8ce8cc6544", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 12643609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 1330, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "9e3a4099-572d-449f-bd2c-b744df20e997", - "width": 70, - "x": 350, - "y": 910, - "zOrder": 12643609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 840, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "f9803b41-97d8-4aed-b5ab-cccbb49cb998", - "width": 70, - "x": -490, - "y": 1750, - "zOrder": 12643609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 700, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "2cbc5947-de6c-431e-980a-1cc9446c5194", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 12643609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 2380, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "ece11342-7104-494a-a21a-fcc38b8fe922", - "width": 70, - "x": -1855, - "y": 1575, - "zOrder": 12643609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "dae58683-f9e9-4bd1-b47e-9beb03fc89da", - "width": 0, - "x": -630, - "y": 2730, - "zOrder": 12643610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "af09b859-949c-40fb-866f-73601b2faad1", - "width": 0, - "x": -490, - "y": 1680, - "zOrder": 12643610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 140, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "a58123ea-1648-4f02-8896-4a1dd8a22661", - "width": 70, - "x": -490, - "y": 2660, - "zOrder": 12643611, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "79499d42-4175-40a3-a096-ebb1d5ba0c3b", - "width": 0, - "x": -560, - "y": 2730, - "zOrder": 12643612, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "8615bbdc-5c16-4cbb-9d2f-e14957c47c52", - "width": 0, - "x": -490, - "y": 2590, - "zOrder": 12643610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "b6a835a7-261c-46d2-971e-59fff8abd689", - "width": 0, - "x": -350, - "y": 1540, - "zOrder": 12643610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "4f05718c-ee45-40b7-8e69-5fb2b6b2c05d", - "width": 140, - "x": -490, - "y": 1540, - "zOrder": 12643613, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "795d20bb-b23b-4c25-bcf0-1ee74d307bff", - "width": 0, - "x": -490, - "y": 1610, - "zOrder": 12643614, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "6412b917-e0a1-4f61-8b37-fd2a34f0027f", - "width": 0, - "x": 1050, - "y": 1540, - "zOrder": 12643615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "dc478b2c-dd26-410f-a181-03a08d2a081c", - "width": 0, - "x": 1190, - "y": 1400, - "zOrder": 12643615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 140, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "2b721e53-25dd-40a9-addf-71d5ce7023fd", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 12643616, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "a059b481-1225-4e46-8fdd-ac876181fa40", - "width": 0, - "x": 1120, - "y": 1540, - "zOrder": 12643617, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "b50cef1e-f2f1-4838-9c8e-8b4f75eb20e8", - "width": 0, - "x": 1190, - "y": -210, - "zOrder": 12643618, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "3c633156-3d7c-44ab-aaca-11c327851c60", - "width": 0, - "x": 1190, - "y": -280, - "zOrder": 12643619, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "8fdfe779-3f64-4b74-af4c-0246656fcae0", - "width": 0, - "x": 1050, - "y": -211, - "zOrder": 113, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "384816e7-4f12-474e-9951-8223eead88ce", - "width": 0, - "x": -3220, - "y": 2870, - "zOrder": 12643620, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_end", - "persistentUuid": "ae77df97-1b82-46e7-95d4-ce86bf5a3e5e", - "width": 0, - "x": -3080, - "y": 2730, - "zOrder": 12643620, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "438469ee-addd-4efa-a7af-8d0024b3cc2a", - "width": 140, - "x": -3220, - "y": 2730, - "zOrder": 12643621, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "e1379bcb-11fe-48b8-a099-4cc0b00afefb", - "width": 0, - "x": -3220, - "y": 2800, - "zOrder": 12643622, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_curve", - "persistentUuid": "53ec6ffe-d8b8-4035-b8ea-2fff45750229", - "width": 0, - "x": -2940, - "y": 3010, - "zOrder": 12643623, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_curve", - "persistentUuid": "7c32ca84-b45c-4eb1-bde6-178db26a2708", - "width": 0, - "x": -770, - "y": 2450, - "zOrder": 12643624, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_curve", - "persistentUuid": "01e0c84e-a1c8-402e-97a7-91134d0b7d31", - "width": 0, - "x": -210, - "y": 1820, - "zOrder": 12643625, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_curve", - "persistentUuid": "6c51ad33-a657-49ac-bfad-6abb7f0289ce", - "width": 0, - "x": 910, - "y": 1260, - "zOrder": 12643626, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "edge_sand_NW", - "persistentUuid": "4f3c1dd4-a405-4219-bbf5-1ede4b98a45b", - "width": 0, - "x": -3290, - "y": -280, - "zOrder": 12643627, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "beach_sand_W", - "persistentUuid": "edb642a5-d75f-42c3-a804-d9c95ab4fc02", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 12643628, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "edge_sand_NW", - "persistentUuid": "7bb51c47-83cc-4bf1-a891-74ff1c1f4b35", - "width": 0, - "x": -1330, - "y": -560, - "zOrder": 12643629, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_NE", - "persistentUuid": "b7c7eba4-6b0c-4799-a21d-4f9ce52c1a27", - "width": 0, - "x": 910, - "y": -560, - "zOrder": 12643630, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_N", - "persistentUuid": "e0cb5ee2-bfa7-4352-8c0c-b44204ac13df", - "width": 490, - "x": 980, - "y": -490, - "zOrder": 12643631, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "edge_sand_NW", - "persistentUuid": "153f9d79-1658-4b8d-ad20-e1b832af8618", - "width": 0, - "x": 1470, - "y": -560, - "zOrder": 12643632, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_N", - "persistentUuid": "04d0bde4-0058-4a5c-8fb7-f9b92afbd6e5", - "width": 2170, - "x": -1260, - "y": -560, - "zOrder": 12643578, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_NE", - "persistentUuid": "de88bac6-34a5-4d77-bc74-b2e2cc1407ca", - "width": 0, - "x": 3360, - "y": -560, - "zOrder": 12643633, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1610, - "keepRatio": true, - "layer": "", - "name": "beach_sand_E", - "persistentUuid": "317d9cde-3d96-4b38-9f56-6d879bf4843f", - "width": 70, - "x": 3360, - "y": -490, - "zOrder": 12643634, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "persistentUuid": "fb4c60e1-64ac-456c-ae58-32ea23228b3d", - "width": 0, - "x": 3360, - "y": 1120, - "zOrder": 12643635, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "29a22fa3-559d-40f4-83de-770d8bd445b8", - "width": 0, - "x": 3290, - "y": 1120, - "zOrder": 12643636, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1960, - "keepRatio": true, - "layer": "", - "name": "beach_sand_E", - "persistentUuid": "89c61eed-80cc-440c-94c9-e350811a7949", - "width": 70, - "x": 3220, - "y": 1190, - "zOrder": 12643637, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "persistentUuid": "047f949d-b890-4fb9-8347-f2819a64a7b4", - "width": 0, - "x": 3220, - "y": 3150, - "zOrder": 12643638, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "88327087-3722-490b-a632-c0140a71dcf9", - "width": 1190, - "x": 2030, - "y": 3150, - "zOrder": 12643639, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 280, - "keepRatio": true, - "layer": "", - "name": "beach_sand_E", - "persistentUuid": "af5ef1dc-df41-4956-8e98-f424978aa790", - "width": 70, - "x": 1960, - "y": 3220, - "zOrder": 12643640, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "persistentUuid": "0aa5a1b4-d29c-4164-9acb-fd07158b26ee", - "width": 0, - "x": 1960, - "y": 3500, - "zOrder": 12643641, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "0686ccca-8161-42ca-937c-47c39826bb97", - "width": 2240, - "x": -280, - "y": 3500, - "zOrder": 12643642, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "ca9ae191-44cb-4216-b871-a96dbe3c2a61", - "width": 2170, - "x": -2520, - "y": 3360, - "zOrder": 12643643, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 210, - "keepRatio": true, - "layer": "", - "name": "beach_sand_E", - "persistentUuid": "170b6f05-b412-42e8-b8f7-6cee51516553", - "width": 70, - "x": -2590, - "y": 3430, - "zOrder": 12643644, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1470, - "keepRatio": true, - "layer": "", - "name": "beach_sand_W", - "persistentUuid": "89941866-aed4-4219-a9ce-3b82cdf1037a", - "width": 70, - "x": -3850, - "y": 2170, - "zOrder": 12643645, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SW", - "persistentUuid": "c740f39e-f0de-47da-a0d6-46ca98e1ab3f", - "width": 0, - "x": -3850, - "y": 3640, - "zOrder": 12643646, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "c6c0cf1d-0da1-43a8-8686-89e1716902ce", - "width": 140, - "x": -3780, - "y": 3640, - "zOrder": 12643647, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "persistentUuid": "72a41aa9-68af-4092-8b72-9016da8ff9ec", - "width": 0, - "x": -3640, - "y": 3640, - "zOrder": 12643648, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SE", - "persistentUuid": "6aec6472-6a54-433a-9e87-e0822a8d3be6", - "width": 0, - "x": -2590, - "y": 3640, - "zOrder": 12643649, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_S", - "persistentUuid": "d1bfb581-1d11-4842-8c3b-c0cc0dc1acdf", - "width": 140, - "x": -2730, - "y": 3640, - "zOrder": 12643650, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SW", - "persistentUuid": "6a889b8a-a8fc-4709-a3c6-9e6dbb0c4809", - "width": 0, - "x": -2800, - "y": 3640, - "zOrder": 12643651, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 2310, - "keepRatio": true, - "layer": "", - "name": "beach_sand_W", - "persistentUuid": "d19bba29-a93d-45b3-8408-6c6482c59458", - "width": 70, - "x": -3290, - "y": -210, - "zOrder": 12643652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "edge_sand_NW", - "persistentUuid": "c0d90d08-48cf-444e-850e-69f02ea68d2c", - "width": 0, - "x": -3850, - "y": 2100, - "zOrder": 12643653, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "keepRatio": true, - "layer": "", - "name": "beach_sand_N", - "persistentUuid": "284e309f-56da-47ef-8c55-9ada8f0aa4e7", - "width": 490, - "x": -3780, - "y": 2100, - "zOrder": 12643654, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_W", - "persistentUuid": "84917365-bbb5-425b-9f75-c995c04a971c", - "width": 0, - "x": -350, - "y": 3430, - "zOrder": 12643655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "beach_sand_SW", - "persistentUuid": "187bc06d-297a-4de6-b28e-ca34c4ea086a", - "width": 0, - "x": -350, - "y": 3500, - "zOrder": 12643656, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "7892f520-8b5e-4869-8843-1786d6a4e453", - "width": 0, - "x": -210, - "y": 1696, - "zOrder": 12643599, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "grass", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets/environment/foliage/grass/grass_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_sprite_all", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "building_rooftop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Effect", - "doubleParameters": { - "alpha": 0.5, - "blur": 2, - "distance": 20, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 174.5, - "y": 73.5 - }, - { - "x": 827.5, - "y": 74 - }, - { - "x": 826.5, - "y": 927 - }, - { - "x": 175.5, - "y": 926 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 53, - "y": 197.5 - }, - { - "x": 906.5, - "y": 198 - }, - { - "x": 906, - "y": 846 - }, - { - "x": 56, - "y": 849.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 111, - "y": 295 - }, - { - "x": 893, - "y": 297.5 - }, - { - "x": 893, - "y": 703 - }, - { - "x": 107, - "y": 705 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/path/sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/placeholder/door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flame_thrower_fire_collision", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [ - { - "name": "CenterBurning", - "x": 50, - "y": 16 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "player_crosshair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/crosshair/crosshair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun4", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "tazer_hitbox", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun5", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": -15, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": -15, - "y": 4.852940082550049 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Slash1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "energy", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "strength", - "type": "number", - "value": 10 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 26, - "y": 26 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26.121299743652344, - "y": 26.470600128173828 - }, - { - "x": 63.474300384521484, - "y": 26.470600128173828 - }, - { - "x": 63.76839828491211, - "y": 37.058799743652344 - }, - { - "x": 26.7096004486084, - "y": 37.647098541259766 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 40 - }, - { - "x": 37, - "y": 40 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_roadblock", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bullet", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", - "points": [ - { - "name": "effects_bullet", - "x": 31.95669937133789, - "y": 3.863640069961548 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_ammo_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - } - ], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_holding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "house_enter", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sea_tiled_water_cover", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - } - ] - }, - { - "assetStoreId": "", - "height": 20000, - "name": "sea_tiled_water", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 20000, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_hoop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/sport/basketball/hoop/hoop.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 76.5, - "y": 56 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 8.5 - }, - { - "x": 66, - "y": 17.5 - }, - { - "x": 67, - "y": 93.5 - }, - { - "x": 0, - "y": 103.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets/environment/sport/basketball/ground/ground_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_court", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ground_elements/element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "debug menu - \"h\" to toggle menu visibility", - "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": "debug menu - \"h\" to toggle menu visibility", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "112;112;112" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_decorations", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/decoration/decoration_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 272, - "y": 248 - }, - { - "x": 357, - "y": 258 - }, - { - "x": 353, - "y": 322 - }, - { - "x": 269.5, - "y": 307 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_moveable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_11.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bridge_sprite_1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\bridge\\bridge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_tiled_4", - "texture": "assets\\Road\\road\\tile_35-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_tiled_3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets/environment/tile/path/concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 64, - "name": "road_tiled_white_N", - "texture": "assets/environment/tile/road/road_11.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 64, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_tiled_2", - "texture": "assets\\Road\\road\\tile_63-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_W", - "texture": "assets/environment/tile/map_edge/map_edge_12.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "edge_sand_NW", - "texture": "assets/environment/tile/map_edge/map_edge_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SW", - "texture": "assets/environment/tile/map_edge/map_edge_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_2", - "texture": "assets\\Road\\map_edge\\tile_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 1, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1, - "useLegacyBottomAndRightAnchors": false - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "name": "debug_toggle", - "type": "PrimitiveDrawing::Drawer", - "variables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "info", - "type": "string", - "value": "enable Shadow" - } - ], - "effects": [], - "behaviors": [ - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch", - "ThumbRadius": 10, - "ActiveThumbColor": "24;119;211", - "ThumbOpacity": 255, - "TrackWidth": 20, - "TrackHeight": 14, - "InactiveTrackColor": "150;150;150", - "InactiveTrackOpacity": 255, - "ActiveTrackColor": "", - "ActiveTrackOpacity": 128, - "HaloRadius": 24, - "HaloOpacityHover": 32, - "HaloOpacityPressed": 64, - "ThumbOffset": 0, - "Checked": false, - "Disabled": false, - "ToggleChanged": false, - "InactiveThumbColor": "255;255;255", - "IsPressed": false, - "ThumbShadowOffsetY": 4, - "ThumbShadowOffsetX": 0, - "ThumbShadowOpacity": 32, - "NeedRedaw": true, - "IsHovered": false, - "WasHovered": false - } - ], - "fillOpacity": 255, - "outlineSize": 1, - "outlineOpacity": 255, - "fillColor": { - "b": 255, - "g": 255, - "r": 255 - }, - "outlineColor": { - "b": 0, - "g": 0, - "r": 0 - }, - "absoluteCoordinates": false, - "clearBetweenFrames": true, - "antialiasing": "none" - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_frame", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "Outline", - "name": "Effect", - "doubleParameters": { - "padding": 0, - "thickness": 1 - }, - "stringParameters": { - "color": "29;29;27" - }, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_1.png", - "points": [ - { - "name": "1", - "x": 50, - "y": 370.5 - }, - { - "name": "2", - "x": 115, - "y": 370.5 - }, - { - "name": "3", - "x": 180, - "y": 370.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 224, - "y": 0 - }, - { - "x": 224, - "y": 418 - }, - { - "x": 0, - "y": 418 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_mask", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "ColorReplace", - "name": "Effect", - "doubleParameters": { - "epsilon": 0.4 - }, - "stringParameters": { - "newColor": "0;0;0", - "originalColor": "255;255;255" - }, - "booleanParameters": {} - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 215, - "y": 0 - }, - { - "x": 215, - "y": 417 - }, - { - "x": 0, - "y": 417 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "id", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "images", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "camera", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_wallpaper", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 100, - "RadiusY": 0, - "LoopDuration": 20, - "InitialTurningLeft": false, - "InitialDirectionAngle": 0, - "ShouldRotate": false, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "uziSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uziSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLongSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "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": [] - } - ] - } - ] - }, - { - "name": "uziLong", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uzi", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 52.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "sniper", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 200.5, - "y": 54.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgunShort", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/shotgunShort.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 98, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgun", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/shotgun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 97.5, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncherModern", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/rocketlauncherModern.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 152.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncher", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 199.5, - "y": 71 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistolSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/pistolSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 79.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistol", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/pistol.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 57.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/machinegunLauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116, - "y": 51.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/machinegun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116.5, - "y": 52 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knifeRound_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15.5, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knifeRound_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 68 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knife_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 69 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/knife_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeVintage.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 19.5, - "y": 74 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeSmoke.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 18.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenadeFlash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/grenade.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 22.5, - "y": 34 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/flamethrower_short.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 106.5, - "y": 41 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapons/icons/flamethrower_long.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 114, - "y": 40.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "weapon_bar", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapons/icons/bar.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 112, - "y": 0 - }, - { - "x": 1807, - "y": 0 - }, - { - "x": 1807, - "y": 296 - }, - { - "x": 112, - "y": 296 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weaponWheelSticker", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_N", - "texture": "assets/environment/tile/map_edge/map_edge_2.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_E", - "texture": "assets/environment/tile/map_edge/map_edge_5.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SE", - "texture": "assets/environment/tile/map_edge/map_edge_7.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_NE", - "texture": "assets/environment/tile/map_edge/map_edge_4.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 302, - "name": "bridge_tiled_1", - "texture": "assets/bridge/bridge.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 300, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_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" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "name": "Movement", - "type": "structure", - "children": [ - { - "folded": true, - "name": "handTweenDuration", - "type": "number", - "value": 0.5 - }, - { - "folded": true, - "name": "legTweenDuration", - "type": "number", - "value": 0.5 - } - ] - }, - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ], - "effects": [], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 400, - "customIsometryAngle": 30, - "deceleration": 800, - "ignoreDefaultControls": false, - "maxSpeed": 200, - "movementAngleOffset": 0, - "rotateObject": true, - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_1.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_2.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_3.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_4.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_5.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_6.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_7.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_8.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_9.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NE", - "texture": "assets/environment/tile/road/road_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NW", - "texture": "assets/environment/tile/road/road_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_W", - "texture": "assets/environment/tile/road/road_8.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_E", - "texture": "assets/environment/tile/road/road_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_center", - "texture": "assets/environment/tile/road/road_43.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_S", - "texture": "assets/environment/tile/road/road_27.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SE", - "texture": "assets/environment/tile/road/road_31.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SW", - "texture": "assets/environment/tile/road/road_30.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_inner", - "texture": "assets/environment/tile/road/road_24.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_end", - "texture": "assets/environment/tile/road/road_39.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_curve", - "texture": "assets/environment/tile/road/road_13.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_S", - "texture": "assets/environment/tile/map_edge/map_edge_9.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "folderName": "UI", - "children": [ - { - "folderName": "weapon", - "children": [ - { - "objectName": "NewObject" - }, - { - "objectName": "weapon_icons" - } - ] - }, - { - "folderName": "phone", - "children": [ - { - "objectName": "phone_icon" - }, - { - "objectName": "phone_frame" - }, - { - "objectName": "phone_mask" - }, - { - "objectName": "phone_wallpaper" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "phone_wifi" - } - ] - }, - { - "folderName": "debug", - "children": [ - { - "objectName": "wheel_info" - }, - { - "objectName": "weapon_holding" - }, - { - "objectName": "weapon_reloading" - }, - { - "objectName": "debug_fps" - }, - { - "objectName": "debug_toggle" - }, - { - "objectName": "debug_text" - }, - { - "objectName": "debug_ammo_text" - } - ] - } - ] - }, - { - "folderName": "Environment", - "children": [ - { - "folderName": "particles", - "children": [ - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "brown_leaves_particle" - } - ] - }, - { - "folderName": "sports", - "children": [ - { - "folderName": "basketball", - "children": [ - { - "objectName": "basketball_hoop" - }, - { - "objectName": "basketball_court" - }, - { - "objectName": "basketball" - } - ] - } - ] - }, - { - "folderName": "props", - "children": [ - { - "objectName": "props_moveable" - }, - { - "objectName": "props_decorations" - }, - { - "objectName": "props_fences" - }, - { - "objectName": "props_roadblock" - }, - { - "objectName": "props_foliage" - } - ] - } - ] - }, - { - "folderName": "Player", - "children": [ - { - "objectName": "player_crosshair" - }, - { - "objectName": "player_body" - }, - { - "objectName": "player_hand" - }, - { - "objectName": "player_leg" - } - ] - }, - { - "folderName": "Land", - "children": [ - { - "objectName": "edge_sand_NW" - }, - { - "objectName": "beach_sand_NE" - }, - { - "objectName": "beach_sand_N" - }, - { - "objectName": "beach_sand_E" - }, - { - "objectName": "beach_sand_S" - }, - { - "objectName": "beach_sand_SE" - }, - { - "objectName": "beach_sand_SW" - }, - { - "objectName": "beach_sand_W" - }, - { - "objectName": "sand_2" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "sand" - }, - { - "objectName": "grass_tiled" - }, - { - "objectName": "grass" - } - ] - }, - { - "folderName": "Road", - "children": [ - { - "objectName": "road_tiled_white_N" - }, - { - "objectName": "road_tiled_white_NE" - }, - { - "objectName": "road_tiled_white_NW" - }, - { - "objectName": "road_tiled_white_SE" - }, - { - "objectName": "road_tiled_white_SW" - }, - { - "objectName": "road_tiled_white_W" - }, - { - "objectName": "road_tiled_white_E" - }, - { - "objectName": "road_tiled_white_S" - }, - { - "objectName": "road_tiled_white_inner" - }, - { - "objectName": "road_tiled_white_center" - }, - { - "objectName": "road_tiled_white_end" - }, - { - "objectName": "road_tiled_white_curve" - }, - { - "objectName": "road_tiled_2" - }, - { - "objectName": "bridge_sprite_1" - }, - { - "objectName": "bridge_tiled_1" - }, - { - "objectName": "road_tiled_3" - }, - { - "objectName": "road_tiled_4" - }, - { - "objectName": "road_sprite_all" - } - ] - }, - { - "folderName": "Weapons", - "children": [ - { - "folderName": "Icons", - "children": [ - { - "objectName": "weapon_icon" - }, - { - "objectName": "weapon_bar" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_rocket" - } - ] - }, - { - "folderName": "type", - "children": [ - { - "folderName": "melee", - "children": [ - { - "objectName": "mele1" - }, - { - "objectName": "mele2" - } - ] - }, - { - "folderName": "gun", - "children": [ - { - "objectName": "gun1" - }, - { - "objectName": "gun3" - }, - { - "objectName": "gun4" - }, - { - "objectName": "gun5" - }, - { - "objectName": "gun2" - } - ] - } - ] - }, - { - "folderName": "hitbox", - "children": [ - { - "objectName": "flame_thrower_fire_collision" - }, - { - "objectName": "tazer_hitbox" - }, - { - "objectName": "Slash1" - } - ] - }, - { - "folderName": "ammo", - "children": [ - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "bullet" - }, - { - "objectName": "energy" - }, - { - "objectName": "ammo" - } - ] - } - ] - }, - { - "folderName": "Buildings", - "children": [ - { - "objectName": "building_rooftop" - } - ] - }, - { - "folderName": "Sea", - "children": [ - { - "objectName": "sea_tiled_water" - }, - { - "objectName": "sea_tiled_water_cover" - } - ] - }, - { - "folderName": "misc", - "children": [ - { - "objectName": "house_enter" - }, - { - "objectName": "door" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "weaponWheelSticker" - } - ] - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "folded": true, - "name": "Note - Important Information", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "-50" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sea_tiled_water", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_SW", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "edge_sand_NW", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_W", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sea_tiled_water_cover", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "road_sprite_all", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_NE", - "=", - "-11" - ] - } - ] - }, - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "building_rooftop", - "=", - "120" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "props_foliage", - "=", - "121" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "sea_tiled_water_cover" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "IntroZoom", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ZoomCamera" - }, - "parameters": [ - "", - "0.35", - "", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.3" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.35", - "", - "\"elastic\"", - "1" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.2" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.5", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0.1" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.75", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"Vignetting\"", - "\"sepia\"", - "0" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "1", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "ToggleGlobalVariableAsBoolean" - }, - "parameters": [ - "Game.intro" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Game.Camera.Zoom", - "=", - "1" - ] - } - ] - }, - { - "disabled": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::JsCode", - "inlineCode": [ - "console.time();", - "for (var i = 0; i < 100000; i++) {", - " let square = i ** 2;", - "}", - "console.timeEnd();" - ], - "parameterObjects": "", - "useStrict": true, - "eventsSheetExpanded": false - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "LightNight", - "name": "LightNight", - "doubleParameters": { - "opacity": 0.5 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "OldFilm", - "name": "Vignetting", - "doubleParameters": { - "animationFrequency": 0, - "noise": 0, - "noiseSize": 0, - "scratch": 0, - "scratchDensity": 0.3, - "scratchWidth": 1, - "sepia": 0, - "vignetting": 0.3, - "vignettingAlpha": 0.5, - "vignettingBlur": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "TiltShift", - "name": "weaponwhe", - "doubleParameters": { - "blur": 0, - "gradientBlur": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "UI", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Debug", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/game_world.json b/src/layouts/game_world.json index e3b36db1d..22ab566e3 100644 --- a/src/layouts/game_world.json +++ b/src/layouts/game_world.json @@ -18,7 +18,7 @@ "gridColor": 10401023, "gridAlpha": 0.8, "snap": true, - "zoomFactor": 0.6741437575981505, + "zoomFactor": 0.7203750000000716, "windowMask": false }, "objectsGroups": [ @@ -1778,6 +1778,40 @@ "numberProperties": [], "stringProperties": [], "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 342, + "keepRatio": true, + "layer": "", + "name": "props_moveable", + "persistentUuid": "9e8395bb-c366-4f04-a6f3-5f11620484c9", + "width": 464, + "x": -630, + "y": 1120, + "zOrder": 576224256, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 210, + "keepRatio": true, + "layer": "", + "name": "props_foliage", + "persistentUuid": "efd1f47d-088f-43c2-b2b3-e01bedb88f8a", + "width": 210, + "x": -654, + "y": 1177, + "zOrder": 12643691, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] } ], "objects": [ @@ -9426,7 +9460,6 @@ "type": "BuiltinCommonInstructions::Group", "events": [ { - "folded": true, "type": "BuiltinCommonInstructions::Standard", "conditions": [ { @@ -9444,9 +9477,9 @@ "value": "ChangePlan" }, "parameters": [ - "building_rooftop", + "Road", "=", - "120" + "-1" ] }, { @@ -9454,47 +9487,39 @@ "value": "ChangePlan" }, "parameters": [ - "props_foliage", + "Sea", "=", - "121" + "-2" ] }, { "type": { - "value": "Cache" + "value": "ChangePlan" }, "parameters": [ - "sea_tiled_water_cover" + "grass_tiled", + "=", + "0" ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ + }, { "type": { - "value": "DepartScene" + "value": "ChangePlan" }, "parameters": [ - "" + "sand_tiled_1", + "=", + "1" ] - } - ], - "actions": [ + }, { "type": { "value": "ChangePlan" }, "parameters": [ - "Road", + "sand_tiled_2", "=", - "-1" + "1" ] }, { @@ -9502,9 +9527,9 @@ "value": "ChangePlan" }, "parameters": [ - "Sea", + "Beach_Sand", "=", - "-2" + "1" ] }, { @@ -9512,9 +9537,9 @@ "value": "ChangePlan" }, "parameters": [ - "grass_tiled", + "player_body", "=", - "0" + "95" ] }, { @@ -9522,9 +9547,9 @@ "value": "ChangePlan" }, "parameters": [ - "sand_tiled_1", + "player_leg", "=", - "1" + "93" ] }, { @@ -9532,9 +9557,9 @@ "value": "ChangePlan" }, "parameters": [ - "sand_tiled_2", + "player_hand", "=", - "1" + "94" ] }, { @@ -9542,9 +9567,47 @@ "value": "ChangePlan" }, "parameters": [ - "Beach_Sand", + "uziLong_hold", "=", - "1" + "96" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "building_rooftop", + "=", + "120" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "props_foliage", + "=", + "121" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "props_moveable", + "=", + "119" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "sea_tiled_water_cover" ] } ] diff --git a/src/layouts/game_world_e.json b/src/layouts/game_world_e.json deleted file mode 100644 index badd3507f..000000000 --- a/src/layouts/game_world_e.json +++ /dev/null @@ -1,9178 +0,0 @@ -{ - "b": 232, - "disableInputWhenNotFocused": true, - "mangledName": "Game_95World_95E", - "name": "Game_World_E", - "r": 102, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 165, - "uiSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.3250014140240978, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "Phone_Status_Bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - }, - { - "name": "Game_Static", - "objects": [ - { - "name": "building_rooftop" - }, - { - "name": "props_foliage" - }, - { - "name": "basketball_hoop" - }, - { - "name": "props_decorations" - }, - { - "name": "props_roadblock" - }, - { - "name": "props_fences" - } - ] - }, - { - "name": "Weapon_Bar", - "objects": [ - { - "name": "weapon_icon" - }, - { - "name": "weapon_bar" - }, - { - "name": "weaponWheelSticker" - } - ] - }, - { - "name": "Road", - "objects": [ - { - "name": "road_tiled_white_N" - }, - { - "name": "road_tiled_white_NE" - }, - { - "name": "road_tiled_white_NW" - }, - { - "name": "road_tiled_white_W" - }, - { - "name": "road_tiled_white_E" - }, - { - "name": "road_tiled_white_center" - }, - { - "name": "road_tiled_white_S" - }, - { - "name": "road_tiled_white_SE" - }, - { - "name": "road_tiled_white_SW" - }, - { - "name": "road_tiled_white_inner" - }, - { - "name": "road_tiled_white_curve_right" - }, - { - "name": "road_tiled_white_curve_left" - }, - { - "name": "road_tiled_white_end" - } - ] - }, - { - "name": "Sea", - "objects": [ - { - "name": "sea_tiled_water_cover" - }, - { - "name": "sea_tiled_water" - } - ] - }, - { - "name": "Beach_Sand", - "objects": [ - { - "name": "beach_sand_W" - }, - { - "name": "beach_sand_SW" - }, - { - "name": "beach_sand_N" - }, - { - "name": "beach_sand_SE" - }, - { - "name": "beach_sand_NE" - }, - { - "name": "beach_sand_S" - }, - { - "name": "beach_sand_inner_SW" - }, - { - "name": "beach_sand_E" - } - ] - }, - { - "name": "Weapon_Pick", - "objects": [ - { - "name": "uziLong_pick" - } - ] - }, - { - "name": "Weapon_Hold", - "objects": [ - { - "name": "uziGold_hold" - }, - { - "name": "uziLong_hold" - } - ] - } - ], - "variables": [ - { - "folded": true, - "name": "DebugVariables", - "type": "structure", - "children": [ - { - "name": "shadowAdder", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Game", - "type": "structure", - "children": [ - { - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Zoom", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "folded": true, - "name": "GodMode", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Player", - "type": "structure", - "children": [ - { - "folded": true, - "name": "WeaponWheel", - "type": "structure", - "children": [ - { - "folded": true, - "name": "adder", - "type": "number", - "value": 0 - } - ] - }, - { - "name": "Weapons", - "persistentUuid": "156e00a8-0565-4399-b01a-2d67f7dd2aea", - "type": "structure", - "children": [ - { - "name": "Active", - "type": "structure", - "children": [ - { - "name": "pistolSilencer", - "persistentUuid": "ca505ad0-64b4-44ee-b4b4-20ba640dd356", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "rocketLauncher", - "persistentUuid": "a8cbcdb0-769a-42ec-97ba-2d4452a2f44c", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "rocketLauncherModern", - "persistentUuid": "c25e6f18-b9d3-4077-badd-9e7fe02d7289", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "shotgunLong", - "persistentUuid": "1ea7f09e-67e9-446c-b924-8b7841d8c706", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "sniper", - "persistentUuid": "fd26e664-81a2-41e1-b99d-eb5b6f68fd1f", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "uzi", - "persistentUuid": "8042baed-2539-4ca7-a163-86635a6c0c14", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLong", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLongSilencer", - "persistentUuid": "f1e60af4-7996-42a0-b4ec-fa7e985445ea", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziSilencer", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - } - ] - }, - { - "folded": true, - "name": "Selected", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "Slot", - "type": "structure", - "children": [ - { - "folded": true, - "name": "current", - "type": "number", - "value": 0 - }, - { - "name": "max", - "type": "number", - "value": 4 - } - ] - } - ] - } - ] - } - ], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "Debug", - "name": "weapon_reloading", - "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 1243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": "props_roadblock", - "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": 4, - "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": 1289, - "layer": "Fade", - "name": "game_transition", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "405d6ded-99e2-4121-a8b1-1443f2202568", - "width": 0, - "x": 18, - "y": 96, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "info", - "type": "string", - "value": "hide Sea" - }, - { - "folded": true, - "name": "id", - "type": "string", - "value": "sea" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "f0e1911b-a40a-4d17-b752-4c88c231f1ac", - "width": 0, - "x": 18, - "y": 54, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "shadow" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "1d0de529-1976-49aa-995b-d6a7e22f8a7c", - "width": 0, - "x": 1671, - "y": 19, - "zOrder": 12643570, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 3850, - "keepRatio": true, - "layer": "", - "name": "bridge_tiled_1", - "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_tiled_1", - "persistentUuid": "1dbb9dd6-901b-42f3-983f-a71c727b0001", - "width": 300, - "x": -3570, - "y": 3710, - "zOrder": 12643595, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 34, - "keepRatio": true, - "layer": "Debug", - "name": "debug_fps", - "persistentUuid": "7a76b0af-6c17-4bb9-b114-4c8700fe0ab5", - "width": 419, - "x": 630, - "y": 0, - "zOrder": 12643597, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_body", - "persistentUuid": "c90152c3-f5fd-4840-8342-c22364a67001", - "width": 0, - "x": -280, - "y": 1680, - "zOrder": 70, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "f56fa6f9-776f-432c-a128-396ffc5439fd", - "width": 0, - "x": -210, - "y": 1766, - "zOrder": 60, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 5110, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_W", - "persistentUuid": "1a05da90-9fa7-459e-86e5-0e94b0f5e85f", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4550, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_E", - "persistentUuid": "159ea2d7-8a30-4d9e-8b96-b75581e57f6f", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4900, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "c2032357-ff3d-4576-a252-f16cdfbf28ab", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4620, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "07f62aa9-1cd2-458c-a781-e0a00d1528da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4690, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "2cbc5947-de6c-431e-980a-1cc9446c5194", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 126, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "7892f520-8b5e-4869-8843-1786d6a4e453", - "width": 0, - "x": -210, - "y": 1696, - "zOrder": 60, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_leg", - "persistentUuid": "0785b352-857d-4c8c-8af7-a3c952462be9", - "width": 0, - "x": -140, - "y": 1766, - "zOrder": 50, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_leg", - "persistentUuid": "6450cd42-b025-47ca-9dd0-f49cdae0eb97", - "width": 0, - "x": -140, - "y": 1680, - "zOrder": 50, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "uziLong_pick", - "persistentUuid": "3133f8c5-fdf8-4e87-ba01-b00fcbef57a2", - "width": 0, - "x": -20, - "y": 1680, - "zOrder": 12643682, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "map", - "persistentUuid": "95f776bb-0279-4e37-80fc-cbeb09e6a0ef", - "width": 0, - "x": -9450, - "y": -10360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_crosshair", - "persistentUuid": "b63e83ca-eee3-4b84-9329-96f6683772fc", - "width": 0, - "x": 630, - "y": 210, - "zOrder": 12643683, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets/environment/foliage/grass/grass_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "building_rooftop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 174.5, - "y": 73.5 - }, - { - "x": 827.5, - "y": 74 - }, - { - "x": 826.5, - "y": 927 - }, - { - "x": 175.5, - "y": 926 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 53, - "y": 197.5 - }, - { - "x": 906.5, - "y": 198 - }, - { - "x": 906, - "y": 846 - }, - { - "x": 56, - "y": 849.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 111, - "y": 295 - }, - { - "x": 893, - "y": 297.5 - }, - { - "x": 893, - "y": 703 - }, - { - "x": 107, - "y": 705 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand_sprite", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/path/sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "player_crosshair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "BlendingMode", - "name": "Effect", - "doubleParameters": { - "blendmode": 2, - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "StayOnScreen", - "type": "StayOnScreen::StayOnScreen", - "MarginTop": 0, - "MarginBottom": 0, - "MarginLeft": 0, - "MarginRight": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/crosshair/crosshair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "strength", - "type": "number", - "value": 10 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 27.5 - }, - { - "x": 25, - "y": 27.5 - }, - { - "x": 25, - "y": 36.5 - }, - { - "x": 0, - "y": 36.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 64, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37.5, - "y": 36.5 - }, - { - "x": 64, - "y": 36.5 - } - ], - [ - { - "x": 27.5, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 28, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 27.5, - "y": 0 - }, - { - "x": 36, - "y": 0 - }, - { - "x": 36, - "y": 64 - }, - { - "x": 28, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 64, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 64, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 38, - "y": 26 - }, - { - "x": 38.5, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26.5, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 25.5 - }, - { - "x": 26.5, - "y": 25.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_roadblock", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_ammo_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - } - ], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_holding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sea_tiled_water_cover", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - } - ] - }, - { - "assetStoreId": "", - "height": 20000, - "name": "sea_tiled_water", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 20000, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_hoop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/sport/basketball/hoop/hoop.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 76.5, - "y": 56 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 8.5 - }, - { - "x": 66, - "y": 17.5 - }, - { - "x": 67, - "y": 93.5 - }, - { - "x": 0, - "y": 103.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets/environment/sport/basketball/ground/ground_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_court", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ground_elements/element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "debug menu - \"h\" to toggle menu visibility", - "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": "debug menu - \"h\" to toggle menu visibility", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "112;112;112" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_decorations", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/decoration/decoration_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 272, - "y": 248 - }, - { - "x": 357, - "y": 258 - }, - { - "x": 353, - "y": 322 - }, - { - "x": 269.5, - "y": 307 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_moveable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_11.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets/environment/tile/path/concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/black.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 64, - "name": "road_tiled_white_N", - "texture": "assets/environment/tile/road/road_11.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 64, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_W", - "texture": "assets/environment/tile/map_edge/map_edge_12.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "edge_sand_NW", - "texture": "assets/environment/tile/map_edge/map_edge_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SW", - "texture": "assets/environment/tile/map_edge/map_edge_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 1, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1, - "useLegacyBottomAndRightAnchors": false - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "name": "debug_toggle", - "type": "PrimitiveDrawing::Drawer", - "variables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "info", - "type": "string", - "value": "enable Shadow" - } - ], - "effects": [], - "behaviors": [ - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch", - "ThumbRadius": 10, - "ActiveThumbColor": "24;119;211", - "ThumbOpacity": 255, - "TrackWidth": 20, - "TrackHeight": 14, - "InactiveTrackColor": "150;150;150", - "InactiveTrackOpacity": 255, - "ActiveTrackColor": "", - "ActiveTrackOpacity": 128, - "HaloRadius": 24, - "HaloOpacityHover": 32, - "HaloOpacityPressed": 64, - "ThumbOffset": 0, - "Checked": false, - "Disabled": false, - "ToggleChanged": false, - "InactiveThumbColor": "255;255;255", - "IsPressed": false, - "ThumbShadowOffsetY": 4, - "ThumbShadowOffsetX": 0, - "ThumbShadowOpacity": 32, - "NeedRedaw": true, - "IsHovered": false, - "WasHovered": false - } - ], - "fillOpacity": 255, - "outlineSize": 1, - "outlineOpacity": 255, - "fillColor": { - "b": 255, - "g": 255, - "r": 255 - }, - "outlineColor": { - "b": 0, - "g": 0, - "r": 0 - }, - "absoluteCoordinates": false, - "clearBetweenFrames": true, - "antialiasing": "none" - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_frame", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "Outline", - "name": "Effect", - "doubleParameters": { - "padding": 0, - "thickness": 1 - }, - "stringParameters": { - "color": "29;29;27" - }, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_1.png", - "points": [ - { - "name": "1", - "x": 50, - "y": 370.5 - }, - { - "name": "2", - "x": 115, - "y": 370.5 - }, - { - "name": "3", - "x": 180, - "y": 370.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 224, - "y": 0 - }, - { - "x": 224, - "y": 418 - }, - { - "x": 0, - "y": 418 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_mask", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "ColorReplace", - "name": "Effect", - "doubleParameters": { - "epsilon": 0.4 - }, - "stringParameters": { - "newColor": "0;0;0", - "originalColor": "255;255;255" - }, - "booleanParameters": {} - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 215, - "y": 0 - }, - { - "x": 215, - "y": 417 - }, - { - "x": 0, - "y": 417 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "id", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "images", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "camera", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_wallpaper", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 100, - "RadiusY": 0, - "LoopDuration": 20, - "InitialTurningLeft": false, - "InitialDirectionAngle": 0, - "ShouldRotate": false, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "uziSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLongSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziLongSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 121.5, - "y": 64.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLong", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uzi", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 52.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "sniper", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 200.5, - "y": 54.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgunShort", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/shotgunShort.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 98, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgun", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/shotgun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 97.5, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncherModern", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 152.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncher", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 199.5, - "y": 71 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistolSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/pistolSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 79.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistol", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/pistol.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 57.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/machinegunLauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116, - "y": 51.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/machinegun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116.5, - "y": 52 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knifeRound_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 68 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knifeRound_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 69 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knife_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeVintage.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 19.5, - "y": 74 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeSmoke.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 18.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeFlash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenade.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 22.5, - "y": 34 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/flamethrower_short.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 106.5, - "y": 41 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/flamethrower_long.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 114, - "y": 40.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "weapon_bar", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/icon/bar.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 112, - "y": 0 - }, - { - "x": 1807, - "y": 0 - }, - { - "x": 1807, - "y": 296 - }, - { - "x": 112, - "y": 296 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weaponWheelSticker", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/black.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_N", - "texture": "assets/environment/tile/map_edge/map_edge_2.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_E", - "texture": "assets/environment/tile/map_edge/map_edge_5.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SE", - "texture": "assets/environment/tile/map_edge/map_edge_7.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_NE", - "texture": "assets/environment/tile/map_edge/map_edge_4.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 302, - "name": "bridge_tiled_1", - "texture": "assets/environment/bridge/bridge.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 300, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_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" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Movement", - "type": "structure", - "children": [ - { - "name": "TopDownMovement", - "type": "structure", - "children": [ - { - "name": "run", - "persistentUuid": "dbe1965b-d1af-415d-9e83-2e4312af1344", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 400 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "type": "number", - "value": 200 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "type": "number", - "value": 0.1 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "type": "number", - "value": 0.2 - } - ] - }, - { - "name": "walk", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 300 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "persistentUuid": "c6a43fd0-3cef-4009-bdcb-974b49edf1d1", - "type": "number", - "value": 1000 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "persistentUuid": "e725550c-0f72-4304-99c6-c8bb804277bb", - "type": "number", - "value": 0.2 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "persistentUuid": "5b2ef896-624b-46b8-9e33-3419d81e02eb", - "type": "number", - "value": 0.3 - } - ] - } - ] - }, - { - "name": "canMove", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Phone", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Weapon", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "equipped", - "type": "string", - "value": "" - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.1, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - }, - { - "effectType": "Reflection", - "name": "breathing", - "doubleParameters": { - "alphaEnding": 1, - "alphaStart": 1, - "amplitudeEnding": 3, - "amplitudeStart": 0, - "animationSpeed": 1, - "boundary": 0, - "waveLengthEnding": 100, - "waveLengthStart": 60 - }, - "stringParameters": {}, - "booleanParameters": { - "mirror": false - } - } - ], - "behaviors": [ - { - "name": "FireBullet", - "type": "FireBullet::FireBullet", - "FireCooldown": 0.1, - "HasJustFired": false, - "RotateBullet": true, - "FiringArc": 45, - "BulletQuantity": 1, - "AngleVariance": 3, - "BulletSpeedVariance": 0, - "AmmoQuantity": 0, - "ShotsPerReload": 0, - "ReloadDuration": 1, - "MaxAmmo": 0, - "ShotsBeforeNextReload": 0, - "TotalShotsFired": 0, - "TotalBulletsCreated": 0, - "StartingAmmo": 0, - "TotalReloadsCompleted": 0, - "UnlimitedAmmo": true, - "ReloadInProgress": false, - "HeatIncreasePerShot": 0, - "HeatLevel": 0, - "AutomaticReloading": true, - "OverheatDuration": 0, - "LinearCoolingRate": 0.1, - "ExponentialCoolingRate": 0.3, - "BulletLayer": "", - "RandomizedAngle": 0 - }, - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "angularMaxSpeed": 500, - "acceleration": 200, - "deceleration": 200, - "ignoreDefaultControls": true, - "maxSpeed": 200, - "allowDiagonals": true, - "angleOffset": 0, - "customIsometryAngle": 30, - "movementAngleOffset": 0, - "rotateObject": true, - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_1.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_2.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_3.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_4.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_5.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_6.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_7.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_8.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_9.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_2.png", - "points": [ - { - "name": "finger", - "x": 29.5, - "y": 12.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 12.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 12.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 13 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 13 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NE", - "texture": "assets/environment/tile/road/road_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NW", - "texture": "assets/environment/tile/road/road_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_W", - "texture": "assets/environment/tile/road/road_8.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_E", - "texture": "assets/environment/tile/road/road_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_center", - "texture": "assets/environment/tile/road/road_43.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_S", - "texture": "assets/environment/tile/road/road_27.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SE", - "texture": "assets/environment/tile/road/road_31.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SW", - "texture": "assets/environment/tile/road/road_30.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_inner", - "texture": "assets/environment/tile/road/road_24.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_end", - "texture": "assets/environment/tile/road/road_39.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_curve_right", - "texture": "assets/environment/tile/road/road_13.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_S", - "texture": "assets/environment/tile/map_edge/map_edge_9.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_curve_left", - "texture": "assets/environment/tile/road/road_14.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_inner_SW", - "texture": "assets/environment/tile/map_edge/map_edge_14.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "sand_tiled_1", - "texture": "assets/environment/tile/path/sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "sand_tiled_2", - "texture": "assets/environment/tile/path/dirt.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziGold_hold", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "properties", - "type": "structure", - "children": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 270 - }, - { - "folded": true, - "name": "height", - "type": "number", - "value": 100 - }, - { - "folded": true, - "name": "pushBackStrength", - "persistentUuid": "4f3e2c10-41c8-4036-ad79-5ccc09bfb98a", - "type": "number", - "value": 10 - }, - { - "folded": true, - "name": "variance", - "type": "number", - "value": 4 - }, - { - "folded": true, - "name": "width", - "type": "number", - "value": 100 - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziGold.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 45, - "y": 16 - }, - { - "x": 55, - "y": 16 - }, - { - "x": 55, - "y": 59 - }, - { - "x": 45, - "y": 59 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziLong_hold", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "properties", - "type": "structure", - "children": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 270 - }, - { - "folded": true, - "name": "height", - "type": "number", - "value": 100 - }, - { - "folded": true, - "name": "pushBackStrength", - "type": "number", - "value": 10 - }, - { - "folded": true, - "name": "variance", - "type": "number", - "value": 3 - }, - { - "folded": true, - "name": "width", - "type": "number", - "value": 100 - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": true - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziLong.png", - "points": [ - { - "name": "spawn", - "x": 50, - "y": 70 - } - ], - "originPoint": { - "name": "origine", - "x": 50, - "y": 32 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 50, - "y": 32 - }, - "customCollisionMask": [ - [ - { - "x": 44, - "y": 14 - }, - { - "x": 56, - "y": 14 - }, - { - "x": 56, - "y": 86 - }, - { - "x": 44, - "y": 86 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziLong_pick", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 10, - "RadiusY": 10, - "LoopDuration": 6, - "InitialTurningLeft": true, - "InitialDirectionAngle": 0, - "ShouldRotate": true, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 50, - "y": 30 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 44, - "y": 14 - }, - { - "x": 56, - "y": 14 - }, - { - "x": 56, - "y": 86 - }, - { - "x": 44, - "y": 86 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uzi_ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "DestroyOutside", - "type": "DestroyOutsideBehavior::DestroyOutside", - "extraBorder": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/ammo/ammo_uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 10, - "y": 13 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 19, - "y": 5 - }, - { - "x": 31, - "y": 5 - }, - { - "x": 31, - "y": 33 - }, - { - "x": 19, - "y": 33 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "name": "map", - "type": "TileMap::TileMap", - "variables": [], - "effects": [], - "behaviors": [], - "content": { - "tilemapJsonFile": "assets/environment/map/city1.json", - "tilesetJsonFile": "", - "tilemapAtlasImage": "assets/environment/map/city1/spritesheet.png", - "displayMode": "visible", - "layerIndex": 0, - "levelIndex": 0, - "animationSpeedScale": 1, - "animationFps": 4 - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "folderName": "UI", - "children": [ - { - "folderName": "weapon", - "children": [ - { - "objectName": "NewObject" - }, - { - "objectName": "weapon_icons" - } - ] - }, - { - "folderName": "phone", - "children": [ - { - "objectName": "phone_icon" - }, - { - "objectName": "phone_frame" - }, - { - "objectName": "phone_mask" - }, - { - "objectName": "phone_wallpaper" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "phone_wifi" - } - ] - }, - { - "folderName": "debug", - "children": [ - { - "objectName": "wheel_info" - }, - { - "objectName": "weapon_holding" - }, - { - "objectName": "weapon_reloading" - }, - { - "objectName": "debug_fps" - }, - { - "objectName": "debug_toggle" - }, - { - "objectName": "debug_text" - }, - { - "objectName": "debug_ammo_text" - } - ] - } - ] - }, - { - "folderName": "Environment", - "children": [ - { - "folderName": "map", - "children": [ - { - "objectName": "map" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "brown_leaves_particle" - } - ] - }, - { - "folderName": "sports", - "children": [ - { - "folderName": "basketball", - "children": [ - { - "objectName": "basketball_hoop" - }, - { - "objectName": "basketball_court" - }, - { - "objectName": "basketball" - } - ] - } - ] - }, - { - "folderName": "props", - "children": [ - { - "objectName": "props_moveable" - }, - { - "objectName": "props_decorations" - }, - { - "objectName": "props_fences" - }, - { - "objectName": "props_roadblock" - }, - { - "objectName": "props_foliage" - } - ] - } - ] - }, - { - "folderName": "Player", - "children": [ - { - "objectName": "player_crosshair" - }, - { - "objectName": "player_body" - }, - { - "objectName": "player_hand" - }, - { - "objectName": "player_leg" - } - ] - }, - { - "folderName": "Land", - "children": [ - { - "objectName": "edge_sand_NW" - }, - { - "objectName": "beach_sand_NE" - }, - { - "objectName": "beach_sand_N" - }, - { - "objectName": "beach_sand_E" - }, - { - "objectName": "beach_sand_S" - }, - { - "objectName": "beach_sand_SE" - }, - { - "objectName": "beach_sand_SW" - }, - { - "objectName": "beach_sand_inner_SW" - }, - { - "objectName": "beach_sand_W" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "sand_tiled_1" - }, - { - "objectName": "sand_tiled_2" - }, - { - "objectName": "sand_sprite" - }, - { - "objectName": "grass_tiled" - } - ] - }, - { - "folderName": "Road", - "children": [ - { - "objectName": "road_tiled_white_N" - }, - { - "objectName": "road_tiled_white_NE" - }, - { - "objectName": "road_tiled_white_NW" - }, - { - "objectName": "road_tiled_white_SE" - }, - { - "objectName": "road_tiled_white_SW" - }, - { - "objectName": "road_tiled_white_W" - }, - { - "objectName": "road_tiled_white_E" - }, - { - "objectName": "road_tiled_white_S" - }, - { - "objectName": "road_tiled_white_inner" - }, - { - "objectName": "road_tiled_white_center" - }, - { - "objectName": "road_tiled_white_end" - }, - { - "objectName": "road_tiled_white_curve_right" - }, - { - "objectName": "road_tiled_white_curve_left" - }, - { - "objectName": "bridge_tiled_1" - } - ] - }, - { - "folderName": "Weapons", - "children": [ - { - "folderName": "Icons", - "children": [ - { - "objectName": "weapon_icon" - }, - { - "objectName": "weapon_bar" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_rocket" - } - ] - }, - { - "folderName": "type", - "children": [ - { - "folderName": "melee" - }, - { - "folderName": "gun", - "children": [ - { - "folderName": "hold", - "children": [ - { - "objectName": "uziGold_hold" - }, - { - "objectName": "uziLong_hold" - } - ] - }, - { - "folderName": "pick", - "children": [ - { - "objectName": "uziLong_pick" - } - ] - } - ] - } - ] - }, - { - "folderName": "hitbox" - }, - { - "folderName": "ammo", - "children": [ - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "uzi_ammo" - } - ] - } - ] - }, - { - "folderName": "Buildings", - "children": [ - { - "objectName": "building_rooftop" - } - ] - }, - { - "folderName": "Sea", - "children": [ - { - "objectName": "sea_tiled_water" - }, - { - "objectName": "sea_tiled_water_cover" - } - ] - }, - { - "folderName": "misc", - "children": [ - { - "objectName": "door" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "weaponWheelSticker" - } - ] - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "folded": true, - "name": "Note - Important Information", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "IntroZoom", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ZoomCamera" - }, - "parameters": [ - "", - "0.35", - "", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.5" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.7" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.35", - "", - "\"elastic\"", - "1" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.3" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.8" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.5", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.9" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.75", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "1" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "1", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "ToggleGlobalVariableAsBoolean" - }, - "parameters": [ - "Game.intro" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Game.Camera.Zoom", - "=", - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectBooleanParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectBooleanParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"opacity\"", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "building_rooftop", - "=", - "120" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "props_foliage", - "=", - "121" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "sea_tiled_water_cover" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Road", - "=", - "-1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Sea", - "=", - "-2" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "0" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_tiled_1", - "=", - "1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_tiled_2", - "=", - "1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Beach_Sand", - "=", - "1" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Sepia", - "name": "introSepia", - "doubleParameters": { - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "KawaseBlur", - "name": "weaponBar", - "doubleParameters": { - "blur": 0.5, - "padding": 0, - "pixelizeX": 0, - "pixelizeY": 0, - "quality": 3 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "LightNight", - "name": "nightDayCycle", - "doubleParameters": { - "opacity": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "Brightness", - "name": "brightness", - "doubleParameters": { - "brightness": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "UI", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Debug", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement" - }, - { - "name": "FireBullet", - "type": "FireBullet::FireBullet" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "StayOnScreen", - "type": "StayOnScreen::StayOnScreen" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/game_world_test.json b/src/layouts/game_world_test.json deleted file mode 100644 index a2d90fff9..000000000 --- a/src/layouts/game_world_test.json +++ /dev/null @@ -1,9786 +0,0 @@ -{ - "b": 232, - "disableInputWhenNotFocused": true, - "mangledName": "Game_95World_95Test", - "name": "Game_World_Test", - "r": 102, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 165, - "uiSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.3143997506548771, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "Phone_Status_Bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - }, - { - "name": "Game_Static", - "objects": [ - { - "name": "building_rooftop" - }, - { - "name": "props_foliage" - }, - { - "name": "basketball_hoop" - }, - { - "name": "props_decorations" - }, - { - "name": "props_roadblock" - }, - { - "name": "props_fences" - } - ] - }, - { - "name": "Weapon_Bar", - "objects": [ - { - "name": "weapon_icon" - }, - { - "name": "weapon_bar" - }, - { - "name": "weaponWheelSticker" - } - ] - }, - { - "name": "Road", - "objects": [ - { - "name": "road_tiled_white_N" - }, - { - "name": "road_tiled_white_NE" - }, - { - "name": "road_tiled_white_NW" - }, - { - "name": "road_tiled_white_W" - }, - { - "name": "road_tiled_white_E" - }, - { - "name": "road_tiled_white_center" - }, - { - "name": "road_tiled_white_S" - }, - { - "name": "road_tiled_white_SE" - }, - { - "name": "road_tiled_white_SW" - }, - { - "name": "road_tiled_white_inner" - }, - { - "name": "road_tiled_white_curve_right" - }, - { - "name": "road_tiled_white_curve_left" - }, - { - "name": "road_tiled_white_end" - } - ] - }, - { - "name": "Sea", - "objects": [ - { - "name": "sea_tiled_water_cover" - }, - { - "name": "sea_tiled_water" - } - ] - }, - { - "name": "Beach_Sand", - "objects": [ - { - "name": "beach_sand_W" - }, - { - "name": "beach_sand_SW" - }, - { - "name": "beach_sand_N" - }, - { - "name": "beach_sand_SE" - }, - { - "name": "beach_sand_NE" - }, - { - "name": "beach_sand_S" - }, - { - "name": "beach_sand_inner_SW" - }, - { - "name": "beach_sand_E" - } - ] - }, - { - "name": "Weapon_Pick", - "objects": [ - { - "name": "uziLong_pick" - } - ] - }, - { - "name": "Weapon_Hold", - "objects": [ - { - "name": "uziGold_hold" - }, - { - "name": "uziLong_hold" - } - ] - } - ], - "variables": [ - { - "folded": true, - "name": "DebugVariables", - "type": "structure", - "children": [ - { - "name": "shadowAdder", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Game", - "type": "structure", - "children": [ - { - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Zoom", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "folded": true, - "name": "GodMode", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Player", - "type": "structure", - "children": [ - { - "folded": true, - "name": "WeaponWheel", - "type": "structure", - "children": [ - { - "folded": true, - "name": "adder", - "type": "number", - "value": 0 - } - ] - }, - { - "name": "Weapons", - "persistentUuid": "156e00a8-0565-4399-b01a-2d67f7dd2aea", - "type": "structure", - "children": [ - { - "name": "Active", - "type": "structure", - "children": [ - { - "name": "pistolSilencer", - "persistentUuid": "ca505ad0-64b4-44ee-b4b4-20ba640dd356", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "rocketLauncher", - "persistentUuid": "a8cbcdb0-769a-42ec-97ba-2d4452a2f44c", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "rocketLauncherModern", - "persistentUuid": "c25e6f18-b9d3-4077-badd-9e7fe02d7289", - "type": "structure", - "children": [ - { - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "shotgunLong", - "persistentUuid": "1ea7f09e-67e9-446c-b924-8b7841d8c706", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "sniper", - "persistentUuid": "fd26e664-81a2-41e1-b99d-eb5b6f68fd1f", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 2 - } - ] - }, - { - "name": "uzi", - "persistentUuid": "8042baed-2539-4ca7-a163-86635a6c0c14", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLong", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziLongSilencer", - "persistentUuid": "f1e60af4-7996-42a0-b4ec-fa7e985445ea", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "slot", - "type": "number", - "value": 1 - } - ] - }, - { - "name": "uziSilencer", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "name": "slot", - "type": "number", - "value": 1 - } - ] - } - ] - }, - { - "folded": true, - "name": "Selected", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "Slot", - "type": "structure", - "children": [ - { - "folded": true, - "name": "current", - "type": "number", - "value": 0 - }, - { - "name": "max", - "type": "number", - "value": 4 - } - ] - } - ] - } - ] - } - ], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "Debug", - "name": "weapon_reloading", - "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 1243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "367b9fb5-f764-47a9-abf0-b4bca3be3e64", - "width": 0, - "x": -15412, - "y": 5740, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "5f5776b6-0228-4b20-b536-48c3a449edf8", - "width": 0, - "x": -15412, - "y": 5950, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "699a89e0-f262-4922-94f4-06b677b1690e", - "width": 0, - "x": -15412, - "y": 6160, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "9343d17c-7821-403e-bec3-1ea7e8c34047", - "width": 0, - "x": -15415, - "y": 6370, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "aa4ebfe0-4339-402d-a4a2-3f3f9aa09888", - "width": 0, - "x": -15411, - "y": 6580, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "e50ff460-d090-4876-b460-3e13f875d7ea", - "width": 0, - "x": -15413, - "y": 6790, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "e12d6482-65fc-4eec-bb1c-af70e2f5b587", - "width": 0, - "x": -15412, - "y": 7000, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "eeeff3f5-f20b-4b65-a8ca-ef0a18a694dc", - "width": 0, - "x": -15414, - "y": 7210, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "d9cf91a6-0d2d-481e-9d5f-3c76bc9fb8d3", - "width": 0, - "x": -15413, - "y": 7420, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "6889692b-bb8a-42f5-b92e-7d05884c3956", - "width": 0, - "x": -15413, - "y": 7630, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "9b1b9e09-c7d4-44b3-9099-cc28987bc93d", - "width": 0, - "x": -15413, - "y": 7840, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "99b93efe-61bd-4898-a661-f4f073ff5daf", - "width": 0, - "x": -15412, - "y": 8050, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "d161e608-d6a7-4475-b6b1-c724d1ec524d", - "width": 0, - "x": -15412, - "y": 8260, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "d061e83a-2103-444d-a61e-36eee1a38700", - "width": 0, - "x": -15413, - "y": 8470, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "1e5c958a-d494-4bf4-b1dd-efcb1c13d9aa", - "width": 0, - "x": -15415, - "y": 8680, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", - "width": 0, - "x": -15414, - "y": 8890, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3920, - "layer": "", - "name": "concrete_1", - "persistentUuid": "e50b3ae6-01f4-498f-a424-fbe09e890138", - "width": 70, - "x": -15750, - "y": 5390, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3920, - "layer": "", - "name": "concrete_1", - "persistentUuid": "9c82384e-7f20-4090-9104-2af969cc37d2", - "width": 70, - "x": -15050, - "y": 5390, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3845, - "layer": "", - "name": "hidden_separate", - "persistentUuid": "0ef98db6-7d9e-4b22-b706-6a5abfdfdf6b", - "width": 15, - "x": -14994, - "y": 5390, - "zOrder": 12615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3845, - "layer": "", - "name": "hidden_separate", - "persistentUuid": "1b7bf7dc-0ec4-4303-ae2e-d04e742028db", - "width": 15, - "x": -15747, - "y": 5390, - "zOrder": 12615, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1289, - "layer": "Fade", - "name": "game_transition", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "405d6ded-99e2-4121-a8b1-1443f2202568", - "width": 0, - "x": 18, - "y": 96, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "info", - "type": "string", - "value": "hide Sea" - }, - { - "folded": true, - "name": "id", - "type": "string", - "value": "sea" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "Debug", - "name": "debug_toggle", - "persistentUuid": "f0e1911b-a40a-4d17-b752-4c88c231f1ac", - "width": 0, - "x": 18, - "y": 54, - "zOrder": 12643569, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "shadow" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "UI", - "name": "debug_ammo_text", - "persistentUuid": "1d0de529-1976-49aa-995b-d6a7e22f8a7c", - "width": 0, - "x": 1671, - "y": 19, - "zOrder": 12643570, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 3850, - "keepRatio": true, - "layer": "", - "name": "bridge_tiled_1", - "persistentUuid": "837f7806-c647-44c3-9868-98ff6e4a4a4f", - "width": 300, - "x": -15280, - "y": 5460, - "zOrder": 12643595, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 3850, - "keepRatio": true, - "layer": "", - "name": "bridge_tiled_1", - "persistentUuid": "1dbb9dd6-901b-42f3-983f-a71c727b0001", - "width": 300, - "x": -15750, - "y": 5460, - "zOrder": 12643595, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 34, - "keepRatio": true, - "layer": "Debug", - "name": "debug_fps", - "persistentUuid": "7a76b0af-6c17-4bb9-b114-4c8700fe0ab5", - "width": 419, - "x": 630, - "y": 0, - "zOrder": 12643597, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_body", - "persistentUuid": "c90152c3-f5fd-4840-8342-c22364a67001", - "width": 0, - "x": -280, - "y": 1680, - "zOrder": 70, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "f56fa6f9-776f-432c-a128-396ffc5439fd", - "width": 0, - "x": -210, - "y": 1766, - "zOrder": 60, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 5110, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_W", - "persistentUuid": "1a05da90-9fa7-459e-86e5-0e94b0f5e85f", - "width": 70, - "x": -15680, - "y": 4270, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4550, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_E", - "persistentUuid": "159ea2d7-8a30-4d9e-8b96-b75581e57f6f", - "width": 70, - "x": -15120, - "y": 4830, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4900, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "c2032357-ff3d-4576-a252-f16cdfbf28ab", - "width": 210, - "x": -15610, - "y": 4480, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4620, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_center", - "persistentUuid": "07f62aa9-1cd2-458c-a781-e0a00d1528da", - "width": 210, - "x": -15330, - "y": 4760, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 4690, - "keepRatio": true, - "layer": "", - "name": "road_tiled_white_inner", - "persistentUuid": "2cbc5947-de6c-431e-980a-1cc9446c5194", - "width": 70, - "x": -15400, - "y": 4690, - "zOrder": 126, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_hand", - "persistentUuid": "7892f520-8b5e-4869-8843-1786d6a4e453", - "width": 0, - "x": -210, - "y": 1696, - "zOrder": 60, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_leg", - "persistentUuid": "0785b352-857d-4c8c-8af7-a3c952462be9", - "width": 0, - "x": -140, - "y": 1766, - "zOrder": 50, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_leg", - "persistentUuid": "6450cd42-b025-47ca-9dd0-f49cdae0eb97", - "width": 0, - "x": -140, - "y": 1680, - "zOrder": 50, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "uziLong_pick", - "persistentUuid": "3133f8c5-fdf8-4e87-ba01-b00fcbef57a2", - "width": 0, - "x": -20, - "y": 1680, - "zOrder": 12643682, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "locked": true, - "name": "map", - "persistentUuid": "95f776bb-0279-4e37-80fc-cbeb09e6a0ef", - "sealed": true, - "width": 0, - "x": -9450, - "y": -10360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "player_crosshair", - "persistentUuid": "b63e83ca-eee3-4b84-9329-96f6683772fc", - "width": 0, - "x": 630, - "y": 210, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "100485eb-3ac8-4477-8f97-c7428d69ab12", - "width": 0, - "x": 3970, - "y": -3030, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "c9d72272-972c-4035-99ec-6f27132b65e2", - "width": 0, - "x": 1610, - "y": 1400, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "4281be1e-c61b-4c63-97e7-a89e2bb55876", - "width": 0, - "x": -1770, - "y": 260, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "dfe5c95c-4efd-4a61-b693-a2febc993247", - "width": 0, - "x": -560, - "y": 260, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "edfe91c3-5384-4908-834b-3a06d1c642da", - "width": 0, - "x": 4340, - "y": 350, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "3319433a-41a5-43e7-a27d-e36a8e4639b0", - "width": 0, - "x": 5020, - "y": -3030, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "82a0fb97-c9df-482e-a84b-f746eb7fa64a", - "width": 0, - "x": 5040, - "y": -1260, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "cefe6b08-854e-4744-9d68-61bca0c3c942", - "width": 0, - "x": 2430, - "y": 350, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "9f0fa569-69af-44ef-904a-2add0189a987", - "width": 0, - "x": -980, - "y": 2380, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "9b41f743-1d1e-44d1-bcdd-1d90799ff7d2", - "width": 0, - "x": -3870, - "y": 1400, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "building_rooftop", - "persistentUuid": "74604591-a0ff-471e-b430-26b66fa7d949", - "width": 0, - "x": 470, - "y": 2380, - "zOrder": 12643683, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1190, - "keepRatio": true, - "layer": "", - "locked": true, - "name": "ground_1", - "persistentUuid": "e7c500df-5806-48a4-b3b5-75e2f07e5d86", - "sealed": true, - "width": 2030, - "x": 630, - "y": -2030, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 630, - "keepRatio": true, - "layer": "", - "name": "basketball_court", - "persistentUuid": "c2b924f0-8f7e-4634-bac9-97264ae9d282", - "width": 350, - "x": 770, - "y": -1750, - "zOrder": 12643685, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "depth": 1, - "height": 630, - "keepRatio": true, - "layer": "", - "name": "basketball_court", - "persistentUuid": "075c5455-9af4-4139-9c6c-84e981d5c6a4", - "width": 350, - "x": 2170, - "y": -1750, - "zOrder": 12643685, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "basketball_hoop", - "persistentUuid": "2e4251f4-ffff-4f28-9c8f-126b2fee1f65", - "width": 0, - "x": 847, - "y": -1434, - "zOrder": 12643686, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "basketball_hoop", - "persistentUuid": "4eac1caa-c49b-43dd-9706-7123b52d8020", - "width": 0, - "x": 2444, - "y": -1435, - "zOrder": 12643686, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "keepRatio": true, - "layer": "", - "name": "basketball", - "persistentUuid": "f4b123b8-8e05-4e1b-a502-488cb0e5b740", - "width": 0, - "x": 1680, - "y": -1470, - "zOrder": 12643687, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "ea843509-a182-4d99-b688-aff171a7f615", - "width": 70, - "x": 3220, - "y": -2062, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "70a8659a-7cb0-433e-ac7a-8933d40ef1da", - "width": 70, - "x": 3360, - "y": -1992, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "bdd7e953-1836-45d0-a144-44c666f32f47", - "width": 70, - "x": 3080, - "y": -1992, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "51f4026f-e647-413c-8b16-e5b22c13d483", - "width": 70, - "x": 5759, - "y": -1801, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "ed55e404-946b-4a7c-9224-c164cd0863cc", - "width": 70, - "x": 5759, - "y": -1661, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "b4ec5d0f-8303-4473-ae58-8025786e702c", - "width": 70, - "x": 5759, - "y": -1521, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "4fea4ad9-d5c1-4397-85ae-6db6b79c091b", - "width": 70, - "x": 3710, - "y": 1540, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "3410333e-29ba-43ce-a711-625e0d8e3631", - "width": 70, - "x": 3850, - "y": 1540, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "f9cf9ee3-ab71-4aa1-b2c6-0bfb9dceb9c7", - "width": 70, - "x": 3990, - "y": 1540, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "00c70d8f-00a1-4df3-ae88-34eb3ae812cc", - "width": 70, - "x": 3570, - "y": 1540, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "a7139bd9-6e99-4818-8278-aa532e52f491", - "width": 70, - "x": 4130, - "y": 1540, - "zOrder": 12643688, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "7850caa1-514c-48a5-b223-8e5d370d812f", - "width": 70, - "x": 649, - "y": -191, - "zOrder": 12643689, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "7dcfbfec-5b87-48bb-9fae-951b69558e60", - "width": 70, - "x": 649, - "y": -541, - "zOrder": 12643689, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "8bef3c36-bf30-48eb-ac17-24b8e1d438de", - "width": 70, - "x": 401, - "y": -191, - "zOrder": 12643689, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "depth": 1, - "height": 32, - "keepRatio": true, - "layer": "", - "name": "props_roadblock", - "persistentUuid": "b0970d01-76e4-4543-9dd5-a0b75a219d99", - "width": 70, - "x": 401, - "y": -541, - "zOrder": 12643689, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets/environment/foliage/grass/grass_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "building_rooftop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 174.5, - "y": 73.5 - }, - { - "x": 827.5, - "y": 74 - }, - { - "x": 826.5, - "y": 927 - }, - { - "x": 175.5, - "y": 926 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 53, - "y": 197.5 - }, - { - "x": 906.5, - "y": 198 - }, - { - "x": 906, - "y": 846 - }, - { - "x": 56, - "y": 849.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/building/rooftop/roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 111, - "y": 295 - }, - { - "x": 893, - "y": 297.5 - }, - { - "x": 893, - "y": 703 - }, - { - "x": 107, - "y": 705 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand_sprite", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/path/sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "player_crosshair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "BlendingMode", - "name": "Effect", - "doubleParameters": { - "blendmode": 2, - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "StayOnScreen", - "type": "StayOnScreen::StayOnScreen", - "MarginTop": 0, - "MarginBottom": 0, - "MarginLeft": 0, - "MarginRight": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/crosshair/crosshair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "strength", - "type": "number", - "value": 10 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 27.5 - }, - { - "x": 25, - "y": 27.5 - }, - { - "x": 25, - "y": 36.5 - }, - { - "x": 0, - "y": 36.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 64, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37.5, - "y": 36.5 - }, - { - "x": 64, - "y": 36.5 - } - ], - [ - { - "x": 27.5, - "y": 27.5 - }, - { - "x": 37, - "y": 27.5 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 28, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 27.5, - "y": 0 - }, - { - "x": 36, - "y": 0 - }, - { - "x": 36, - "y": 64 - }, - { - "x": 28, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 64, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 64, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 38, - "y": 26 - }, - { - "x": 38.5, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/fence/fence_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26.5, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 25.5 - }, - { - "x": 26.5, - "y": 25.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_roadblock", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/tile/road_block/block_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_ammo_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - } - ], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_holding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/foliage/tree/tree_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sea_tiled_water_cover", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - } - ] - }, - { - "assetStoreId": "", - "height": 20000, - "name": "sea_tiled_water", - "texture": "assets/environment/water/water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 20000, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ball/basketball_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_hoop", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/sport/basketball/hoop/hoop.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 76.5, - "y": 56 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 8.5 - }, - { - "x": 66, - "y": 17.5 - }, - { - "x": 67, - "y": 93.5 - }, - { - "x": 0, - "y": 103.5 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets/environment/sport/basketball/ground/ground_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "basketball_court", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/environment/sport/basketball/ground_elements/element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weapon_reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "debug menu - \"h\" to toggle menu visibility", - "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": "debug menu - \"h\" to toggle menu visibility", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "112;112;112" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_decorations", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/decoration/decoration_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 272, - "y": 248 - }, - { - "x": 357, - "y": 258 - }, - { - "x": 353, - "y": 322 - }, - { - "x": 269.5, - "y": 307 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "props_moveable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "Shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/environment/prop/props_11.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets/environment/tile/path/concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/black.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 64, - "name": "road_tiled_white_N", - "texture": "assets/environment/tile/road/road_11.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 64, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/wifi/wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/character/phone/battery/battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": true, - "IsDestroyedWithParent": true - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 15, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_W", - "texture": "assets/environment/tile/map_edge/map_edge_12.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "edge_sand_NW", - "texture": "assets/environment/tile/map_edge/map_edge_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SW", - "texture": "assets/environment/tile/map_edge/map_edge_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 1, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1, - "useLegacyBottomAndRightAnchors": false - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "name": "debug_toggle", - "type": "PrimitiveDrawing::Drawer", - "variables": [ - { - "folded": true, - "name": "id", - "type": "string", - "value": "0" - }, - { - "folded": true, - "name": "info", - "type": "string", - "value": "enable Shadow" - } - ], - "effects": [], - "behaviors": [ - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch", - "ThumbRadius": 10, - "ActiveThumbColor": "24;119;211", - "ThumbOpacity": 255, - "TrackWidth": 20, - "TrackHeight": 14, - "InactiveTrackColor": "150;150;150", - "InactiveTrackOpacity": 255, - "ActiveTrackColor": "", - "ActiveTrackOpacity": 128, - "HaloRadius": 24, - "HaloOpacityHover": 32, - "HaloOpacityPressed": 64, - "ThumbOffset": 0, - "Checked": false, - "Disabled": false, - "ToggleChanged": false, - "InactiveThumbColor": "255;255;255", - "IsPressed": false, - "ThumbShadowOffsetY": 4, - "ThumbShadowOffsetX": 0, - "ThumbShadowOpacity": 32, - "NeedRedaw": true, - "IsHovered": false, - "WasHovered": false - } - ], - "fillOpacity": 255, - "outlineSize": 1, - "outlineOpacity": 255, - "fillColor": { - "b": 255, - "g": 255, - "r": 255 - }, - "outlineColor": { - "b": 0, - "g": 0, - "r": 0 - }, - "absoluteCoordinates": false, - "clearBetweenFrames": true, - "antialiasing": "none" - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_text", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Text", - "font": "", - "textAlignment": "left", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_frame", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "Outline", - "name": "Effect", - "doubleParameters": { - "padding": 0, - "thickness": 1 - }, - "stringParameters": { - "color": "29;29;27" - }, - "booleanParameters": {} - } - ], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 0, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 0, - "useLegacyBottomAndRightAnchors": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_1.png", - "points": [ - { - "name": "1", - "x": 50, - "y": 370.5 - }, - { - "name": "2", - "x": 115, - "y": 370.5 - }, - { - "name": "3", - "x": 180, - "y": 370.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 224, - "y": 0 - }, - { - "x": 224, - "y": 418 - }, - { - "x": 0, - "y": 418 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_mask", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "ColorReplace", - "name": "Effect", - "doubleParameters": { - "epsilon": 0.4 - }, - "stringParameters": { - "newColor": "0;0;0", - "originalColor": "255;255;255" - }, - "booleanParameters": {} - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/frame/frame_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 215, - "y": 0 - }, - { - "x": 215, - "y": 417 - }, - { - "x": 0, - "y": 417 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "id", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "images", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - }, - { - "name": "camera", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/apps/app_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 28, - "y": 28 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 56, - "y": 0 - }, - { - "x": 56, - "y": 56 - }, - { - "x": 0, - "y": 56 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "phone_wallpaper", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 100, - "RadiusY": 0, - "LoopDuration": 20, - "InitialTurningLeft": false, - "InitialDirectionAngle": 0, - "ShouldRotate": false, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets/character/phone/wallpaper/wallpaper_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 1024, - "y": 1 - }, - { - "x": 1024, - "y": 1025 - }, - { - "x": 0, - "y": 1025 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icon", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": false - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "uziSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLongSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziLongSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 121.5, - "y": 64.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uziLong", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 85, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "uzi", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 52.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "sniper", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 200.5, - "y": 54.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgunShort", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/shotgunShort.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 98, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "shotgun", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/shotgun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 97.5, - "y": 26 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncherModern", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 152.5, - "y": 65 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "rocketLauncher", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/rocketlauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 199.5, - "y": 71 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistolSilencer", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/pistolSilencer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 79.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pistol", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/pistol.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 57.5, - "y": 45 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/machinegunLauncher.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116, - "y": 51.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/machinegun.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 116.5, - "y": 52 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knifeRound_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 68 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knifeRound_smooth.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 69 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/knife_sharp.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15, - "y": 68.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeVintage.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 19.5, - "y": 74 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeSmoke.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 18.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenadeFlash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 17.5, - "y": 38.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/grenade.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 22.5, - "y": 34 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/flamethrower_short.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 106.5, - "y": 41 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/weapon/icon/flamethrower_long.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 114, - "y": 40.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "weapon_bar", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/icon/bar.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 112, - "y": 0 - }, - { - "x": 1807, - "y": 0 - }, - { - "x": 1807, - "y": 296 - }, - { - "x": 112, - "y": 296 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weaponWheelSticker", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets/misc/black.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_N", - "texture": "assets/environment/tile/map_edge/map_edge_2.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_E", - "texture": "assets/environment/tile/map_edge/map_edge_5.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_SE", - "texture": "assets/environment/tile/map_edge/map_edge_7.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_NE", - "texture": "assets/environment/tile/map_edge/map_edge_4.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 302, - "name": "bridge_tiled_1", - "texture": "assets/environment/bridge/bridge.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 300, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "debug_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" - } - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - }, - { - "folded": true, - "name": "Movement", - "type": "structure", - "children": [ - { - "name": "TopDownMovement", - "type": "structure", - "children": [ - { - "name": "run", - "persistentUuid": "dbe1965b-d1af-415d-9e83-2e4312af1344", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 400 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "type": "number", - "value": 200 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "type": "number", - "value": 0.1 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "type": "number", - "value": 0.2 - } - ] - }, - { - "name": "walk", - "type": "structure", - "children": [ - { - "folded": true, - "name": "Acceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "Deceleration", - "type": "number", - "value": 5000 - }, - { - "folded": true, - "name": "maxSpeed", - "persistentUuid": "951b3641-c7f3-4740-be3a-9ce2e9e0f693", - "type": "number", - "value": 300 - }, - { - "folded": true, - "name": "shuffleSwitchTime", - "persistentUuid": "c6a43fd0-3cef-4009-bdcb-974b49edf1d1", - "type": "number", - "value": 1000 - }, - { - "folded": true, - "name": "shuffleTweenDelay", - "persistentUuid": "e725550c-0f72-4304-99c6-c8bb804277bb", - "type": "number", - "value": 0.2 - }, - { - "folded": true, - "name": "shuffleTweenDuration", - "persistentUuid": "5b2ef896-624b-46b8-9e33-3419d81e02eb", - "type": "number", - "value": 0.3 - } - ] - } - ] - }, - { - "name": "canMove", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Camera", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": true - } - ] - }, - { - "folded": true, - "name": "Phone", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - } - ] - }, - { - "name": "Weapon", - "type": "structure", - "children": [ - { - "folded": true, - "name": "active", - "type": "boolean", - "value": false - }, - { - "folded": true, - "name": "equipped", - "type": "string", - "value": "" - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.1, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 4, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - }, - { - "effectType": "Reflection", - "name": "breathing", - "doubleParameters": { - "alphaEnding": 1, - "alphaStart": 1, - "amplitudeEnding": 3, - "amplitudeStart": 0, - "animationSpeed": 1, - "boundary": 0, - "waveLengthEnding": 100, - "waveLengthStart": 60 - }, - "stringParameters": {}, - "booleanParameters": { - "mirror": false - } - } - ], - "behaviors": [ - { - "name": "FireBullet", - "type": "FireBullet::FireBullet", - "FireCooldown": 0.1, - "HasJustFired": false, - "RotateBullet": true, - "FiringArc": 45, - "BulletQuantity": 1, - "AngleVariance": 3, - "BulletSpeedVariance": 0, - "AmmoQuantity": 0, - "ShotsPerReload": 0, - "ReloadDuration": 1, - "MaxAmmo": 0, - "ShotsBeforeNextReload": 0, - "TotalShotsFired": 0, - "TotalBulletsCreated": 0, - "StartingAmmo": 0, - "TotalReloadsCompleted": 0, - "UnlimitedAmmo": true, - "ReloadInProgress": false, - "HeatIncreasePerShot": 0, - "HeatLevel": 0, - "AutomaticReloading": true, - "OverheatDuration": 0, - "LinearCoolingRate": 0.1, - "ExponentialCoolingRate": 0.3, - "BulletLayer": "", - "RandomizedAngle": 0 - }, - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "angularMaxSpeed": 500, - "acceleration": 200, - "deceleration": 200, - "ignoreDefaultControls": true, - "maxSpeed": 200, - "allowDiagonals": true, - "angleOffset": 0, - "customIsometryAngle": 30, - "movementAngleOffset": 0, - "rotateObject": true, - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_1.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_2.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_3.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_4.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_5.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_6.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_7.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_8.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/body/body_9.png", - "points": [ - { - "name": "pointR", - "x": 23, - "y": 48 - }, - { - "name": "pointL", - "x": 23, - "y": 18 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 44, - "y": 0 - }, - { - "x": 44, - "y": 66 - }, - { - "x": 0, - "y": 66 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 6, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/leg/leg_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 28 - }, - { - "x": 0, - "y": 28 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "player_hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_2.png", - "points": [ - { - "name": "finger", - "x": 29.5, - "y": 12.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 12.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 12.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 13 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 13 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_8.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_9.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/hand/hand_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 15.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 15.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 39, - "y": 0 - }, - { - "x": 39, - "y": 24 - }, - { - "x": 0, - "y": 24 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NE", - "texture": "assets/environment/tile/road/road_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_NW", - "texture": "assets/environment/tile/road/road_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_W", - "texture": "assets/environment/tile/road/road_8.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_E", - "texture": "assets/environment/tile/road/road_10.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_center", - "texture": "assets/environment/tile/road/road_43.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_S", - "texture": "assets/environment/tile/road/road_27.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SE", - "texture": "assets/environment/tile/road/road_31.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_SW", - "texture": "assets/environment/tile/road/road_30.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_inner", - "texture": "assets/environment/tile/road/road_24.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_end", - "texture": "assets/environment/tile/road/road_39.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_curve_right", - "texture": "assets/environment/tile/road/road_13.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_S", - "texture": "assets/environment/tile/map_edge/map_edge_9.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "road_tiled_white_curve_left", - "texture": "assets/environment/tile/road/road_14.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "beach_sand_inner_SW", - "texture": "assets/environment/tile/map_edge/map_edge_14.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "sand_tiled_1", - "texture": "assets/environment/tile/path/sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "sand_tiled_2", - "texture": "assets/environment/tile/path/dirt.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziGold_hold", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "properties", - "type": "structure", - "children": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 270 - }, - { - "folded": true, - "name": "height", - "type": "number", - "value": 100 - }, - { - "folded": true, - "name": "pushBackStrength", - "persistentUuid": "4f3e2c10-41c8-4036-ad79-5ccc09bfb98a", - "type": "number", - "value": 10 - }, - { - "folded": true, - "name": "variance", - "type": "number", - "value": 4 - }, - { - "folded": true, - "name": "width", - "type": "number", - "value": 100 - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziGold.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 45, - "y": 16 - }, - { - "x": 55, - "y": 16 - }, - { - "x": 55, - "y": 59 - }, - { - "x": 45, - "y": 59 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziLong_hold", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "properties", - "type": "structure", - "children": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 270 - }, - { - "folded": true, - "name": "height", - "type": "number", - "value": 100 - }, - { - "folded": true, - "name": "pushBackStrength", - "type": "number", - "value": 10 - }, - { - "folded": true, - "name": "variance", - "type": "number", - "value": 3 - }, - { - "folded": true, - "name": "width", - "type": "number", - "value": 100 - } - ] - } - ], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker", - "OnlyFollowPosition": false, - "IsDestroyedWithParent": true - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziLong.png", - "points": [ - { - "name": "spawn", - "x": 50, - "y": 70 - } - ], - "originPoint": { - "name": "origine", - "x": 50, - "y": 32 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 50, - "y": 32 - }, - "customCollisionMask": [ - [ - { - "x": 44, - "y": 14 - }, - { - "x": 56, - "y": 14 - }, - { - "x": 56, - "y": 86 - }, - { - "x": 44, - "y": 86 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uziLong_pick", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement", - "RadiusX": 10, - "RadiusY": 10, - "LoopDuration": 6, - "InitialTurningLeft": true, - "InitialDirectionAngle": 0, - "ShouldRotate": true, - "RotationOffset": 0, - "CenterX": 0, - "CenterY": 0, - "MovementAngle": 0, - "OldX": 2.0247e-320, - "OldY": 2.0247e-320 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/gun/uziLong.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 50, - "y": 30 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 44, - "y": 14 - }, - { - "x": 56, - "y": 14 - }, - { - "x": 56, - "y": 86 - }, - { - "x": 44, - "y": 86 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "uzi_ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [ - { - "effectType": "DropShadow", - "name": "shadow", - "doubleParameters": { - "alpha": 0.2, - "blur": 0, - "distance": 10, - "padding": 0, - "quality": 3, - "rotation": 0 - }, - "stringParameters": { - "color": "0;0;0" - }, - "booleanParameters": { - "shadowOnly": false - } - } - ], - "behaviors": [ - { - "name": "DestroyOutside", - "type": "DestroyOutsideBehavior::DestroyOutside", - "extraBorder": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/weapon/ammo/ammo_uzi.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 10, - "y": 13 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 19, - "y": 5 - }, - { - "x": 31, - "y": 5 - }, - { - "x": 31, - "y": 33 - }, - { - "x": 19, - "y": 33 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "name": "map", - "type": "TileMap::TileMap", - "variables": [], - "effects": [], - "behaviors": [], - "content": { - "tilemapJsonFile": "assets/environment/map/city1.json", - "tilesetJsonFile": "", - "tilemapAtlasImage": "assets/environment/map/city1/spritesheet.png", - "displayMode": "visible", - "layerIndex": 0, - "levelIndex": 0, - "animationSpeedScale": 1, - "animationFps": 4 - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "folderName": "UI", - "children": [ - { - "folderName": "weapon", - "children": [ - { - "objectName": "NewObject" - }, - { - "objectName": "weapon_icons" - } - ] - }, - { - "folderName": "phone", - "children": [ - { - "objectName": "phone_icon" - }, - { - "objectName": "phone_frame" - }, - { - "objectName": "phone_mask" - }, - { - "objectName": "phone_wallpaper" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "phone_wifi" - } - ] - }, - { - "folderName": "debug", - "children": [ - { - "objectName": "wheel_info" - }, - { - "objectName": "weapon_holding" - }, - { - "objectName": "weapon_reloading" - }, - { - "objectName": "debug_fps" - }, - { - "objectName": "debug_toggle" - }, - { - "objectName": "debug_text" - }, - { - "objectName": "debug_ammo_text" - } - ] - } - ] - }, - { - "folderName": "Environment", - "children": [ - { - "folderName": "map", - "children": [ - { - "objectName": "map" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "brown_leaves_particle" - } - ] - }, - { - "folderName": "sports", - "children": [ - { - "folderName": "basketball", - "children": [ - { - "objectName": "basketball_hoop" - }, - { - "objectName": "basketball_court" - }, - { - "objectName": "basketball" - } - ] - } - ] - }, - { - "folderName": "props", - "children": [ - { - "objectName": "props_moveable" - }, - { - "objectName": "props_decorations" - }, - { - "objectName": "props_fences" - }, - { - "objectName": "props_roadblock" - }, - { - "objectName": "props_foliage" - } - ] - } - ] - }, - { - "folderName": "Player", - "children": [ - { - "objectName": "player_crosshair" - }, - { - "objectName": "player_body" - }, - { - "objectName": "player_hand" - }, - { - "objectName": "player_leg" - } - ] - }, - { - "folderName": "Land", - "children": [ - { - "objectName": "edge_sand_NW" - }, - { - "objectName": "beach_sand_NE" - }, - { - "objectName": "beach_sand_N" - }, - { - "objectName": "beach_sand_E" - }, - { - "objectName": "beach_sand_S" - }, - { - "objectName": "beach_sand_SE" - }, - { - "objectName": "beach_sand_SW" - }, - { - "objectName": "beach_sand_inner_SW" - }, - { - "objectName": "beach_sand_W" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "sand_tiled_1" - }, - { - "objectName": "sand_tiled_2" - }, - { - "objectName": "sand_sprite" - }, - { - "objectName": "grass_tiled" - } - ] - }, - { - "folderName": "Road", - "children": [ - { - "objectName": "road_tiled_white_N" - }, - { - "objectName": "road_tiled_white_NE" - }, - { - "objectName": "road_tiled_white_NW" - }, - { - "objectName": "road_tiled_white_SE" - }, - { - "objectName": "road_tiled_white_SW" - }, - { - "objectName": "road_tiled_white_W" - }, - { - "objectName": "road_tiled_white_E" - }, - { - "objectName": "road_tiled_white_S" - }, - { - "objectName": "road_tiled_white_inner" - }, - { - "objectName": "road_tiled_white_center" - }, - { - "objectName": "road_tiled_white_end" - }, - { - "objectName": "road_tiled_white_curve_right" - }, - { - "objectName": "road_tiled_white_curve_left" - }, - { - "objectName": "bridge_tiled_1" - } - ] - }, - { - "folderName": "Weapons", - "children": [ - { - "folderName": "Icons", - "children": [ - { - "objectName": "weapon_icon" - }, - { - "objectName": "weapon_bar" - } - ] - }, - { - "folderName": "particles", - "children": [ - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_rocket" - } - ] - }, - { - "folderName": "type", - "children": [ - { - "folderName": "melee" - }, - { - "folderName": "gun", - "children": [ - { - "folderName": "hold", - "children": [ - { - "objectName": "uziGold_hold" - }, - { - "objectName": "uziLong_hold" - } - ] - }, - { - "folderName": "pick", - "children": [ - { - "objectName": "uziLong_pick" - } - ] - } - ] - } - ] - }, - { - "folderName": "hitbox" - }, - { - "folderName": "ammo", - "children": [ - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "uzi_ammo" - } - ] - } - ] - }, - { - "folderName": "Buildings", - "children": [ - { - "objectName": "building_rooftop" - } - ] - }, - { - "folderName": "Sea", - "children": [ - { - "objectName": "sea_tiled_water" - }, - { - "objectName": "sea_tiled_water_cover" - } - ] - }, - { - "folderName": "misc", - "children": [ - { - "objectName": "door" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "weaponWheelSticker" - } - ] - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "folded": true, - "name": "Note - Important Information", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "IntroZoom", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ZoomCamera" - }, - "parameters": [ - "", - "0.35", - "", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.5" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.7" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.35", - "", - "\"elastic\"", - "1" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.3" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.8" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.5", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0.1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "0.9" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "0.75", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "0" - ] - }, - { - "type": { - "value": "SetLayerEffectParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"brightness\"", - "1" - ] - }, - { - "type": { - "value": "Tween::TweenCameraZoom2" - }, - "parameters": [ - "", - "\"introZoom\"", - "1", - "", - "\"elastic\"", - "2" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "ToggleGlobalVariableAsBoolean" - }, - "parameters": [ - "Game.intro" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "Game.Camera.Zoom", - "=", - "1" - ] - }, - { - "type": { - "value": "SetLayerEffectBooleanParameter" - }, - "parameters": [ - "", - "", - "\"introSepia\"", - "\"opacity\"", - "" - ] - }, - { - "type": { - "value": "SetLayerEffectBooleanParameter" - }, - "parameters": [ - "", - "", - "\"brightness\"", - "\"opacity\"", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "building_rooftop", - "=", - "120" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "props_foliage", - "=", - "121" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "sea_tiled_water_cover" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Road", - "=", - "-1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Sea", - "=", - "-2" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "0" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_tiled_1", - "=", - "1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_tiled_2", - "=", - "1" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Beach_Sand", - "=", - "1" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "folded": true, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Sepia", - "name": "introSepia", - "doubleParameters": { - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "KawaseBlur", - "name": "weaponBar", - "doubleParameters": { - "blur": 0.5, - "padding": 0, - "pixelizeX": 0, - "pixelizeY": 0, - "quality": 3 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "LightNight", - "name": "nightDayCycle", - "doubleParameters": { - "opacity": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "Brightness", - "name": "brightness", - "doubleParameters": { - "brightness": 0 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "UI", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Debug", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "EllipseMovement", - "type": "EllipseMovement::EllipseMovement" - }, - { - "name": "FireBullet", - "type": "FireBullet::FireBullet" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "ShakeObject_PositionAngle", - "type": "ShakeObject::ShakeObject_PositionAngle" - }, - { - "name": "StayOnScreen", - "type": "StayOnScreen::StayOnScreen" - }, - { - "name": "Sticker", - "type": "Sticker::Sticker" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "ToggleSwitch", - "type": "ToggleSwitch::ToggleSwitch" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/intro.json b/src/layouts/intro.json deleted file mode 100644 index e824b3193..000000000 --- a/src/layouts/intro.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Intro", - "name": "Intro", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.2256, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [], - "objects": [], - "objectsFolderStructure": { - "folderName": "__ROOT" - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "TODO: Make intro with our splash screens" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "P2P::UseDefaultBroker" - }, - "parameters": [] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "sceneLoad", - "=", - "\"FirstLaunch\"" - ] - }, - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "\"Loading\"", - "yes" - ] - }, - { - "type": { - "value": "SetFullScreen" - }, - "parameters": [ - "", - "yes", - "" - ] - } - ] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/loading.json b/src/layouts/loading.json deleted file mode 100644 index d92850e20..000000000 --- a/src/layouts/loading.json +++ /dev/null @@ -1,502 +0,0 @@ -{ - "b": 0, - "disableInputWhenNotFocused": true, - "mangledName": "Loading", - "name": "Loading", - "r": 0, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 0, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 1.666876379799323, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [ - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 1080, - "layer": "", - "name": "bg", - "persistentUuid": "6f3762d0-afeb-40cb-b5df-311e031d8b5e", - "width": 1920, - "x": 0, - "y": 0, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "NewText", - "persistentUuid": "c6d63835-a9a8-4b43-9e90-7487b9c6d6c6", - "width": 0, - "x": 79, - "y": 540, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 32, - "height": 34, - "layer": "", - "name": "RedFlatBarw", - "persistentUuid": "c029355d-31e7-4bc0-850d-52f3752ec8cb", - "width": 1369, - "x": 66, - "y": 608, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "assetStoreId": "", - "height": 32, - "name": "bg", - "texture": "assets\\placeholder\\tiledGreen.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "NewText", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Loading...", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "left", - "characterSize": 50, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "Loading...", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "left", - "characterSize": 50, - "color": "0;0;0" - } - }, - { - "assetStoreId": "3d6c54e76a9a06cbd7629c1e78388d4ab808bbf36d644c61d6a14c9ad34d4f89", - "name": "RedFlatBarw", - "type": "PanelSpriteContinuousBar::PanelSpriteContinuousBar", - "variables": [], - "effects": [], - "behaviors": [], - "content": { - "PreviousHighValueDuration": 0, - "ShowLabel": true, - "BarTopPadding": 4, - "BarBottomPadding": 6, - "BarLeftPadding": 4, - "BarRightPadding": 4, - "MaxValue": 100, - "InitialValue": 0 - }, - "childrenContent": { - "Background": { - "bottomMargin": 6, - "height": 34, - "leftMargin": 4, - "rightMargin": 4, - "texture": "Flat Bar White Border.png", - "tiled": true, - "topMargin": 6, - "width": 224 - }, - "Buffer": { - "bottomMargin": 0, - "height": 24, - "leftMargin": 0, - "rightMargin": 0, - "texture": "Flat Bar Red Fill Bar.png", - "tiled": true, - "topMargin": 0, - "width": 24 - }, - "FillBar": { - "bottomMargin": 0, - "height": 24, - "leftMargin": 0, - "rightMargin": 0, - "texture": "Flat Bar Red Fill Bar.png", - "tiled": true, - "topMargin": 0, - "width": 24 - }, - "Label": { - "bold": false, - "italic": false, - "smoothed": true, - "underlined": false, - "string": "", - "font": "", - "textAlignment": "center", - "characterSize": 16, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "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": "", - "font": "", - "textAlignment": "center", - "characterSize": 16, - "color": "255;255;255" - } - } - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "bg" - }, - { - "objectName": "NewText" - }, - { - "objectName": "RedFlatBarw" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Centers loading bar on the screen." - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "OpacityCapability::OpacityBehavior::SetValue" - }, - "parameters": [ - "bg", - "Opacity", - "=", - "200" - ] - }, - { - "type": { - "value": "MettreX" - }, - "parameters": [ - "RedFlatBarw", - "=", - "66" - ] - }, - { - "type": { - "value": "ResizableCapability::ResizableBehavior::SetWidth" - }, - "parameters": [ - "RedFlatBarw", - "Resizable", - "=", - "SceneWindowWidth() - 132" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Scrolling Background 'n' Displays loading progress" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "TiledSpriteObject::XOffset" - }, - "parameters": [ - "bg", - "+", - "5" - ] - }, - { - "type": { - "value": "TiledSpriteObject::YOffset" - }, - "parameters": [ - "bg", - "+", - "5" - ] - }, - { - "type": { - "value": "PanelSpriteContinuousBar::PanelSpriteContinuousBar::SetValue" - }, - "parameters": [ - "RedFlatBarw", - "=", - "SceneLoadingProgress(GlobalVariableString(sceneLoad)) * 100", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Goes to loaded scene." - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "AreSceneAssetsLoaded" - }, - "parameters": [ - "", - "GlobalVariableString(sceneLoad)" - ] - } - ], - "actions": [ - { - "type": { - "value": "Wait" - }, - "parameters": [ - "1" - ] - }, - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "GlobalVariableString(sceneLoad)", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Center align" - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "AlignObject::ToSceneCenter" - }, - "parameters": [ - "", - "RedFlatBarw", - "" - ] - }, - { - "type": { - "value": "AlignObject::ToSceneCenter" - }, - "parameters": [ - "", - "NewText", - "" - ] - } - ] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/maincity.json b/src/layouts/maincity.json deleted file mode 100644 index 9a833a998..000000000 --- a/src/layouts/maincity.json +++ /dev/null @@ -1,62271 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "MainCity", - "name": "MainCity", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": true, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": true, - "zoomFactor": 0.17890818668780223, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "bullet_obstacles", - "objects": [ - { - "name": "roof_tops" - }, - { - "name": "Fences" - }, - { - "name": "road_block" - }, - { - "name": "foliage" - } - ] - }, - { - "name": "doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "North_doors", - "objects": [ - { - "name": "door" - } - ] - }, - { - "name": "West_doors", - "objects": [] - }, - { - "name": "South_doors", - "objects": [] - }, - { - "name": "East_doors", - "objects": [] - }, - { - "name": "Phone_status_bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - } - ], - "variables": [ - { - "name": "fade", - "type": "string", - "value": "" - }, - { - "name": "walk_in_west", - "type": "string", - "value": "" - }, - { - "name": "walk_in_north", - "type": "string", - "value": "" - }, - { - "name": "separate", - "type": "string", - "value": "" - }, - { - "name": "walk_in_south", - "type": "string", - "value": "" - }, - { - "name": "walk_in_east", - "type": "string", - "value": "" - }, - { - "name": "niko_movement", - "type": "string", - "value": "" - }, - { - "name": "Camera_zoom", - "type": "string", - "value": "" - }, - { - "name": "basketball", - "type": "string", - "value": "" - }, - { - "name": "phone", - "type": "string", - "value": "" - }, - { - "name": "using_phone", - "type": "string", - "value": "" - }, - { - "name": "phone_time", - "type": "string", - "value": "" - }, - { - "name": "godmode", - "type": "boolean", - "value": false - }, - { - "name": "Died_effects_tween", - "type": "string", - "value": "" - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", - "width": 2100, - "x": -3220, - "y": -210, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", - "width": 70, - "x": 910, - "y": -350, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", - "width": 70, - "x": 980, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", - "width": 70, - "x": 1470, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", - "width": 70, - "x": 1330, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", - "width": 70, - "x": 1260, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", - "width": 70, - "x": 1190, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", - "width": 70, - "x": 1120, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", - "width": 70, - "x": 1050, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", - "width": 70, - "x": 1190, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", - "width": 70, - "x": 1400, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", - "width": 70, - "x": 1190, - "y": 140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", - "width": 70, - "x": 1470, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", - "width": 70, - "x": 1470, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", - "width": 70, - "x": 1470, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", - "width": 70, - "x": 1470, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", - "width": 70, - "x": 1470, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", - "width": 70, - "x": 1470, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", - "width": 70, - "x": 1470, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", - "width": 70, - "x": 1470, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", - "width": 70, - "x": 910, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", - "width": 70, - "x": 910, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", - "width": 70, - "x": 910, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", - "width": 70, - "x": 910, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", - "width": 70, - "x": 910, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "name": "road", - "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", - "width": 210, - "x": 1260, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "name": "road", - "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", - "width": 210, - "x": 980, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", - "width": 70, - "x": 1190, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", - "width": 70, - "x": 1190, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", - "width": 70, - "x": 1190, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", - "width": 70, - "x": 1190, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", - "width": 70, - "x": 1190, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", - "width": 70, - "x": 1190, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", - "width": 70, - "x": 1190, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", - "width": 70, - "x": 1190, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", - "width": 70, - "x": 1190, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", - "width": 70, - "x": 1190, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", - "width": 70, - "x": 1190, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", - "width": 70, - "x": 1190, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", - "width": 70, - "x": 1190, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", - "width": 70, - "x": 1190, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", - "width": 70, - "x": 1190, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", - "width": 70, - "x": 1190, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", - "width": 70, - "x": 1470, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", - "width": 70, - "x": 1470, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", - "width": 70, - "x": 1470, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", - "width": 70, - "x": 1470, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", - "width": 70, - "x": 1470, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", - "width": 70, - "x": 1470, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", - "width": 70, - "x": 1470, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", - "width": 70, - "x": 1470, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", - "width": 70, - "x": 1470, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", - "width": 70, - "x": 1470, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", - "width": 70, - "x": 1470, - "y": 1120, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", - "width": 70, - "x": 1470, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", - "width": 70, - "x": 910, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", - "width": 70, - "x": 910, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", - "width": 70, - "x": 910, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", - "width": 70, - "x": 910, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", - "width": 70, - "x": 910, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", - "width": 70, - "x": 910, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", - "width": 70, - "x": 910, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", - "width": 70, - "x": 910, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", - "width": 70, - "x": 910, - "y": 1190, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", - "width": 70, - "x": 910, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", - "width": 70, - "x": 910, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", - "width": 70, - "x": 910, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", - "width": 70, - "x": 420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", - "width": 70, - "x": 770, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", - "width": 70, - "x": 700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", - "width": 70, - "x": 630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", - "width": 70, - "x": 490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", - "width": 70, - "x": 1190, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", - "width": 70, - "x": 1190, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", - "width": 70, - "x": 1190, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", - "width": 1260, - "x": -70, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", - "width": 70, - "x": 420, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", - "width": 70, - "x": 490, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", - "width": 70, - "x": 560, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", - "width": 70, - "x": 630, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", - "width": 70, - "x": 700, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", - "width": 70, - "x": 770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", - "width": 70, - "x": 840, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", - "width": 70, - "x": 980, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", - "width": 1610, - "x": -420, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", - "width": 280, - "x": 1190, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", - "width": 70, - "x": 1470, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", - "width": 70, - "x": 1470, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", - "width": 70, - "x": 1470, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", - "width": 70, - "x": 1470, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", - "width": 70, - "x": 1470, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", - "width": 70, - "x": 1470, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", - "width": 70, - "x": 1470, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", - "width": 70, - "x": 1330, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", - "width": 70, - "x": 1260, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", - "width": 70, - "x": 1190, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", - "width": 70, - "x": 1120, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", - "width": 70, - "x": 1400, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", - "width": 70, - "x": 700, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", - "width": 70, - "x": 910, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", - "width": 70, - "x": 1470, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", - "width": 70, - "x": 420, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", - "width": 70, - "x": 490, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", - "width": 70, - "x": 1470, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", - "width": 1820, - "x": 1540, - "y": -420, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", - "sealed": true, - "width": 3360, - "x": -140, - "y": 1890, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", - "width": 70, - "x": -70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", - "width": 70, - "x": 280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", - "width": 70, - "x": 210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", - "width": 70, - "x": 140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", - "width": 70, - "x": 70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", - "width": 70, - "x": 0, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", - "width": 70, - "x": 350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", - "width": 70, - "x": -70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", - "width": 70, - "x": 0, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", - "width": 70, - "x": 70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", - "width": 70, - "x": 140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", - "width": 70, - "x": 280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", - "width": 70, - "x": 350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", - "width": 70, - "x": 350, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", - "width": 70, - "x": 280, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", - "width": 70, - "x": 210, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", - "width": 70, - "x": 140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", - "width": 70, - "x": 70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", - "width": 70, - "x": -70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", - "width": 70, - "x": 0, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", - "width": 630, - "x": -700, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", - "width": 70, - "x": -770, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", - "width": 70, - "x": -770, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", - "width": 70, - "x": -770, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", - "width": 70, - "x": -770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", - "width": 70, - "x": -770, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", - "width": 70, - "x": -770, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", - "width": 70, - "x": -630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", - "width": 70, - "x": -280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", - "width": 70, - "x": -350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", - "width": 70, - "x": -420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", - "width": 70, - "x": -490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", - "width": 70, - "x": -560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", - "width": 70, - "x": -210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", - "width": 70, - "x": -700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", - "width": 70, - "x": -770, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", - "width": 70, - "x": -770, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", - "width": 70, - "x": -770, - "y": 1260, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", - "width": 70, - "x": -140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", - "width": 70, - "x": -350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", - "width": 70, - "x": -280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", - "width": 70, - "x": -210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", - "width": 70, - "x": -140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", - "width": 70, - "x": -490, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "road", - "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", - "width": 210, - "x": -700, - "y": 1540, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "name": "road", - "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", - "width": 210, - "x": -420, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", - "width": 70, - "x": -210, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", - "width": 70, - "x": -210, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", - "width": 70, - "x": -210, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", - "width": 70, - "x": -210, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", - "width": 70, - "x": -210, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", - "width": 70, - "x": -140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", - "width": 70, - "x": -210, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", - "width": 70, - "x": -210, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", - "width": 70, - "x": -210, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", - "width": 70, - "x": -210, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", - "width": 70, - "x": -770, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", - "width": 70, - "x": -770, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", - "width": 70, - "x": -770, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", - "width": 70, - "x": -770, - "y": 2100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", - "width": 70, - "x": -770, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", - "width": 70, - "x": -770, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", - "width": 70, - "x": -770, - "y": 2310, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", - "width": 70, - "x": -490, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", - "width": 70, - "x": -490, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", - "width": 70, - "x": -420, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", - "width": 70, - "x": -490, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", - "width": 70, - "x": -490, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", - "width": 70, - "x": -490, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", - "width": 70, - "x": -490, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", - "width": 70, - "x": -490, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", - "width": 70, - "x": -490, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", - "width": 70, - "x": -490, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", - "width": 70, - "x": -490, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", - "width": 70, - "x": -490, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", - "width": 70, - "x": -770, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", - "width": 70, - "x": -490, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", - "width": 70, - "x": -490, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", - "width": 70, - "x": -490, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", - "width": 70, - "x": -1820, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", - "width": 70, - "x": -700, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", - "width": 70, - "x": -630, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", - "width": 280, - "x": -490, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", - "width": 70, - "x": -210, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", - "width": 70, - "x": -210, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", - "width": 70, - "x": -210, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", - "width": 70, - "x": -210, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", - "width": 70, - "x": -210, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", - "width": 70, - "x": -210, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", - "width": 70, - "x": -210, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", - "width": 70, - "x": -700, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", - "width": 70, - "x": -350, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", - "width": 70, - "x": -420, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", - "width": 70, - "x": -490, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", - "width": 70, - "x": -560, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", - "width": 70, - "x": -630, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", - "width": 70, - "x": -280, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", - "width": 70, - "x": -1820, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", - "width": 70, - "x": -210, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", - "width": 70, - "x": -490, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", - "width": 70, - "x": -490, - "y": 2660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", - "width": 70, - "x": -560, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", - "width": 70, - "x": -210, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", - "width": 70, - "x": -490, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "road", - "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", - "width": 210, - "x": -420, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "road", - "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", - "width": 210, - "x": -700, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", - "width": 210, - "x": -700, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", - "width": 70, - "x": -2310, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", - "width": 70, - "x": -1960, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", - "width": 70, - "x": -2030, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", - "width": 70, - "x": -2100, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", - "width": 70, - "x": -2170, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", - "width": 70, - "x": -2240, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", - "width": 70, - "x": -1890, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", - "width": 70, - "x": -2310, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", - "width": 70, - "x": -2240, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", - "width": 70, - "x": -2170, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", - "width": 70, - "x": -2100, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", - "width": 70, - "x": -2030, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", - "width": 70, - "x": -1960, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", - "width": 70, - "x": -1890, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", - "width": 70, - "x": -1890, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", - "width": 70, - "x": -1960, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", - "width": 70, - "x": -2030, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", - "width": 70, - "x": -2100, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", - "width": 70, - "x": -2170, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", - "width": 70, - "x": -2310, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", - "width": 70, - "x": -2240, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", - "width": 70, - "x": -2450, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", - "width": 70, - "x": -2520, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", - "width": 70, - "x": -2590, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", - "width": 70, - "x": -2660, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", - "width": 70, - "x": -2730, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", - "width": 70, - "x": -2380, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", - "width": 70, - "x": -2800, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", - "width": 70, - "x": -2730, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", - "width": 70, - "x": -2660, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", - "width": 70, - "x": -2590, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", - "width": 70, - "x": -2520, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", - "width": 70, - "x": -2450, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", - "width": 70, - "x": -2380, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", - "width": 70, - "x": -2380, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", - "width": 70, - "x": -2450, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", - "width": 70, - "x": -2520, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", - "width": 70, - "x": -2590, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", - "width": 70, - "x": -2660, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", - "width": 70, - "x": -2800, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", - "width": 70, - "x": -2730, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", - "width": 2730, - "x": -3430, - "y": 2520, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", - "width": 70, - "x": -3500, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", - "width": 70, - "x": -3500, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", - "width": 70, - "x": -3500, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", - "width": 70, - "x": -3500, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", - "width": 70, - "x": -3500, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", - "width": 70, - "x": -3360, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", - "width": 70, - "x": -3010, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", - "width": 70, - "x": -3080, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", - "width": 70, - "x": -3150, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", - "width": 70, - "x": -3220, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", - "width": 70, - "x": -3290, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", - "width": 70, - "x": -3430, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", - "width": 70, - "x": -3500, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", - "width": 70, - "x": -3500, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", - "width": 70, - "x": -3500, - "y": 2450, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", - "width": 70, - "x": -3080, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", - "width": 70, - "x": -3010, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", - "width": 70, - "x": -2940, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", - "width": 70, - "x": -2870, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", - "width": 70, - "x": -3220, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", - "width": 70, - "x": -2870, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", - "width": 70, - "x": -2940, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", - "width": 70, - "x": -3220, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", - "width": 70, - "x": -3150, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", - "width": 70, - "x": -3220, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", - "width": 70, - "x": -3220, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", - "width": 70, - "x": -770, - "y": 2380, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", - "width": 70, - "x": -1260, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", - "width": 70, - "x": -910, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", - "width": 70, - "x": -980, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", - "width": 70, - "x": -1050, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", - "width": 70, - "x": -1120, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", - "width": 70, - "x": -1190, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", - "width": 70, - "x": -840, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", - "width": 70, - "x": -1400, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", - "width": 70, - "x": -1470, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", - "width": 70, - "x": -1540, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", - "width": 70, - "x": -1610, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", - "width": 70, - "x": -1680, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", - "width": 70, - "x": -1330, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", - "width": 70, - "x": -1820, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", - "width": 70, - "x": -1750, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", - "width": 70, - "x": -770, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", - "width": 70, - "x": -840, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", - "width": 70, - "x": -910, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", - "width": 70, - "x": -980, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", - "width": 70, - "x": -1050, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", - "width": 70, - "x": -1190, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", - "width": 70, - "x": -1120, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", - "width": 70, - "x": -1260, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", - "width": 70, - "x": -1330, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", - "width": 70, - "x": -1400, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", - "width": 70, - "x": -1470, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", - "width": 70, - "x": -1540, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", - "width": 70, - "x": -1680, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", - "width": 70, - "x": -1610, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", - "width": 70, - "x": -1750, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", - "width": 70, - "x": -840, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", - "width": 70, - "x": -1330, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", - "width": 70, - "x": -1260, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", - "width": 70, - "x": -1190, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", - "width": 70, - "x": -1120, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", - "width": 70, - "x": -1050, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", - "width": 70, - "x": -980, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", - "width": 70, - "x": -910, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", - "width": 70, - "x": -1750, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", - "width": 70, - "x": -1680, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", - "width": 70, - "x": -1610, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", - "width": 70, - "x": -1540, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", - "width": 70, - "x": -1470, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", - "width": 70, - "x": -1400, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", - "width": 70, - "x": -770, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "road", - "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", - "width": 2450, - "x": -3150, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6090, - "layer": "", - "name": "road", - "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5810, - "layer": "", - "name": "road", - "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", - "width": 2450, - "x": -3220, - "y": 1260, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", - "width": 70, - "x": -2940, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", - "width": 70, - "x": -2940, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", - "width": 70, - "x": -2940, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", - "width": 70, - "x": -2940, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", - "width": 70, - "x": -2940, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", - "width": 70, - "x": -2940, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", - "width": 70, - "x": -2940, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", - "width": 70, - "x": -3500, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", - "width": 70, - "x": -3500, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", - "width": 70, - "x": -3500, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", - "width": 70, - "x": -3500, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", - "width": 70, - "x": -3500, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", - "width": 70, - "x": -3500, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", - "width": 70, - "x": -3500, - "y": 3500, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", - "width": 70, - "x": -3220, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", - "width": 70, - "x": -3220, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", - "width": 70, - "x": -3220, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", - "width": 70, - "x": -3220, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", - "width": 70, - "x": -3220, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", - "width": 70, - "x": -3220, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", - "width": 70, - "x": -3220, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", - "width": 70, - "x": -3220, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", - "width": 70, - "x": -3500, - "y": 3570, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", - "width": 2730, - "x": -2870, - "y": 3080, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "grass_tiled", - "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", - "width": 140, - "x": -3780, - "y": 2590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "Placeholder", - "persistentUuid": "836a213c-8cdb-4941-9c4e-4bd98ce3f7a2", - "width": 0, - "x": -474, - "y": 1561, - "zOrder": 9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Niko", - "persistentUuid": "70a36631-69a6-4c00-a464-a6e16d80fb3e", - "width": 0, - "x": -108, - "y": 1519, - "zOrder": 10, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", - "width": 70, - "x": 490, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", - "width": 70, - "x": 420, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", - "width": 70, - "x": 490, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", - "width": 70, - "x": 420, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "door", - "persistentUuid": "0cb1981b-95d9-487d-aa05-ed08b983e17a", - "width": 140, - "x": 420, - "y": 780, - "zOrder": 1203, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4e812b69-5a12-4e22-ba1c-a240bebf9e91", - "width": 140, - "x": -560, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "f96e4766-b631-4e90-ab0e-4f80ce881d3c", - "width": 140, - "x": -700, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a73a07c-8c3e-410d-b7ed-654e7a743421", - "width": 70, - "x": -280, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34ec7312-1e01-466e-934d-6e6681a1bfa8", - "width": 70, - "x": -210, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", - "width": 70, - "x": -280, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", - "width": 70, - "x": -210, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun1", - "persistentUuid": "5a448040-cb9c-49d6-8597-63790fc6f3fb", - "width": 0, - "x": 98, - "y": 1194, - "zOrder": 121, - "numberProperties": [], - "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": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "roof_tops", - "persistentUuid": "7f356254-bc0d-47bb-8f49-970e4d2333ef", - "width": 140, - "x": 420, - "y": 700, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "roof_tops", - "persistentUuid": "24c3b475-9d85-487a-8528-e8c0ba748dc5", - "width": 140, - "x": 420, - "y": 840, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "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, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "02cb8fdd-466a-4a8b-ba79-590d3bf4c75d", - "width": 0, - "x": -70, - "y": 1330, - "zOrder": 108, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "3a7b864c-ab03-4d43-aefa-f7eae6251dc8", - "width": 0, - "x": -140, - "y": 1400, - "zOrder": 109, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "385a36c9-79bb-4c01-b99b-1364069755d3", - "width": 0, - "x": -70, - "y": 1400, - "zOrder": 110, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "AmmoText", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun2", - "persistentUuid": "91c0c667-36c2-4c98-acb1-ff4aebfefcc9", - "width": 0, - "x": 70, - "y": 1470, - "zOrder": 112, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", - "width": 70, - "x": 770, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", - "width": 70, - "x": 840, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", - "width": 70, - "x": 770, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", - "width": 70, - "x": 840, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", - "width": 70, - "x": 770, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", - "width": 70, - "x": 840, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", - "width": 70, - "x": 770, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", - "width": 70, - "x": 840, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", - "width": 70, - "x": 770, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", - "width": 70, - "x": 840, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", - "width": 70, - "x": 770, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", - "width": 70, - "x": 840, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", - "width": 70, - "x": 770, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", - "width": 70, - "x": 770, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", - "width": 70, - "x": 840, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", - "width": 70, - "x": 770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", - "width": 70, - "x": 840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", - "width": 70, - "x": 770, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", - "width": 70, - "x": 840, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", - "width": 70, - "x": 770, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", - "width": 70, - "x": 840, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", - "width": 70, - "x": 770, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", - "width": 70, - "x": 840, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", - "width": 70, - "x": 770, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", - "width": 70, - "x": 840, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", - "width": 70, - "x": 770, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", - "width": 70, - "x": 840, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", - "width": 70, - "x": 770, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", - "width": 70, - "x": 840, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", - "width": 70, - "x": 770, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", - "width": 70, - "x": 840, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", - "width": 70, - "x": 770, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", - "width": 70, - "x": 840, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", - "width": 70, - "x": 770, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", - "width": 70, - "x": 840, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", - "width": 70, - "x": 770, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", - "width": 70, - "x": 840, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", - "width": 70, - "x": 770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", - "width": 70, - "x": 840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", - "width": 70, - "x": 770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", - "width": 70, - "x": 840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", - "width": 70, - "x": 1540, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", - "width": 70, - "x": 1610, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", - "width": 70, - "x": 1540, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", - "width": 70, - "x": 1610, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", - "width": 70, - "x": 1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", - "width": 70, - "x": 1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", - "width": 70, - "x": 1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", - "width": 70, - "x": 1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", - "width": 70, - "x": 1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", - "width": 70, - "x": 1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", - "width": 70, - "x": 1540, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", - "width": 70, - "x": 1610, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", - "width": 70, - "x": 1540, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", - "width": 70, - "x": 1610, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", - "width": 70, - "x": 1540, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", - "width": 70, - "x": 1610, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", - "width": 70, - "x": 1540, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", - "width": 70, - "x": 1610, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", - "width": 70, - "x": 1540, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", - "width": 70, - "x": 1610, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", - "width": 70, - "x": 1540, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", - "width": 70, - "x": 1610, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", - "width": 70, - "x": 1540, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", - "width": 70, - "x": 1610, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", - "width": 70, - "x": 1540, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", - "width": 70, - "x": 1610, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", - "width": 70, - "x": 1540, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", - "width": 70, - "x": 1610, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", - "width": 70, - "x": 1540, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", - "width": 70, - "x": 1610, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", - "width": 70, - "x": 1540, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", - "width": 70, - "x": 1610, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", - "width": 70, - "x": 1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", - "width": 70, - "x": 1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", - "width": 70, - "x": 1540, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", - "width": 70, - "x": 1610, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", - "width": 70, - "x": 1540, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", - "width": 70, - "x": 1610, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", - "width": 70, - "x": 1540, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", - "width": 70, - "x": 1610, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", - "width": 70, - "x": 1540, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", - "width": 70, - "x": 1610, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", - "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, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", - "width": 70, - "x": 1540, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", - "width": 70, - "x": 1610, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", - "width": 70, - "x": 1540, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", - "width": 70, - "x": 1610, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", - "width": 70, - "x": 1540, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", - "width": 70, - "x": 1610, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", - "width": 70, - "x": 1540, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", - "width": 70, - "x": 1610, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", - "width": 70, - "x": 1540, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", - "width": 70, - "x": 1610, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", - "width": 70, - "x": 1540, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", - "width": 70, - "x": 1610, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "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", - "width": 70, - "x": 1610, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", - "width": 70, - "x": 1540, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", - "width": 70, - "x": 1610, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", - "width": 70, - "x": 1540, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", - "width": 70, - "x": 1610, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", - "width": 70, - "x": 1540, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", - "width": 70, - "x": 1610, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", - "width": 70, - "x": -140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", - "width": 70, - "x": -70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", - "width": 70, - "x": -140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", - "width": 70, - "x": -70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", - "width": 70, - "x": 0, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", - "width": 70, - "x": 70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", - "width": 70, - "x": 0, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", - "width": 70, - "x": 70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", - "width": 70, - "x": 140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", - "width": 70, - "x": 210, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", - "width": 70, - "x": 140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", - "width": 70, - "x": 210, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", - "width": 70, - "x": 280, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", - "width": 70, - "x": 350, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", - "width": 70, - "x": 280, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", - "width": 70, - "x": 350, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", - "width": 70, - "x": 420, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", - "width": 70, - "x": 490, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", - "width": 70, - "x": 420, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", - "width": 70, - "x": 490, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", - "width": 70, - "x": 700, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", - "width": 70, - "x": 700, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7247f601-a750-4757-be03-95644999d829", - "width": 70, - "x": 910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", - "width": 70, - "x": 910, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", - "width": 70, - "x": 1050, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", - "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", - "width": 70, - "x": 1120, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", - "width": 70, - "x": 1190, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", - "width": 70, - "x": 1120, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", - "width": 70, - "x": 1190, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", - "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", - "width": 70, - "x": 1330, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", - "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", - "width": 70, - "x": 1330, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", - "width": 70, - "x": 1400, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fc092547-6921-461e-8626-545397380833", - "width": 70, - "x": 1470, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", - "width": 70, - "x": 1400, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", - "width": 70, - "x": 1470, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", - "width": 70, - "x": 420, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", - "width": 70, - "x": 490, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", - "width": 70, - "x": 490, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", - "width": 70, - "x": 420, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", - "width": 70, - "x": 630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", - "width": 70, - "x": 700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", - "width": 70, - "x": 630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", - "width": 70, - "x": 700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", - "width": 70, - "x": 280, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", - "width": 70, - "x": 350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", - "width": 70, - "x": 280, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", - "width": 70, - "x": 350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", - "width": 70, - "x": 560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", - "width": 70, - "x": 560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", - "width": 70, - "x": -210, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", - "width": 70, - "x": -280, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", - "width": 70, - "x": -280, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", - "width": 70, - "x": -210, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", - "width": 70, - "x": 0, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", - "width": 70, - "x": 70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", - "width": 70, - "x": 0, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", - "width": 70, - "x": 70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", - "width": 70, - "x": 140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", - "width": 70, - "x": 210, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", - "width": 70, - "x": 140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", - "width": 70, - "x": 210, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", - "width": 70, - "x": -350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", - "width": 70, - "x": -140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", - "width": 70, - "x": -350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", - "width": 70, - "x": -140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", - "width": 70, - "x": -490, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", - "width": 70, - "x": -420, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", - "width": 70, - "x": -490, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", - "width": 70, - "x": -420, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", - "width": 70, - "x": -630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", - "width": 70, - "x": -560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", - "width": 70, - "x": -630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", - "width": 70, - "x": -560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", - "width": 70, - "x": -910, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", - "width": 70, - "x": -70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", - "width": 70, - "x": -910, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", - "width": 70, - "x": -70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", - "width": 70, - "x": -770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", - "width": 70, - "x": -700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", - "width": 70, - "x": -770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", - "width": 70, - "x": -700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", - "width": 70, - "x": 560, - "y": 1050, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", - "width": 70, - "x": 630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", - "width": 70, - "x": 700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", - "width": 70, - "x": 700, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", - "width": 70, - "x": 700, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", - "width": 70, - "x": 700, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", - "width": 70, - "x": 700, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", - "width": 70, - "x": 700, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", - "width": 70, - "x": 700, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", - "width": 70, - "x": 700, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", - "width": 70, - "x": 700, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", - "width": 70, - "x": 700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", - "width": 70, - "x": 560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", - "width": 70, - "x": 630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", - "width": 70, - "x": 420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", - "width": 70, - "x": 280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", - "width": 70, - "x": 350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", - "width": 70, - "x": 140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", - "width": 70, - "x": 210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", - "width": 70, - "x": 0, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", - "width": 70, - "x": 0, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", - "width": 70, - "x": 0, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", - "width": 70, - "x": 0, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", - "width": 70, - "x": 0, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", - "width": 70, - "x": 0, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", - "width": 70, - "x": 0, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", - "width": 70, - "x": 0, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", - "width": 70, - "x": 70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", - "width": 70, - "x": 140, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", - "width": 70, - "x": 70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", - "width": 70, - "x": 280, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", - "width": 70, - "x": 210, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", - "width": 70, - "x": 350, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", - "width": 70, - "x": 0, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", - "width": 70, - "x": -210, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", - "width": 70, - "x": -140, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", - "width": 70, - "x": -350, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", - "width": 70, - "x": -280, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", - "width": 70, - "x": -490, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", - "width": 70, - "x": -420, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", - "width": 70, - "x": -630, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", - "width": 70, - "x": -560, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", - "width": 70, - "x": -700, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", - "width": 70, - "x": -910, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", - "width": 70, - "x": -840, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", - "width": 70, - "x": -770, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", - "width": 70, - "x": -910, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", - "width": 70, - "x": -910, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", - "width": 70, - "x": -910, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", - "width": 70, - "x": -910, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", - "width": 70, - "x": -910, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", - "width": 70, - "x": -910, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", - "width": 70, - "x": -910, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", - "width": 70, - "x": -910, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", - "width": 70, - "x": -910, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", - "width": 70, - "x": -840, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", - "width": 70, - "x": -770, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", - "width": 70, - "x": -700, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", - "width": 70, - "x": -630, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", - "width": 70, - "x": -490, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", - "width": 70, - "x": -420, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", - "width": 70, - "x": -560, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", - "width": 70, - "x": 0, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "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": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", - "width": 70, - "x": -980, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", - "width": 70, - "x": -980, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", - "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", - "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", - "width": 70, - "x": -1050, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", - "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", - "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", - "width": 70, - "x": -980, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", - "width": 70, - "x": -840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", - "width": 70, - "x": -840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", - "width": 70, - "x": -910, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", - "width": 70, - "x": -840, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", - "width": 70, - "x": -840, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", - "width": 70, - "x": -910, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", - "width": 70, - "x": -910, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", - "width": 70, - "x": -910, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", - "width": 70, - "x": -840, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", - "width": 70, - "x": -840, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", - "width": 70, - "x": -910, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", - "width": 70, - "x": -910, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", - "width": 70, - "x": -840, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", - "width": 70, - "x": -840, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", - "width": 70, - "x": -910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", - "width": 70, - "x": -840, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", - "width": 70, - "x": -840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", - "width": 70, - "x": -910, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", - "width": 70, - "x": -910, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", - "width": 70, - "x": -910, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", - "width": 70, - "x": -840, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", - "width": 70, - "x": -840, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", - "width": 70, - "x": -910, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", - "width": 70, - "x": -910, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", - "width": 70, - "x": -840, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", - "width": 70, - "x": -840, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", - "width": 70, - "x": -910, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", - "width": 70, - "x": -840, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", - "width": 70, - "x": -140, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", - "width": 70, - "x": -70, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", - "width": 70, - "x": -70, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", - "width": 70, - "x": -140, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", - "width": 70, - "x": -140, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", - "width": 70, - "x": -70, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", - "width": 70, - "x": -70, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", - "width": 70, - "x": -140, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", - "width": 70, - "x": -140, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", - "width": 70, - "x": -70, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", - "width": 70, - "x": -140, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", - "width": 70, - "x": -70, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", - "width": 70, - "x": -70, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", - "width": 70, - "x": -140, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", - "width": 70, - "x": -140, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", - "width": 70, - "x": -70, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", - "width": 70, - "x": -70, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", - "width": 70, - "x": -140, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", - "width": 70, - "x": -140, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", - "width": 70, - "x": -70, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", - "width": 70, - "x": -140, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", - "width": 70, - "x": -70, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", - "width": 70, - "x": -70, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", - "width": 70, - "x": -140, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", - "width": 70, - "x": -140, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", - "width": 70, - "x": -70, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", - "width": 70, - "x": -70, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", - "width": 70, - "x": -140, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", - "width": 70, - "x": -140, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", - "width": 70, - "x": -70, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", - "width": 70, - "x": -2030, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", - "width": 70, - "x": -1960, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", - "width": 70, - "x": -2030, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", - "width": 70, - "x": -1960, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", - "width": 70, - "x": -1890, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", - "width": 70, - "x": -1820, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", - "width": 70, - "x": -1890, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", - "width": 70, - "x": -1820, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", - "width": 70, - "x": -1750, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", - "width": 70, - "x": -1680, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", - "width": 70, - "x": -1750, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", - "width": 70, - "x": -1680, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", - "width": 70, - "x": -1610, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", - "width": 70, - "x": -1540, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", - "width": 70, - "x": -1610, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", - "width": 70, - "x": -1540, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", - "width": 70, - "x": -1470, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", - "width": 70, - "x": -1400, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", - "width": 70, - "x": -1470, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", - "width": 70, - "x": -1400, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", - "width": 70, - "x": -1330, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", - "width": 70, - "x": -1260, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", - "width": 70, - "x": -1330, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", - "width": 70, - "x": -1260, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", - "width": 70, - "x": -1190, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", - "width": 70, - "x": -1120, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", - "width": 70, - "x": -1190, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", - "width": 70, - "x": -1120, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", - "width": 70, - "x": -1050, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", - "width": 70, - "x": -980, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", - "width": 70, - "x": -1050, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", - "width": 70, - "x": -980, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", - "width": 70, - "x": -3150, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", - "width": 70, - "x": -3080, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", - "width": 70, - "x": -3150, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", - "width": 70, - "x": -3080, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", - "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": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", - "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": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", - "width": 70, - "x": -2730, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", - "width": 70, - "x": -2660, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", - "width": 70, - "x": -2730, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", - "width": 70, - "x": -2660, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", - "width": 70, - "x": -2590, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", - "width": 70, - "x": -2520, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", - "width": 70, - "x": -2590, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", - "width": 70, - "x": -2520, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", - "width": 70, - "x": -2450, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", - "width": 70, - "x": -2380, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", - "width": 70, - "x": -2450, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", - "width": 70, - "x": -2380, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", - "width": 70, - "x": -2310, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", - "width": 70, - "x": -2240, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", - "width": 70, - "x": -2310, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", - "width": 70, - "x": -2240, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", - "width": 70, - "x": -2170, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", - "width": 70, - "x": -2100, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", - "width": 70, - "x": -2170, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", - "width": 70, - "x": -2100, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", - "width": 70, - "x": -1120, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", - "width": 70, - "x": -1050, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", - "width": 70, - "x": -1120, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", - "width": 70, - "x": -1050, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", - "width": 70, - "x": -980, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", - "width": 70, - "x": -910, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", - "width": 70, - "x": -980, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", - "width": 70, - "x": -910, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", - "width": 70, - "x": -840, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", - "width": 70, - "x": -770, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", - "width": 70, - "x": -840, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", - "width": 70, - "x": -770, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", - "width": 70, - "x": -700, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", - "width": 70, - "x": -630, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", - "width": 70, - "x": -700, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", - "width": 70, - "x": -630, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", - "width": 70, - "x": -560, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", - "width": 70, - "x": -490, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", - "width": 70, - "x": -560, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", - "width": 70, - "x": -490, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", - "width": 70, - "x": -420, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", - "width": 70, - "x": -350, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", - "width": 70, - "x": -420, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", - "width": 70, - "x": -350, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", - "width": 70, - "x": -280, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", - "width": 70, - "x": -210, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", - "width": 70, - "x": -280, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", - "width": 70, - "x": -210, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", - "width": 70, - "x": -140, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", - "width": 70, - "x": -70, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", - "width": 70, - "x": -140, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", - "width": 70, - "x": -70, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", - "width": 70, - "x": -2240, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", - "width": 70, - "x": -2170, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", - "width": 70, - "x": -2240, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", - "width": 70, - "x": -2170, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", - "width": 70, - "x": -2100, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", - "width": 70, - "x": -2030, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", - "width": 70, - "x": -2100, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", - "width": 70, - "x": -2030, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", - "width": 70, - "x": -1960, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", - "width": 70, - "x": -1890, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", - "width": 70, - "x": -1960, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", - "width": 70, - "x": -1890, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", - "width": 70, - "x": -1820, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", - "width": 70, - "x": -1750, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", - "width": 70, - "x": -1820, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", - "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": "52547319-be3b-4d16-85d0-1719cbd0927e", - "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": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", - "width": 70, - "x": -1610, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", - "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": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", - "width": 70, - "x": -1610, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", - "width": 70, - "x": -1540, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", - "width": 70, - "x": -1470, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", - "width": 70, - "x": -1540, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", - "width": 70, - "x": -1470, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", - "width": 70, - "x": -1400, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", - "width": 70, - "x": -1330, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", - "width": 70, - "x": -1400, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", - "width": 70, - "x": -1330, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", - "width": 70, - "x": -1260, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", - "width": 70, - "x": -1190, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", - "width": 70, - "x": -1260, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", - "width": 70, - "x": -1190, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", - "width": 70, - "x": -70, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", - "width": 70, - "x": -70, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "b09cda94-3c28-44fc-b95a-d49943c138be", - "width": 140, - "x": 140, - "y": 910, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": 140, - "y": 630, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "f455fae4-a981-41cb-9f42-ebc230edd898", - "width": 140, - "x": 140, - "y": 770, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -792, - "y": 651, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -792, - "y": 931, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -792, - "y": 791, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", - "width": 70, - "x": -980, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", - "width": 70, - "x": -980, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", - "width": 70, - "x": -980, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", - "width": 70, - "x": -980, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", - "width": 70, - "x": -1470, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", - "width": 70, - "x": -1120, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", - "width": 70, - "x": -1190, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", - "width": 70, - "x": -1050, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", - "width": 70, - "x": -1540, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", - "width": 70, - "x": -1400, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", - "width": 70, - "x": -1330, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", - "width": 70, - "x": -1260, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", - "width": 70, - "x": -1680, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", - "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": "07698671-edda-4c85-9967-32af9785d79d", - "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": "d50db919-2104-455b-ac8c-335ad1539b98", - "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": "5b476c0d-426b-498b-9764-3a6392e611eb", - "width": 70, - "x": -1680, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", - "width": 70, - "x": -1680, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", - "width": 70, - "x": -1680, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", - "width": 70, - "x": -1680, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", - "width": 70, - "x": -980, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", - "width": 70, - "x": -980, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", - "width": 70, - "x": -980, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", - "width": 70, - "x": -980, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", - "width": 70, - "x": -980, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", - "width": 70, - "x": -1680, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", - "width": 70, - "x": -1680, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", - "width": 70, - "x": -1680, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", - "width": 70, - "x": -1680, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", - "width": 70, - "x": -1680, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", - "width": 70, - "x": -1680, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", - "width": 70, - "x": -980, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", - "width": 70, - "x": -1680, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", - "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": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", - "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": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", - "width": 70, - "x": -1680, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", - "width": 70, - "x": -1330, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", - "width": 70, - "x": -1400, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", - "width": 70, - "x": -1470, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", - "width": 70, - "x": -1540, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", - "width": 70, - "x": -1050, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", - "width": 70, - "x": -1120, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", - "width": 70, - "x": -1190, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", - "width": 70, - "x": -1260, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", - "width": 70, - "x": -980, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", - "width": 70, - "x": -980, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1540, - "y": 1120, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", - "width": 70, - "x": -1680, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1610, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, - "x": -1470, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1120, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1190, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1050, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", - "width": 70, - "x": -1540, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", - "width": 70, - "x": -1400, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", - "width": 70, - "x": -1330, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", - "width": 70, - "x": -1260, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", - "width": 70, - "x": -1610, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", - "width": 70, - "x": -1610, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", - "width": 70, - "x": -980, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", - "width": 70, - "x": -980, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", - "width": 70, - "x": -980, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1540, - "y": 1330, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1540, - "y": 1610, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1540, - "y": 1820, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "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": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", - "width": 70, - "x": -2730, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", - "width": 70, - "x": -2660, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", - "width": 70, - "x": -2730, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", - "width": 70, - "x": -2660, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", - "width": 70, - "x": -2590, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", - "width": 70, - "x": -2520, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", - "width": 70, - "x": -2590, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", - "width": 70, - "x": -2520, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", - "width": 70, - "x": -2450, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", - "width": 70, - "x": -2380, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", - "width": 70, - "x": -2450, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", - "width": 70, - "x": -2380, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", - "width": 70, - "x": -2310, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", - "width": 70, - "x": -2310, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", - "width": 70, - "x": -3500, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", - "width": 70, - "x": -3430, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", - "width": 70, - "x": -3500, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", - "width": 70, - "x": -3430, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", - "width": 70, - "x": -3360, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", - "width": 70, - "x": -3290, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", - "width": 70, - "x": -3360, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", - "width": 70, - "x": -3290, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", - "width": 70, - "x": -3220, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", - "width": 70, - "x": -2870, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", - "width": 70, - "x": -3220, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", - "width": 70, - "x": -2870, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", - "width": 70, - "x": -2800, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", - "width": 70, - "x": -2800, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", - "width": 70, - "x": -3570, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", - "width": 70, - "x": -3640, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", - "width": 70, - "x": -3640, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", - "width": 70, - "x": -3570, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", - "width": 70, - "x": -3640, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", - "width": 70, - "x": -3570, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", - "width": 70, - "x": -3570, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", - "width": 70, - "x": -3640, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", - "width": 70, - "x": -3640, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", - "width": 70, - "x": -3570, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", - "width": 70, - "x": -3570, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", - "width": 70, - "x": -3640, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", - "width": 70, - "x": -3640, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", - "width": 70, - "x": -3570, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", - "width": 70, - "x": -3640, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", - "width": 70, - "x": -3570, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", - "width": 70, - "x": -3640, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", - "width": 70, - "x": -3570, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", - "width": 70, - "x": -3570, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", - "width": 70, - "x": -3640, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", - "width": 70, - "x": -3640, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", - "width": 70, - "x": -3570, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", - "width": 70, - "x": -3640, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", - "width": 70, - "x": -3570, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", - "width": 70, - "x": -3570, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", - "width": 70, - "x": -3640, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", - "width": 70, - "x": -3640, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", - "width": 70, - "x": -3570, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", - "width": 70, - "x": -3570, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", - "width": 70, - "x": -3640, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", - "width": 70, - "x": -3640, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", - "width": 70, - "x": -3570, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", - "width": 70, - "x": -3640, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", - "width": 70, - "x": -3570, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", - "width": 70, - "x": -3640, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", - "width": 70, - "x": -3570, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", - "width": 70, - "x": -2870, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", - "width": 70, - "x": -2800, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", - "width": 70, - "x": -2800, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", - "width": 70, - "x": -2870, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", - "width": 70, - "x": -2870, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", - "width": 70, - "x": -2800, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", - "width": 70, - "x": -2800, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", - "width": 70, - "x": -2870, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", - "width": 70, - "x": -2870, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", - "width": 70, - "x": -2800, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", - "width": 70, - "x": -910, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", - "width": 70, - "x": -910, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", - "width": 70, - "x": -910, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", - "width": 70, - "x": -910, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", - "width": 70, - "x": -910, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", - "width": 70, - "x": -910, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", - "width": 70, - "x": -910, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", - "width": 70, - "x": 630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", - "width": 70, - "x": 490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", - "width": 70, - "x": 560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", - "width": 70, - "x": 350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", - "width": 70, - "x": 420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", - "width": 70, - "x": 210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", - "width": 70, - "x": 280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", - "width": 70, - "x": 140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", - "width": 70, - "x": 700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", - "width": 70, - "x": -350, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", - "width": 70, - "x": -490, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", - "width": 70, - "x": -420, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", - "width": 70, - "x": -630, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", - "width": 70, - "x": -560, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", - "width": 70, - "x": -770, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", - "width": 70, - "x": -700, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", - "width": 70, - "x": -840, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", - "width": 70, - "x": 0, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", - "width": 70, - "x": -140, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", - "width": 70, - "x": -70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", - "width": 70, - "x": -280, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", - "width": 70, - "x": -210, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", - "width": 70, - "x": 70, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "depth": 1, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", - "width": 70, - "x": 700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", - "width": 70, - "x": 700, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", - "width": 70, - "x": 630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", - "width": 70, - "x": 490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", - "width": 70, - "x": 560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", - "width": 70, - "x": 350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", - "width": 70, - "x": 420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", - "width": 70, - "x": 210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", - "width": 70, - "x": 280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", - "width": 70, - "x": 140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": 0, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", - "width": 70, - "x": 70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", - "width": 70, - "x": -140, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", - "width": 70, - "x": -70, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", - "width": 70, - "x": -280, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", - "width": 70, - "x": -210, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -420, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -350, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", - "width": 70, - "x": -490, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", - "width": 70, - "x": -630, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", - "width": 70, - "x": -560, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", - "width": 70, - "x": -770, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", - "width": 70, - "x": -700, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", - "width": 70, - "x": -840, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", - "width": 70, - "x": -910, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", - "width": 70, - "x": -2030, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", - "width": 70, - "x": -1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", - "width": 70, - "x": -1960, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", - "width": 70, - "x": -1960, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", - "width": 70, - "x": -1960, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", - "width": 70, - "x": -1960, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", - "width": 70, - "x": -1960, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", - "width": 70, - "x": -1960, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", - "width": 70, - "x": -1960, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", - "width": 70, - "x": -1960, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", - "width": 70, - "x": -1960, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", - "width": 70, - "x": -1960, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", - "width": 70, - "x": -1960, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", - "width": 70, - "x": -1960, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", - "width": 70, - "x": -1960, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", - "width": 70, - "x": -1960, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", - "width": 70, - "x": -1960, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", - "width": 70, - "x": -1960, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", - "width": 140, - "x": 560, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "87df3078-0b84-4b8b-877a-f5d1693b797c", - "width": 140, - "x": 420, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "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": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "a99a4ec2-138d-4e94-9c27-c4e417bb0bd9", - "width": 0, - "x": 280, - "y": 560, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 0, - "x": -1470, - "y": 1190, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 0, - "x": -1470, - "y": 1820, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 0, - "x": -490, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 0, - "x": -2520, - "y": 1540, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "4393ace7-fdcd-4410-9789-21f0bd2e30f4", - "width": 140, - "x": -2380, - "y": 1890, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "name": "roof_tops", - "persistentUuid": "5c6123ae-d57b-4022-a5c7-db0ee6e014b9", - "width": 140, - "x": -2380, - "y": 1893, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "roof_tops", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 0, - "x": -2520, - "y": 910, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", - "width": 70, - "x": -2030, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", - "width": 70, - "x": -2030, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fa51ad7d-bd0d-4b5c-91aa-f33f5566aced", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun3", - "persistentUuid": "649553fa-c15a-47bc-82bc-2b7b8687672b", - "width": 0, - "x": 70, - "y": 1540, - "zOrder": 121, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire_collision", - "persistentUuid": "ded64a81-59c3-4fd0-8f25-30f0b69e5472", - "width": 0, - "x": -247, - "y": 1324, - "zOrder": 122, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", - "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", - "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", - "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", - "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", - "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", - "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", - "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", - "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", - "width": 70, - "x": -2380, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", - "width": 70, - "x": -2030, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", - "width": 70, - "x": -2100, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", - "width": 70, - "x": -2310, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", - "width": 70, - "x": -2240, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", - "width": 70, - "x": -2170, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", - "width": 70, - "x": -1960, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", - "width": 70, - "x": -2660, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", - "width": 70, - "x": -2660, - "y": 1750, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", - "width": 70, - "x": -2660, - "y": 1610, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", - "width": 70, - "x": -2660, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", - "width": 70, - "x": -2660, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", - "width": 70, - "x": -2660, - "y": 1960, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", - "width": 70, - "x": -2660, - "y": 1890, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", - "width": 70, - "x": -2660, - "y": 1820, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", - "width": 70, - "x": -2660, - "y": 2170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", - "width": 70, - "x": -2660, - "y": 2100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", - "width": 70, - "x": -2660, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", - "width": 70, - "x": -2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", - "width": 70, - "x": -2660, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", - "width": 70, - "x": -2450, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", - "width": 70, - "x": -2520, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", - "width": 70, - "x": -2590, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", - "width": 70, - "x": -2660, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", - "width": 70, - "x": -2660, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", - "width": 70, - "x": -2660, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", - "width": 70, - "x": -2660, - "y": 1050, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", - "width": 70, - "x": -2660, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", - "width": 70, - "x": -2660, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", - "width": 70, - "x": -2660, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", - "width": 70, - "x": -2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", - "width": 70, - "x": -2660, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", - "width": 70, - "x": -2660, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", - "width": 70, - "x": -2660, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", - "width": 70, - "x": -2660, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", - "width": 70, - "x": -2660, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", - "width": 70, - "x": -2660, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", - "width": 70, - "x": -2590, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", - "width": 70, - "x": -2520, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", - "width": 70, - "x": -2450, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", - "width": 70, - "x": -2380, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", - "width": 70, - "x": -2310, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", - "width": 70, - "x": -2240, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", - "width": 70, - "x": -2170, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", - "width": 70, - "x": -2100, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", - "width": 70, - "x": -2030, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", - "width": 70, - "x": -2590, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", - "width": 70, - "x": -2100, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", - "width": 70, - "x": -2520, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", - "width": 70, - "x": -2170, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", - "width": 70, - "x": -2240, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", - "width": 70, - "x": -2450, - "y": 2240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", - "width": 70, - "x": -2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", - "width": 70, - "x": -2030, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", - "width": 70, - "x": -2100, - "y": 840, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "name": "road", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", - "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", - "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": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", - "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": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", - "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": "298aee83-aa29-41c1-b284-36dd965c4c5a", - "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": "cc90e793-2e56-4022-969b-7465ce8c17b3", - "width": 70, - "x": -3010, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", - "width": 70, - "x": -3010, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", - "width": 70, - "x": -3010, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", - "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": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", - "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": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", - "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": "a3880452-b974-4033-9d23-48e5b46c5439", - "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": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", - "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": "3efc7c00-3405-4012-afaa-121ad6c60f20", - "width": 70, - "x": -3010, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", - "width": 70, - "x": -3010, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", - "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": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", - "width": 70, - "x": -3010, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", - "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": "ca10a7df-d8f6-4c40-b039-429f191bd075", - "width": 70, - "x": -3010, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", - "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": "4d250a55-e245-4459-8107-5d3986e0046d", - "width": 70, - "x": -3010, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", - "width": 70, - "x": -3010, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", - "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", - "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", - "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", - "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", - "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", - "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", - "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", - "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", - "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", - "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", - "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", - "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", - "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", - "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", - "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", - "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", - "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", - "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", - "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", - "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", - "width": 70, - "x": -3010, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", - "width": 70, - "x": -3010, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", - "width": 70, - "x": -3010, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", - "width": 70, - "x": -3010, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", - "width": 70, - "x": -3010, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", - "width": 70, - "x": -3010, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", - "width": 70, - "x": -3010, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", - "width": 70, - "x": -3010, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", - "width": 70, - "x": -3010, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", - "width": 70, - "x": -3010, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", - "width": 70, - "x": -3010, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", - "width": 70, - "x": -2730, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", - "width": 70, - "x": -2730, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", - "width": 70, - "x": -2730, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", - "width": 70, - "x": -2730, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", - "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", - "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", - "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", - "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", - "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", - "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", - "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", - "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", - "width": 70, - "x": -2380, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", - "width": 70, - "x": -2310, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", - "width": 70, - "x": -2240, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", - "width": 70, - "x": -2590, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", - "width": 70, - "x": -2450, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", - "width": 70, - "x": -2380, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", - "width": 70, - "x": -2310, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", - "width": 70, - "x": -2800, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", - "width": 70, - "x": -2730, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", - "width": 70, - "x": -2660, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", - "width": 70, - "x": -2590, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", - "width": 70, - "x": -2520, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", - "width": 70, - "x": -2870, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", - "width": 70, - "x": -2940, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", - "width": 70, - "x": -1750, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", - "width": 70, - "x": -1680, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", - "width": 70, - "x": -1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", - "width": 70, - "x": -2100, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", - "width": 70, - "x": -2030, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", - "width": 70, - "x": -1960, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", - "width": 70, - "x": -1890, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", - "width": 70, - "x": -1820, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", - "width": 70, - "x": -2170, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", - "width": 70, - "x": -2240, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", - "width": 70, - "x": -1050, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", - "width": 70, - "x": -980, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", - "width": 70, - "x": -1400, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", - "width": 70, - "x": -1330, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", - "width": 70, - "x": -1260, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", - "width": 70, - "x": -1190, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", - "width": 70, - "x": -1120, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", - "width": 70, - "x": -1470, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", - "width": 70, - "x": -1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", - "width": 70, - "x": -980, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", - "width": 70, - "x": -980, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", - "width": 70, - "x": -980, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", - "width": 70, - "x": -980, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", - "width": 70, - "x": -980, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", - "width": 70, - "x": -980, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", - "width": 70, - "x": -980, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", - "width": 70, - "x": -980, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", - "width": 70, - "x": -980, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", - "width": 70, - "x": -980, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", - "width": 70, - "x": -980, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", - "width": 70, - "x": -1190, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", - "width": 70, - "x": -1120, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", - "width": 70, - "x": -1050, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", - "width": 70, - "x": -1400, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", - "width": 70, - "x": -1330, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", - "width": 70, - "x": -1260, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", - "width": 70, - "x": -1680, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", - "width": 70, - "x": -1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", - "width": 70, - "x": -1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", - "width": 70, - "x": -1470, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "depth": 1, - "height": 564, - "layer": "", - "name": "ground_1", - "persistentUuid": "fa1a4a5e-9b00-407e-b0dd-21ab489e513b", - "width": 1680, - "x": -910, - "y": -214, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ground_elements", - "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", - "width": 0, - "x": -840, - "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": 490, - "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": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", - "width": 140, - "x": -910, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "name": "sports_equipments", - "persistentUuid": "aacbefe4-00b0-4e91-a270-f33a3ce872b0", - "width": 140, - "x": -770, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", - "width": 70, - "x": -2380, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", - "width": 70, - "x": -2450, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", - "width": 70, - "x": -2170, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", - "width": 70, - "x": -2170, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", - "width": 70, - "x": -2240, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", - "width": 70, - "x": -2310, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", - "width": 70, - "x": -2380, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", - "width": 70, - "x": -2450, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", - "width": 70, - "x": -2100, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", - "width": 70, - "x": -2240, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", - "width": 70, - "x": -2310, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", - "width": 70, - "x": -2170, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", - "width": 70, - "x": -2240, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", - "width": 70, - "x": -2310, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", - "width": 70, - "x": -2380, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", - "width": 70, - "x": -2450, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", - "width": 70, - "x": -2450, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", - "width": 70, - "x": -2380, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", - "width": 70, - "x": -2310, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", - "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", - "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", - "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "road", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", - "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", - "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", - "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", - "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", - "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", - "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", - "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", - "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", - "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", - "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "road", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", - "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", - "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", - "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", - "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", - "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", - "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", - "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", - "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", - "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", - "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", - "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", - "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", - "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", - "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", - "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", - "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", - "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", - "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", - "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", - "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", - "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", - "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", - "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", - "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", - "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", - "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", - "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", - "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", - "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", - "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", - "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", - "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", - "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", - "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", - "width": 70, - "x": -1260, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", - "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", - "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "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": "road", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", - "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", - "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", - "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", - "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", - "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", - "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", - "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", - "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", - "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", - "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", - "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", - "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", - "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", - "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", - "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", - "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", - "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", - "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", - "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", - "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", - "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", - "width": 70, - "x": -2940, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", - "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", - "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", - "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", - "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", - "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", - "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", - "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", - "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", - "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", - "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", - "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", - "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", - "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", - "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", - "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", - "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", - "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", - "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", - "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", - "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", - "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", - "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", - "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", - "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", - "width": 70, - "x": -2800, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", - "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", - "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", - "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", - "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", - "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", - "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", - "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", - "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", - "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", - "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", - "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", - "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", - "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", - "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", - "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", - "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", - "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", - "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", - "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", - "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", - "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", - "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", - "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", - "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", - "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", - "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", - "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", - "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", - "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", - "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", - "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", - "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", - "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", - "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", - "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", - "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", - "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", - "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", - "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", - "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", - "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", - "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", - "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", - "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", - "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", - "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", - "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", - "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", - "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", - "width": 70, - "x": -1960, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", - "width": 70, - "x": -1960, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", - "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", - "width": 70, - "x": -1960, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", - "width": 70, - "x": -1960, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", - "width": 70, - "x": -2030, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1960, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", - "width": 70, - "x": -980, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", - "width": 70, - "x": -2100, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", - "width": 70, - "x": -2030, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", - "width": 70, - "x": -2030, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", - "width": 70, - "x": -2030, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", - "width": 70, - "x": -2940, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", - "width": 70, - "x": -2800, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", - "width": 70, - "x": -1120, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", - "width": 70, - "x": -560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", - "width": 70, - "x": -490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", - "width": 70, - "x": -420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", - "width": 70, - "x": -910, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", - "width": 70, - "x": -840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", - "width": 70, - "x": -770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", - "width": 70, - "x": -700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", - "width": 70, - "x": -630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", - "width": 70, - "x": -980, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", - "width": 70, - "x": -1050, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", - "width": 70, - "x": 140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", - "width": 70, - "x": 210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", - "width": 70, - "x": 280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", - "width": 70, - "x": -210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", - "width": 70, - "x": -140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", - "width": 70, - "x": -70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", - "width": 70, - "x": 0, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", - "width": 70, - "x": 70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", - "width": 70, - "x": -280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", - "width": 70, - "x": -350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", - "width": 70, - "x": 840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", - "width": 70, - "x": 490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", - "width": 70, - "x": 560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", - "width": 70, - "x": 630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", - "width": 70, - "x": 700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", - "width": 70, - "x": 770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", - "width": 70, - "x": 420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", - "width": 70, - "x": 350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", - "width": 70, - "x": -1120, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", - "width": 70, - "x": -560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", - "width": 70, - "x": -490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", - "width": 70, - "x": -420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", - "width": 70, - "x": -910, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", - "width": 70, - "x": -840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", - "width": 70, - "x": -770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", - "width": 70, - "x": -700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", - "width": 70, - "x": -630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", - "width": 70, - "x": -980, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", - "width": 70, - "x": -1050, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", - "width": 70, - "x": 140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", - "width": 70, - "x": 210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", - "width": 70, - "x": 280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", - "width": 70, - "x": -210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", - "width": 70, - "x": -140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", - "width": 70, - "x": -70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", - "width": 70, - "x": 0, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", - "width": 70, - "x": 70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", - "width": 70, - "x": -280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", - "width": 70, - "x": -350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", - "width": 70, - "x": 840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", - "width": 70, - "x": 490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", - "width": 70, - "x": 560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", - "width": 70, - "x": 630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", - "width": 70, - "x": 700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", - "width": 70, - "x": 770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", - "width": 70, - "x": 420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", - "width": 70, - "x": 350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", - "width": 70, - "x": -1120, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", - "width": 70, - "x": -1050, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", - "width": 70, - "x": -1050, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", - "width": 70, - "x": -1050, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", - "width": 70, - "x": -1050, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", - "width": 70, - "x": -980, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", - "width": 70, - "x": -980, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", - "width": 70, - "x": -980, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", - "width": 70, - "x": -980, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", - "width": 70, - "x": -1120, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", - "width": 70, - "x": -1120, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", - "width": 70, - "x": -1120, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", - "width": 70, - "x": -2590, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", - "width": 70, - "x": -2520, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", - "width": 70, - "x": -2450, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", - "width": 70, - "x": -2940, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", - "width": 70, - "x": -2870, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", - "width": 70, - "x": -2800, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", - "width": 70, - "x": -2730, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", - "width": 70, - "x": -2660, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", - "width": 70, - "x": -3010, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", - "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": "1b1ba355-0033-479e-8410-4423a7ecd076", - "width": 70, - "x": -1890, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", - "width": 70, - "x": -1820, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", - "width": 70, - "x": -1750, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", - "width": 70, - "x": -2240, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", - "width": 70, - "x": -2170, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", - "width": 70, - "x": -2100, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", - "width": 70, - "x": -2030, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", - "width": 70, - "x": -1960, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", - "width": 70, - "x": -2310, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", - "width": 70, - "x": -2380, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", - "width": 70, - "x": -1190, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", - "width": 70, - "x": -1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", - "width": 70, - "x": -1470, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", - "width": 70, - "x": -1400, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", - "width": 70, - "x": -1330, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", - "width": 70, - "x": -1260, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", - "width": 70, - "x": -1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", - "width": 70, - "x": -1680, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", - "width": 70, - "x": -2590, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", - "width": 70, - "x": -2520, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", - "width": 70, - "x": -2450, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", - "width": 70, - "x": -2940, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", - "width": 70, - "x": -2870, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", - "width": 70, - "x": -2800, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", - "width": 70, - "x": -2730, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", - "width": 70, - "x": -2660, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", - "width": 70, - "x": -3010, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", - "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": "45636fe2-fce7-4718-b188-2f8eff773926", - "width": 70, - "x": -1890, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", - "width": 70, - "x": -1820, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", - "width": 70, - "x": -1750, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", - "width": 70, - "x": -2240, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", - "width": 70, - "x": -2170, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", - "width": 70, - "x": -2100, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", - "width": 70, - "x": -2030, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", - "width": 70, - "x": -1960, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", - "width": 70, - "x": -2310, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", - "width": 70, - "x": -2380, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", - "width": 70, - "x": -1190, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", - "width": 70, - "x": -1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", - "width": 70, - "x": -1470, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", - "width": 70, - "x": -1400, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", - "width": 70, - "x": -1330, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", - "width": 70, - "x": -1260, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", - "width": 70, - "x": -1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", - "width": 70, - "x": -1680, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", - "width": 70, - "x": -3080, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", - "width": 70, - "x": -3080, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", - "width": 70, - "x": -3080, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", - "width": 70, - "x": -3080, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", - "width": 70, - "x": -3080, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", - "width": 70, - "x": -3080, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", - "width": 70, - "x": -3080, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", - "width": 70, - "x": -3080, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", - "width": 70, - "x": -3080, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", - "width": 70, - "x": -3080, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", - "width": 70, - "x": -3080, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", - "width": 70, - "x": -3080, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", - "width": 70, - "x": -3080, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", - "width": 70, - "x": -3080, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", - "width": 70, - "x": -3080, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", - "width": 70, - "x": -3080, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", - "width": 70, - "x": -3080, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", - "width": 70, - "x": -3080, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", - "width": 70, - "x": -3080, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", - "width": 70, - "x": -3080, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", - "width": 70, - "x": -3080, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", - "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": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", - "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": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", - "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": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", - "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": "6cb0e950-9a8c-496d-bd67-774e75c04418", - "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": "6d9dab9c-63ce-4922-9e02-ff6c19188008", - "width": 70, - "x": -3080, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", - "width": 70, - "x": -3080, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", - "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": "62a4a047-24c1-487f-87bd-df3881885551", - "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": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", - "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": "bd831170-7ea4-422e-b57f-c6feaa014ba7", - "width": 70, - "x": -3080, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", - "width": 70, - "x": 1470, - "y": -210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", - "width": 70, - "x": 1470, - "y": -140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", - "width": 70, - "x": 910, - "y": -210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", - "width": 70, - "x": 910, - "y": -140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", - "width": 70, - "x": 1190, - "y": -210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "road", - "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", - "width": 70, - "x": 1190, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire", - "persistentUuid": "28a74c98-359a-4215-ab03-e9e261d13ee6", - "width": 0, - "x": 350, - "y": 1400, - "zOrder": 1239, - "numberProperties": [], - "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", - "width": 70, - "x": 1540, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", - "width": 70, - "x": 1610, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", - "width": 70, - "x": 1540, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", - "width": 70, - "x": 1610, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "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": "gun4", - "persistentUuid": "e3d8ea57-8d05-4c0e-9db6-8b316d24b503", - "width": 0, - "x": 154, - "y": 1289, - "zOrder": 1240, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "0ac23ea7-fd4d-4558-8625-f1846c824a5b", - "width": 0, - "x": -140, - "y": 1330, - "zOrder": 1241, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "crossair", - "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": "GUI", - "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", - "width": 70, - "x": -1820, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", - "width": 70, - "x": -1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", - "width": 70, - "x": -1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", - "width": 70, - "x": -1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", - "width": 70, - "x": -1820, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", - "width": 70, - "x": -1820, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", - "width": 70, - "x": -1820, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", - "width": 70, - "x": -1820, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", - "width": 70, - "x": -1820, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", - "width": 70, - "x": -1820, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", - "width": 70, - "x": -1820, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", - "width": 70, - "x": -1820, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", - "width": 70, - "x": -1820, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", - "width": 70, - "x": -1820, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", - "width": 70, - "x": -1820, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", - "width": 70, - "x": -1820, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", - "width": 70, - "x": -1820, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", - "width": 70, - "x": -1890, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", - "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": "14a6d93c-17cc-4c5f-8681-b463151e8b89", - "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": "32892402-1801-48b8-aeb9-8712ed98ce38", - "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": "31150f68-fa1a-4aad-b3bd-63963073e0b8", - "width": 70, - "x": -1890, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", - "width": 70, - "x": -1890, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", - "width": 70, - "x": -1890, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", - "width": 70, - "x": -1890, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", - "width": 70, - "x": -1890, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", - "width": 70, - "x": -1890, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", - "width": 70, - "x": -1890, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", - "width": 70, - "x": -1890, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", - "width": 70, - "x": -1890, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", - "width": 70, - "x": -1890, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", - "width": 70, - "x": -1890, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", - "width": 70, - "x": -1890, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", - "width": 70, - "x": -1890, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", - "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": "a248f1d0-1ff3-4bef-acba-dec57fc60107", - "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": "0452f3da-94cc-46a1-aa88-a54962bec1c3", - "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": "f1c0d321-6422-45bf-a32c-37156a882fe9", - "width": 70, - "x": -1750, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", - "width": 70, - "x": -1750, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", - "width": 70, - "x": -1750, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", - "width": 70, - "x": -1750, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", - "width": 70, - "x": -1750, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", - "width": 70, - "x": -1750, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", - "width": 70, - "x": -1750, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", - "width": 70, - "x": -1750, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", - "width": 70, - "x": -1750, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", - "width": 70, - "x": -1750, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", - "width": 70, - "x": -1750, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", - "width": 70, - "x": -1750, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", - "width": 70, - "x": -1750, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", - "width": 70, - "x": -1750, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", - "width": 70, - "x": -1890, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", - "width": 70, - "x": -1750, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", - "width": 70, - "x": -1820, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", - "width": 70, - "x": -1750, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", - "width": 70, - "x": -1820, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", - "width": 70, - "x": -1890, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", - "width": 70, - "x": -770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", - "width": 70, - "x": -840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", - "width": 70, - "x": -910, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", - "width": 70, - "x": -560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", - "width": 70, - "x": -630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", - "width": 70, - "x": -700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", - "width": 70, - "x": 140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", - "width": 70, - "x": -420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", - "width": 70, - "x": -490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", - "width": 70, - "x": 630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", - "width": 70, - "x": -280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", - "width": 70, - "x": -350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", - "width": 70, - "x": 560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", - "width": 70, - "x": 700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", - "width": 70, - "x": 210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", - "width": 70, - "x": 350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", - "width": 70, - "x": 420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", - "width": 70, - "x": -70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", - "width": 70, - "x": -140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", - "width": 70, - "x": -210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", - "width": 70, - "x": 0, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", - "width": 70, - "x": 280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", - "width": 70, - "x": 70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun5", - "persistentUuid": "20766923-9466-4ff2-a793-d64a75da31f7", - "width": 0, - "x": 70, - "y": 1610, - "zOrder": 1246, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "4ef41487-1e41-403b-a2f4-f786280a493f", - "width": 0, - "x": -140, - "y": 1470, - "zOrder": 1247, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "mele1", - "persistentUuid": "457e4317-ece4-45d3-bf96-708ab93d5b4d", - "width": 0, - "x": 210, - "y": 1610, - "zOrder": 1248, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "energy", - "persistentUuid": "34696f8a-c031-467a-bffd-889118b6d90f", - "width": 0, - "x": -70, - "y": 1470, - "zOrder": 1249, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "Wheel_info", - "persistentUuid": "539a6f1b-b450-4262-8663-6b83b88a20f9", - "width": 0, - "x": 0, - "y": 560, - "zOrder": 1250, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "name": "roof_tops", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 490, - "layer": "", - "name": "roof_tops", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "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": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", - "width": 70, - "x": 2030, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", - "width": 70, - "x": 2100, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", - "width": 70, - "x": 2170, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", - "width": 70, - "x": 1680, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", - "width": 70, - "x": 1750, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", - "width": 70, - "x": 1820, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", - "width": 70, - "x": 1890, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", - "width": 70, - "x": 1960, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", - "width": 70, - "x": 2730, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", - "width": 70, - "x": 2800, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", - "width": 70, - "x": 2870, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", - "width": 70, - "x": 2380, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", - "width": 70, - "x": 2450, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", - "width": 70, - "x": 2520, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", - "width": 70, - "x": 2590, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", - "width": 70, - "x": 2660, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", - "width": 70, - "x": 2310, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", - "width": 70, - "x": 2240, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", - "width": 70, - "x": 3010, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", - "width": 70, - "x": 2940, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", - "width": 70, - "x": 2030, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", - "width": 70, - "x": 2100, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", - "width": 70, - "x": 2170, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", - "width": 70, - "x": 1680, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", - "width": 70, - "x": 1750, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", - "width": 70, - "x": 1820, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", - "width": 70, - "x": 1890, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", - "width": 70, - "x": 1960, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", - "width": 70, - "x": 2730, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", - "width": 70, - "x": 2800, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", - "width": 70, - "x": 2870, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", - "width": 70, - "x": 2380, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", - "width": 70, - "x": 2450, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", - "width": 70, - "x": 2520, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", - "width": 70, - "x": 2590, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", - "width": 70, - "x": 2660, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", - "width": 70, - "x": 2310, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", - "width": 70, - "x": 2240, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", - "width": 70, - "x": 3010, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", - "width": 70, - "x": 2940, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "name": "road_block", - "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", - "width": 0, - "x": 3010, - "y": -294, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", - "width": 70, - "x": 2100, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", - "width": 70, - "x": 2030, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", - "width": 70, - "x": 1960, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", - "width": 70, - "x": 1890, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", - "width": 70, - "x": 1820, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", - "width": 70, - "x": 1750, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", - "width": 70, - "x": 3010, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", - "width": 70, - "x": 3010, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", - "width": 70, - "x": 3010, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", - "width": 70, - "x": 3010, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", - "width": 70, - "x": 2940, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", - "width": 70, - "x": 2870, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", - "width": 70, - "x": 2800, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", - "width": 70, - "x": 2730, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", - "width": 70, - "x": 2660, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", - "width": 70, - "x": 2590, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", - "width": 70, - "x": 2520, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", - "width": 70, - "x": 2450, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", - "width": 70, - "x": 2380, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", - "width": 70, - "x": 2310, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", - "width": 70, - "x": 2240, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", - "width": 70, - "x": 2170, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", - "width": 70, - "x": 3010, - "y": 280, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", - "width": 70, - "x": 3010, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", - "width": 70, - "x": 3010, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", - "width": 70, - "x": 3010, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", - "width": 70, - "x": 3010, - "y": 560, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", - "width": 70, - "x": 3010, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", - "width": 70, - "x": 3010, - "y": 420, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", - "width": 70, - "x": 3010, - "y": 350, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", - "width": 70, - "x": 2940, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", - "width": 70, - "x": 3010, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", - "width": 70, - "x": 3010, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", - "width": 70, - "x": 3010, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", - "width": 70, - "x": 2450, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", - "width": 70, - "x": 2590, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", - "width": 70, - "x": 2520, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", - "width": 70, - "x": 2660, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", - "width": 70, - "x": 2730, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", - "width": 70, - "x": 2800, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", - "width": 70, - "x": 2870, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", - "width": 70, - "x": 2100, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", - "width": 70, - "x": 2170, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", - "width": 70, - "x": 2240, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", - "width": 70, - "x": 2310, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", - "width": 70, - "x": 2380, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", - "width": 70, - "x": 2030, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", - "width": 70, - "x": 1680, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", - "width": 70, - "x": 1890, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", - "width": 70, - "x": 1960, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", - "width": 70, - "x": 1750, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", - "width": 70, - "x": 1820, - "y": 770, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", - "width": 70, - "x": 1680, - "y": 140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", - "width": 70, - "x": 1680, - "y": 210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", - "width": 70, - "x": 1680, - "y": 700, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", - "width": 70, - "x": 1680, - "y": 630, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", - "width": 70, - "x": 1680, - "y": 490, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", - "width": 70, - "x": 1680, - "y": -140, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", - "width": 70, - "x": 1680, - "y": -210, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", - "width": 70, - "x": 1680, - "y": 0, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1680, - "y": -70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", - "width": 70, - "x": 1680, - "y": 70, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2240, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", - "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", - "width": 70, - "x": 2030, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", - "width": 70, - "x": 1890, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1960, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1750, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1820, - "y": 1680, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2870, - "y": 1120, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", - "width": 70, - "x": 2870, - "y": 980, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", - "width": 70, - "x": 2870, - "y": 910, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", - "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": 1820, - "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": 1820, - "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": 1820, - "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": 180, - "customSize": true, - "height": 350, - "layer": "", - "name": "roof_tops", - "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", - "width": 420, - "x": 1120, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 770, - "layer": "", - "name": "roof_tops", - "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", - "width": 770, - "x": 140, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "name": "roof_tops", - "persistentUuid": "db30fcc8-72c4-416e-a867-1bb4e3623c66", - "width": 420, - "x": 1120, - "y": 2660, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "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": false, - "height": 0, - "layer": "", - "name": "green_leaves_particle", - "persistentUuid": "cba4acd9-0250-47fe-8582-da0034598875", - "width": 0, - "x": 271, - "y": 1480, - "zOrder": 1253, - "numberProperties": [], - "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, - "height": 4970, - "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, - "height": 4970, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", - "width": 70, - "x": 630, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", - "width": 70, - "x": 420, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", - "width": 70, - "x": 490, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", - "width": 70, - "x": 350, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", - "width": 70, - "x": 210, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", - "width": 70, - "x": 280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", - "width": 70, - "x": 70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", - "width": 70, - "x": 140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", - "width": 70, - "x": 0, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", - "width": 70, - "x": -140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", - "width": 70, - "x": -70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", - "width": 70, - "x": -280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "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, - "layer": "", - "name": "sand", - "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", - "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": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", - "width": 70, - "x": 1820, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", - "width": 70, - "x": 1890, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", - "width": 70, - "x": 1750, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", - "width": 70, - "x": 1960, - "y": 3290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", - "width": 70, - "x": 1960, - "y": 3220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "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 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", - "width": 70, - "x": 2870, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", - "width": 70, - "x": 2660, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", - "width": 70, - "x": 2730, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", - "width": 70, - "x": 2590, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", - "width": 70, - "x": 2450, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", - "width": 70, - "x": 2520, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", - "width": 70, - "x": 2310, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", - "width": 70, - "x": 2380, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", - "width": 70, - "x": 2240, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", - "width": 70, - "x": 2100, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", - "width": 70, - "x": 2170, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", - "width": 70, - "x": 3010, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", - "width": 70, - "x": 3080, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", - "width": 70, - "x": 2940, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", - "width": 70, - "x": 3150, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", - "width": 70, - "x": -2590, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", - "width": 70, - "x": -2590, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", - "width": 70, - "x": -2590, - "y": 3570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", - "width": 70, - "x": -2590, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", - "width": 70, - "x": -2800, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", - "width": 70, - "x": -2730, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", - "width": 70, - "x": -2660, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", - "width": 70, - "x": -3640, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "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, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", - "width": 70, - "x": -3780, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", - "width": 70, - "x": -3710, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", - "width": 280, - "x": -2800, - "y": 3640, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Water_cover", - "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", - "width": 70, - "x": -2590, - "y": 3360, - "zOrder": 0, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", - "width": 210, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "25fb9619-1f9c-4f5b-89c7-51ae50950ca4", - "width": 4690, - "x": -1330, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "Water_cover", - "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 1, - "numberProperties": [], - "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, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", - "width": 210, - "x": -3780, - "y": 3640, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Water_cover", - "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", - "width": 70, - "x": -350, - "y": 3430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", - "width": 70, - "x": 420, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", - "width": 70, - "x": 490, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "sand", - "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", - "width": 70, - "x": 560, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "weapon_icons", - "persistentUuid": "e1f10fa7-78d4-4f19-91f7-1e2a6439f087", - "width": 0, - "x": 1170, - "y": 67, - "zOrder": 12643489, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "Health", - "persistentUuid": "51c740a3-2016-4425-8029-6911b124bb8b", - "width": 0, - "x": 0, - "y": 70, - "zOrder": 12643517, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "AmmoText", - "persistentUuid": "c4aa480c-5f33-44be-bff1-b7581f5de51f", - "width": 0, - "x": 0, - "y": 490, - "zOrder": 12643519, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "weaponholding", - "persistentUuid": "13d249b9-06b6-4f5a-b593-79789f2fe2f6", - "width": 0, - "x": 0, - "y": 420, - "zOrder": 12643549, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "mele2", - "persistentUuid": "09afe30b-b74c-417f-a4d0-68548d755fec", - "width": 0, - "x": 70, - "y": 1330, - "zOrder": 12643551, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "You_lose", - "persistentUuid": "f744036a-8f49-422b-a95e-88395ebaf4df", - "width": 0, - "x": 375, - "y": 280, - "zOrder": 12643552, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "door", - "persistentUuid": "99f5ac72-0a60-4827-987e-71768de59cb4", - "width": 140, - "x": -289, - "y": 780, - "zOrder": 12643562, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "2" - }, - { - "name": "Direction", - "type": "string", - "value": "-90" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 193, - "layer": "", - "name": "door", - "persistentUuid": "a78462a8-150c-4ca9-9f1d-e2f13572f6d0", - "width": 121, - "x": -2373, - "y": 1886, - "zOrder": 12643563, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "3" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 168, - "layer": "", - "name": "door", - "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", - "width": 205, - "x": -2448, - "y": 893, - "zOrder": 12643564, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "5" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 127, - "layer": "", - "name": "door", - "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", - "width": 231, - "x": -1262, - "y": 1966, - "zOrder": 12643565, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 142, - "layer": "", - "name": "door", - "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", - "width": 139, - "x": -1176, - "y": 1325, - "zOrder": 12643566, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "4" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 194, - "layer": "", - "name": "door", - "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", - "width": 124, - "x": 1938, - "y": 1129, - "zOrder": 12643567, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Room", - "type": "string", - "value": "6" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 1289, - "layer": "Fade", - "name": "Transitions", - "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", - "width": 1994, - "x": 0, - "y": 0, - "zOrder": 12643568, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "name": "ground_1", - "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", - "width": 1680, - "x": -910, - "y": -214, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "5c3e7176-be09-41ac-8269-d3ace2f2371d", - "width": 70, - "x": 0, - "y": 3010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "237d1536-4fd1-4a5c-8a73-1cd4ed60add0", - "width": 70, - "x": 0, - "y": 2030, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "Fences", - "persistentUuid": "c605b6ec-1edf-495c-8d29-d5c714c3a0ea", - "width": 70, - "x": 1680, - "y": 2800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "grass", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "grass_tiled", - "texture": "assets\\foliage\\grass\\tile_01.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Placeholder", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "deceleration": 800, - "acceleration": 400, - "maxSpeed": 200, - "rotateObject": false, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 500, - "ignoreDefaultControls": true - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\placeholder.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Niko", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_stand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Single_pistol.png", - "points": [ - { - "name": "shoot", - "x": 58, - "y": 42 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Machine_gun_hold.png", - "points": [ - { - "name": "shoot", - "x": 56, - "y": 27 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_flametrhower.png", - "points": [ - { - "name": "f_t_collision", - "x": 47.5, - "y": 31 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_sniper.png", - "points": [ - { - "name": "shoot", - "x": 61, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 22 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun5-loaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 100, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 25, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_tazer.png", - "points": [ - { - "name": "hitbox", - "x": 45, - "y": 33 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 24, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim1", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim2", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "gun5 unloaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 101, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 22, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a1.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a2.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a3.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a4.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a5.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "roof_tops", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\rooftop\\roof_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 4.505209922790527, - "y": 1.6666699647903442 - }, - { - "x": 189.5050048828125, - "y": 0 - }, - { - "x": 184.5050048828125, - "y": 378.3330078125 - }, - { - "x": -0.49479201436042786, - "y": 375 - } - ], - [ - { - "x": 194.5050048828125, - "y": 100 - }, - { - "x": 464.5050048828125, - "y": 108.33300018310547 - }, - { - "x": 467.8389892578125, - "y": 271.6669921875 - }, - { - "x": 187.83900451660156, - "y": 276.6669921875 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14_horizontal.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_16.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_21.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_22.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_23.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_24.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_25.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_06.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_05.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\side_walk\\sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\dirt.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_20.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "door", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Room", - "type": "string", - "value": "-1" - }, - { - "name": "Direction", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flame_thrower_fire_collision", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [ - { - "name": "CenterBurning", - "x": 50, - "y": 16 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "crossair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair010", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair_3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair060", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair008", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun4", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "tazer_hitbox", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun5", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": -15, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": -15, - "y": 4.852940082550049 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Slash1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "energy", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Fences", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (21).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26.121299743652344, - "y": 26.470600128173828 - }, - { - "x": 63.474300384521484, - "y": 26.470600128173828 - }, - { - "x": 63.76839828491211, - "y": 37.058799743652344 - }, - { - "x": 26.7096004486084, - "y": 37.647098541259766 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (2).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (27).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 26, - "y": 26 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (1).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (9).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (5).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 40 - }, - { - "x": 37, - "y": 40 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (23).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (22).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_block", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceRed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceYellow.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bullet", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", - "points": [ - { - "name": "effects_bullet", - "x": 31.95669937133789, - "y": 3.863640069961548 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "AmmoText", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "weaponholding", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "weapon: [weapon]", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "foliage", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeLarge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeSmall.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_183.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_186.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "house_enter", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "Water_cover", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "Water", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sports_equipments_movable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "sports_equipments", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (77).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 30, - "y": 14 - }, - { - "x": 64, - "y": 25 - }, - { - "x": 64, - "y": 40 - }, - { - "x": 31, - "y": 49 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (65).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "ground_1", - "texture": "assets\\sport\\ground\\ground_beige.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ground_elements", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sport\\ground_elements\\element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "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": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "color": "112;112;112" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Phone", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 1, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_off.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.0625, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_app.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "deco", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\deco\\deco_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "trash_movable", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\oil.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBeige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBrown.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "flow": 41, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bridge", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\bridge\\bridge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_1", - "texture": "assets\\Road\\road\\tile_35-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "road_2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "concrete_1", - "texture": "assets\\Road\\concrete\\concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "hidden_separate", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_3", - "texture": "assets\\Road\\road\\tile_37-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "content": { - "bold": true, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 32, - "name": "road_4", - "texture": "assets\\Road\\road\\tile_63-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "beach_sand_1", - "texture": "assets\\Road\\map_edge\\tile_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "beach_sand_2", - "texture": "assets\\Road\\map_edge\\tile_19.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_1", - "texture": "assets\\Road\\side_walk\\sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 32, - "name": "sand_2", - "texture": "assets\\Road\\map_edge\\tile_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Pointer", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.0714, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "weapon_icons", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "NewObject", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mouse_point", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "additive": false, - "assetStoreId": "", - "destroyWhenNoParticles": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "flow": -1, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Health", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "100", - "font": "", - "textAlignment": "", - "characterSize": 64, - "color": { - "b": 0, - "g": 0, - "r": 255 - }, - "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": "100", - "font": "", - "textAlignment": "", - "characterSize": 64, - "color": "255;0;0" - } - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "You_lose", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 2, - "leftEdgeAnchor": 1, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1 - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "WASTED", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "", - "characterSize": 95, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "WASTED", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "textAlignment": "", - "characterSize": 95, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Thumb", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\thumb_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15.5, - "y": 129.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 15.5, - "y": 129.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "grass" - }, - { - "objectName": "grass_tiled" - }, - { - "objectName": "Placeholder" - }, - { - "objectName": "Niko" - }, - { - "objectName": "road" - }, - { - "objectName": "roof_tops" - }, - { - "objectName": "sand" - }, - { - "objectName": "door" - }, - { - "objectName": "flame_thrower_fire_collision" - }, - { - "objectName": "crossair" - }, - { - "objectName": "gun1" - }, - { - "objectName": "gun3" - }, - { - "objectName": "gun4" - }, - { - "objectName": "gun2" - }, - { - "objectName": "tazer_hitbox" - }, - { - "objectName": "gun5" - }, - { - "objectName": "mele1" - }, - { - "objectName": "mele2" - }, - { - "objectName": "Slash1" - }, - { - "objectName": "ammo" - }, - { - "objectName": "energy" - }, - { - "objectName": "Fences" - }, - { - "objectName": "road_block" - }, - { - "objectName": "bullet" - }, - { - "objectName": "AmmoText" - }, - { - "objectName": "weaponholding" - }, - { - "objectName": "foliage" - }, - { - "objectName": "house_enter" - }, - { - "objectName": "Water_cover" - }, - { - "objectName": "Water" - }, - { - "objectName": "sports_equipments_movable" - }, - { - "objectName": "sports_equipments" - }, - { - "objectName": "ground_1" - }, - { - "objectName": "ground_elements" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "reloading" - }, - { - "objectName": "Phone" - }, - { - "objectName": "Wheel_info" - }, - { - "objectName": "deco" - }, - { - "objectName": "trash_movable" - }, - { - "objectName": "brown_leaves_particle" - }, - { - "objectName": "green_leaves_particle" - }, - { - "objectName": "bridge" - }, - { - "objectName": "road_1" - }, - { - "objectName": "road_2" - }, - { - "objectName": "concrete_1" - }, - { - "objectName": "hidden_separate" - }, - { - "objectName": "road_3" - }, - { - "objectName": "phone_wifi" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "road_4" - }, - { - "objectName": "beach_sand_1" - }, - { - "objectName": "beach_sand_2" - }, - { - "objectName": "sand_1" - }, - { - "objectName": "sand_2" - }, - { - "objectName": "Pointer" - }, - { - "objectName": "weapon_icons" - }, - { - "objectName": "NewObject" - }, - { - "objectName": "mouse_point" - }, - { - "objectName": "bullet_destroy_rocket" - }, - { - "objectName": "bullet_destroy_machine" - }, - { - "objectName": "bullet_destroy_sniper" - }, - { - "objectName": "bullet_destroy_pistol" - }, - { - "objectName": "shooting_effect_rocket" - }, - { - "objectName": "shooting_effect_sniper" - }, - { - "objectName": "shooting_effect" - }, - { - "objectName": "Health" - }, - { - "objectName": "You_lose" - }, - { - "objectName": "Thumb" - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Note - Important Information", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Sea" - }, - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - }, - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Sports" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Rooftops", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "BuiltinCommonInstructions::Or" - }, - "parameters": [], - "subInstructions": [ - { - "type": { - "value": "SceneJustResumed" - }, - "parameters": [ - "" - ] - }, - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "niko_movement", - "=", - "1" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "ZOrders", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "-50" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand", - "=", - "-10" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Water", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_2", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_1", - "=", - "-11" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "Water_cover", - "=", - "-100" - ] - }, - { - "type": { - "value": "ChangePlan" - }, - "parameters": [ - "road", - "=", - "-10" - ] - } - ] - } - ], - "parameters": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - }, - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "BlackAndWhite", - "name": "BlackAndWhite", - "doubleParameters": { - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "ZoomBlur", - "name": "ZoomBlur", - "doubleParameters": { - "centerX": 0.5, - "centerY": 0.5, - "innerRadius": 0, - "padding": 0, - "strength": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "LightNight", - "name": "LightNight", - "doubleParameters": { - "opacity": 0.5 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "OldFilm", - "name": "Effect2", - "doubleParameters": { - "animationFrequency": 0, - "noise": 0, - "noiseSize": 0, - "scratch": 0, - "scratchDensity": 0.3, - "scratchWidth": 1, - "sepia": 0, - "vignetting": 0.3, - "vignettingAlpha": 0.5, - "vignettingBlur": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "GUI", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": false, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InOnScreen", - "type": "IsOnScreen::InOnScreen" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/menu.json b/src/layouts/menu.json deleted file mode 100644 index 21ef286ed..000000000 --- a/src/layouts/menu.json +++ /dev/null @@ -1,1012 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Menu", - "name": "Menu", - "oglFOV": 90, - "oglZFar": 500, - "oglZNear": 1, - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridB": 255, - "gridG": 180, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridR": 158, - "gridWidth": 32, - "snap": true, - "windowMask": false, - "zoomFactor": 0.472 - }, - "objectsGroups": [], - "variables": [], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "playbutton", - "persistentUuid": "8ae935b1-868f-4e17-8bb2-a38b1521ae2b", - "width": 0, - "x": 604, - "y": 182, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "play", - "persistentUuid": "fe7b3b9c-6cad-4a78-9dbf-ac08cd379592", - "width": 0, - "x": 668, - "y": 189, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "settingsbut", - "persistentUuid": "ea99a2ff-4556-4d45-a655-91286d1a83a9", - "width": 0, - "x": 604, - "y": 267, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "settings", - "persistentUuid": "6c693cc4-42d4-4cc2-a1d5-61f06a8acb32", - "width": 0, - "x": 641, - "y": 274, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "howtoplay", - "persistentUuid": "2f7f2dd4-914b-4333-9556-78ecb2cb7d58", - "width": 0, - "x": 604, - "y": 362, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "howtoplaytext", - "persistentUuid": "6b199fec-0bde-4383-8dd9-737f737bbf72", - "width": 0, - "x": 614, - "y": 371, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "crossair", - "persistentUuid": "d135f761-905c-4fbb-a05a-04c0fb3646a1", - "width": 0, - "x": 507, - "y": 298, - "zOrder": 7, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "name": "howtoplay", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "unpressed", - "ANIMATION_OVER": "pressed", - "ANIMATION_DOWN": "pressed", - "ANIMATION_DISABLED": "pressed", - "ENABLED": true - } - ], - "animations": [ - { - "name": "unpressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "settingsbut", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "unpressed", - "ANIMATION_OVER": "pressed", - "ANIMATION_DOWN": "pressed", - "ANIMATION_DISABLED": "pressed", - "ENABLED": true - } - ], - "animations": [ - { - "name": "unpressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "playbutton", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "unpressed", - "ANIMATION_OVER": "pressed", - "ANIMATION_DOWN": "pressed", - "ANIMATION_DISABLED": "pressed", - "ENABLED": true - } - ], - "animations": [ - { - "name": "unpressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "pressed", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "bold": true, - "italic": false, - "name": "howtoplaytext", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "How To Play", - "font": "", - "characterSize": 30, - "color": { - "b": 255, - "g": 255, - "r": 255 - } - }, - { - "bold": true, - "italic": false, - "name": "settings", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "Settings", - "font": "", - "characterSize": 30, - "color": { - "b": 255, - "g": 255, - "r": 255 - } - }, - { - "bold": true, - "italic": false, - "name": "play", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "Play", - "font": "", - "characterSize": 30, - "color": { - "b": 255, - "g": 255, - "r": 255 - } - } - ], - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "How to play", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "howtoplay", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "howtoplay", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "howtoplaytext", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "howtoplay", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "howtoplay", - "\"unpressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "howtoplaytext", - "\"255;255;255\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isEnabled" - }, - "parameters": [ - "howtoplay", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "howtoplay", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "howtoplaytext", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "howtoplay", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "DebugMessages::popup" - }, - "parameters": [ - "", - "\"GAME CONTROLS\nw = move up\na = move left\ns = move down\nd = move right\n\npageup = phone out\npagedown = phone in \nreturn = unlock phone & enter houses\n\ne = pick gun\nq = drop gun\n\nv = add to weapon wheel\nb = hold weapon on wheel\n\np = show controls\n\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "Play", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "playbutton", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "playbutton", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "play", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "playbutton", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "playbutton", - "\"unpressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "play", - "\"255;255;255\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isEnabled" - }, - "parameters": [ - "playbutton", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "playbutton", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "play", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "playbutton", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "Scene" - }, - "parameters": [ - "", - "\"Overworld\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "Settings", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "settingsbut", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "settingsbut", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "settings", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isHover" - }, - "parameters": [ - "settingsbut", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "settingsbut", - "\"unpressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "settings", - "\"255;255;255\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Button::InteractiveButton::isEnabled" - }, - "parameters": [ - "settingsbut", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SetAnimationName" - }, - "parameters": [ - "settingsbut", - "\"pressed\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "TextObject::ChangeColor" - }, - "parameters": [ - "settings", - "\"71;71;71\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "settingsbut", - "InteractiveButton", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "Scene" - }, - "parameters": [ - "", - "\"Settings\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Global" - } - ], - "layers": [ - { - "name": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton" - } - ] -} \ No newline at end of file diff --git a/src/layouts/overworld.json b/src/layouts/overworld.json deleted file mode 100644 index 9abcfe520..000000000 --- a/src/layouts/overworld.json +++ /dev/null @@ -1,94270 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Overworld", - "name": "Overworld", - "oglFOV": 90, - "oglZFar": 500, - "oglZNear": 1, - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridB": 255, - "gridG": 180, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridR": 158, - "gridType": "rectangular", - "gridWidth": 70, - "snap": false, - "windowMask": false, - "zoomFactor": 0.36850000000000066 - }, - "objectsGroups": [ - { - "name": "bullet_obstacles", - "objects": [ - { - "name": "roof_tops" - }, - { - "name": "Fences" - }, - { - "name": "road_block" - }, - { - "name": "foliage" - } - ] - }, - { - "name": "doors", - "objects": [ - { - "name": "door2" - }, - { - "name": "door1" - }, - { - "name": "door3" - }, - { - "name": "door4" - }, - { - "name": "door5" - } - ] - }, - { - "name": "North_doors", - "objects": [ - { - "name": "door2" - }, - { - "name": "door1" - }, - { - "name": "door3" - } - ] - }, - { - "name": "West_doors", - "objects": [ - { - "name": "door4" - } - ] - }, - { - "name": "South_doors", - "objects": [ - { - "name": "door5" - } - ] - }, - { - "name": "East_doors", - "objects": [ - { - "name": "door6" - } - ] - }, - { - "name": "Phone_status_bar", - "objects": [ - { - "name": "phone_battery" - }, - { - "name": "phone_wifi" - }, - { - "name": "phone_time" - } - ] - } - ], - "variables": [ - { - "name": "fade", - "type": "string", - "value": "" - }, - { - "name": "walk_in_west", - "type": "string", - "value": "" - }, - { - "name": "walk_in_north", - "type": "string", - "value": "" - }, - { - "name": "separate", - "type": "string", - "value": "" - }, - { - "name": "walk_in_south", - "type": "string", - "value": "" - }, - { - "name": "walk_in_east", - "type": "string", - "value": "" - }, - { - "name": "niko_movement", - "type": "string", - "value": "" - }, - { - "name": "Camera_zoom", - "type": "string", - "value": "" - }, - { - "name": "basketball", - "type": "string", - "value": "" - }, - { - "name": "phone", - "type": "string", - "value": "" - }, - { - "name": "using_phone", - "type": "string", - "value": "" - }, - { - "name": "phone_time", - "type": "string", - "value": "" - }, - { - "name": "godmode", - "type": "boolean", - "value": false - }, - { - "name": "Died_effects_tween", - "type": "string", - "value": "" - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", - "width": 2100, - "x": -3220, - "y": -210, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", - "width": 70, - "x": 910, - "y": -350, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", - "width": 70, - "x": 980, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", - "width": 70, - "x": 1470, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", - "width": 70, - "x": 1330, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", - "width": 70, - "x": 1260, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", - "width": 70, - "x": 1190, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", - "width": 70, - "x": 1120, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", - "width": 70, - "x": 1050, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", - "width": 70, - "x": 1190, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", - "width": 70, - "x": 1400, - "y": -350, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", - "width": 70, - "x": 1190, - "y": 140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", - "width": 70, - "x": 1470, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", - "width": 70, - "x": 1470, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", - "width": 70, - "x": 1470, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", - "width": 70, - "x": 1470, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", - "width": 70, - "x": 1470, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", - "width": 70, - "x": 1470, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", - "width": 70, - "x": 1470, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", - "width": 70, - "x": 1470, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", - "width": 70, - "x": 910, - "y": -280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", - "width": 70, - "x": 910, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", - "width": 70, - "x": 910, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", - "width": 70, - "x": 910, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", - "width": 70, - "x": 910, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", - "width": 210, - "x": 1260, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", - "width": 210, - "x": 980, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", - "width": 70, - "x": 1190, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", - "width": 70, - "x": 1190, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", - "width": 70, - "x": 1190, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", - "width": 70, - "x": 1190, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", - "width": 70, - "x": 1190, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", - "width": 70, - "x": 1190, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", - "width": 70, - "x": 1190, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", - "width": 70, - "x": 1190, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", - "width": 70, - "x": 1190, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", - "width": 70, - "x": 1190, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", - "width": 70, - "x": 1190, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", - "width": 70, - "x": 1190, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", - "width": 70, - "x": 1190, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", - "width": 70, - "x": 1190, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", - "width": 70, - "x": 1190, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", - "width": 70, - "x": 1190, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", - "width": 70, - "x": 1470, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", - "width": 70, - "x": 1470, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", - "width": 70, - "x": 1470, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", - "width": 70, - "x": 1470, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", - "width": 70, - "x": 1470, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", - "width": 70, - "x": 1470, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", - "width": 70, - "x": 1470, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", - "width": 70, - "x": 1470, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", - "width": 70, - "x": 1470, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", - "width": 70, - "x": 1470, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", - "width": 70, - "x": 1470, - "y": 1120, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", - "width": 70, - "x": 1470, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", - "width": 70, - "x": 910, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", - "width": 70, - "x": 910, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", - "width": 70, - "x": 910, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", - "width": 70, - "x": 910, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", - "width": 70, - "x": 910, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", - "width": 70, - "x": 910, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", - "width": 70, - "x": 910, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", - "width": 70, - "x": 910, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", - "width": 70, - "x": 910, - "y": 1190, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", - "width": 70, - "x": 910, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", - "width": 70, - "x": 910, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", - "width": 70, - "x": 910, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", - "width": 70, - "x": 420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", - "width": 70, - "x": 770, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", - "width": 70, - "x": 700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", - "width": 70, - "x": 630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", - "width": 70, - "x": 490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", - "width": 70, - "x": 1190, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", - "width": 70, - "x": 1190, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", - "width": 70, - "x": 1190, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": true, - "name": "road", - "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", - "width": 1260, - "x": -70, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", - "width": 70, - "x": 420, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", - "width": 70, - "x": 490, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", - "width": 70, - "x": 560, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", - "width": 70, - "x": 630, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", - "width": 70, - "x": 700, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", - "width": 70, - "x": 770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", - "width": 70, - "x": 840, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", - "width": 70, - "x": 980, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", - "width": 1610, - "x": -420, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", - "width": 280, - "x": 1190, - "y": 1610, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", - "width": 70, - "x": 1470, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", - "width": 70, - "x": 1470, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", - "width": 70, - "x": 1470, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", - "width": 70, - "x": 1470, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", - "width": 70, - "x": 1470, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", - "width": 70, - "x": 1470, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", - "width": 70, - "x": 1470, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", - "width": 70, - "x": 1330, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", - "width": 70, - "x": 1260, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", - "width": 70, - "x": 1190, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", - "width": 70, - "x": 1120, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", - "width": 70, - "x": 1400, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", - "width": 70, - "x": 700, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", - "width": 70, - "x": 910, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", - "width": 70, - "x": 1470, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", - "width": 70, - "x": 420, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", - "width": 70, - "x": 490, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", - "width": 70, - "x": 1470, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", - "width": 1820, - "x": 1540, - "y": -420, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", - "width": 3360, - "x": -140, - "y": 1890, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", - "width": 70, - "x": -70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", - "width": 70, - "x": 280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", - "width": 70, - "x": 210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", - "width": 70, - "x": 140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", - "width": 70, - "x": 70, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", - "width": 70, - "x": 0, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", - "width": 70, - "x": 350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", - "width": 70, - "x": -70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", - "width": 70, - "x": 0, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", - "width": 70, - "x": 70, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", - "width": 70, - "x": 140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", - "width": 70, - "x": 280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", - "width": 70, - "x": 350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", - "width": 70, - "x": 350, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", - "width": 70, - "x": 280, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", - "width": 70, - "x": 210, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", - "width": 70, - "x": 140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", - "width": 70, - "x": 70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", - "width": 70, - "x": -70, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", - "width": 70, - "x": 0, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", - "width": 630, - "x": -700, - "y": 1330, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", - "width": 70, - "x": -770, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", - "width": 70, - "x": -770, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", - "width": 70, - "x": -770, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", - "width": 70, - "x": -770, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", - "width": 70, - "x": -770, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", - "width": 70, - "x": -770, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", - "width": 70, - "x": -630, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", - "width": 70, - "x": -280, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", - "width": 70, - "x": -350, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", - "width": 70, - "x": -420, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", - "width": 70, - "x": -490, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", - "width": 70, - "x": -560, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", - "width": 70, - "x": -210, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", - "width": 70, - "x": -700, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", - "width": 70, - "x": -770, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", - "width": 70, - "x": -770, - "y": 1820, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", - "width": 70, - "x": -770, - "y": 1260, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", - "width": 70, - "x": -140, - "y": 1260, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", - "width": 70, - "x": -350, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", - "width": 70, - "x": -280, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", - "width": 70, - "x": -210, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", - "width": 70, - "x": -140, - "y": 1540, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", - "width": 70, - "x": -490, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", - "width": 210, - "x": -700, - "y": 1540, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", - "width": 210, - "x": -420, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", - "width": 70, - "x": -210, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", - "width": 70, - "x": -210, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", - "width": 70, - "x": -210, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", - "width": 70, - "x": -210, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", - "width": 70, - "x": -210, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", - "width": 70, - "x": -140, - "y": 1820, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", - "width": 70, - "x": -210, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", - "width": 70, - "x": -210, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", - "width": 70, - "x": -210, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", - "width": 70, - "x": -210, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", - "width": 70, - "x": -770, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", - "width": 70, - "x": -770, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", - "width": 70, - "x": -770, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", - "width": 70, - "x": -770, - "y": 2100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", - "width": 70, - "x": -770, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", - "width": 70, - "x": -770, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", - "width": 70, - "x": -770, - "y": 2310, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", - "width": 70, - "x": -490, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", - "width": 70, - "x": -490, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", - "width": 70, - "x": -420, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", - "width": 70, - "x": -490, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", - "width": 70, - "x": -490, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", - "width": 70, - "x": -490, - "y": 2100, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", - "width": 70, - "x": -490, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", - "width": 70, - "x": -490, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", - "width": 70, - "x": -490, - "y": 1890, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", - "width": 70, - "x": -490, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", - "width": 70, - "x": -490, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", - "width": 70, - "x": -490, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", - "width": 70, - "x": -770, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", - "width": 70, - "x": -490, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", - "width": 70, - "x": -490, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", - "width": 70, - "x": -490, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", - "width": 70, - "x": -1820, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", - "width": 70, - "x": -700, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", - "width": 70, - "x": -630, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", - "width": 280, - "x": -490, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", - "width": 70, - "x": -210, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", - "width": 70, - "x": -210, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", - "width": 70, - "x": -210, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", - "width": 70, - "x": -210, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", - "width": 70, - "x": -210, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", - "width": 70, - "x": -210, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", - "width": 70, - "x": -210, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", - "width": 70, - "x": -700, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", - "width": 70, - "x": -350, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", - "width": 70, - "x": -420, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", - "width": 70, - "x": -490, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", - "width": 70, - "x": -560, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", - "width": 70, - "x": -630, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", - "width": 70, - "x": -280, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", - "width": 70, - "x": -1820, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", - "width": 70, - "x": -210, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", - "width": 70, - "x": -490, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", - "width": 70, - "x": -490, - "y": 2660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", - "width": 70, - "x": -560, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", - "width": 70, - "x": -210, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", - "width": 70, - "x": -490, - "y": 2380, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", - "width": 210, - "x": -420, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", - "width": 210, - "x": -700, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", - "width": 210, - "x": -700, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", - "width": 70, - "x": -2310, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", - "width": 70, - "x": -1960, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", - "width": 70, - "x": -2030, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", - "width": 70, - "x": -2100, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", - "width": 70, - "x": -2170, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", - "width": 70, - "x": -2240, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", - "width": 70, - "x": -1890, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", - "width": 70, - "x": -2310, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", - "width": 70, - "x": -2240, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", - "width": 70, - "x": -2170, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", - "width": 70, - "x": -2100, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", - "width": 70, - "x": -2030, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", - "width": 70, - "x": -1960, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", - "width": 70, - "x": -1890, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", - "width": 70, - "x": -1890, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", - "width": 70, - "x": -1960, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", - "width": 70, - "x": -2030, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", - "width": 70, - "x": -2100, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", - "width": 70, - "x": -2170, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", - "width": 70, - "x": -2310, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", - "width": 70, - "x": -2240, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", - "width": 70, - "x": -2450, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", - "width": 70, - "x": -2520, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", - "width": 70, - "x": -2590, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", - "width": 70, - "x": -2660, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", - "width": 70, - "x": -2730, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", - "width": 70, - "x": -2380, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", - "width": 70, - "x": -2800, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", - "width": 70, - "x": -2730, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", - "width": 70, - "x": -2660, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", - "width": 70, - "x": -2590, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", - "width": 70, - "x": -2520, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", - "width": 70, - "x": -2450, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", - "width": 70, - "x": -2380, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", - "width": 70, - "x": -2380, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", - "width": 70, - "x": -2450, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", - "width": 70, - "x": -2520, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", - "width": 70, - "x": -2590, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", - "width": 70, - "x": -2660, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", - "width": 70, - "x": -2800, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", - "width": 70, - "x": -2730, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", - "width": 2730, - "x": -3430, - "y": 2520, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", - "width": 70, - "x": -3500, - "y": 2520, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", - "width": 70, - "x": -3500, - "y": 2590, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", - "width": 70, - "x": -3500, - "y": 2660, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", - "width": 70, - "x": -3500, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", - "width": 70, - "x": -3500, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", - "width": 70, - "x": -3500, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", - "width": 70, - "x": -3360, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", - "width": 70, - "x": -3010, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", - "width": 70, - "x": -3080, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", - "width": 70, - "x": -3150, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", - "width": 70, - "x": -3220, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", - "width": 70, - "x": -3290, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", - "width": 70, - "x": -3430, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", - "width": 70, - "x": -3500, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", - "width": 70, - "x": -3500, - "y": 3010, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", - "width": 70, - "x": -3500, - "y": 2450, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", - "width": 70, - "x": -3080, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", - "width": 70, - "x": -3010, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", - "width": 70, - "x": -2940, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", - "width": 70, - "x": -2870, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", - "width": 70, - "x": -3220, - "y": 2730, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", - "width": 70, - "x": -2870, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", - "width": 70, - "x": -2940, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", - "width": 70, - "x": -3220, - "y": 2870, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", - "width": 70, - "x": -3220, - "y": 2940, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", - "width": 70, - "x": -3150, - "y": 2730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", - "width": 70, - "x": -3220, - "y": 2800, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", - "width": 70, - "x": -3220, - "y": 3010, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", - "width": 70, - "x": -770, - "y": 2380, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", - "width": 70, - "x": -1260, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", - "width": 70, - "x": -910, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", - "width": 70, - "x": -980, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", - "width": 70, - "x": -1050, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", - "width": 70, - "x": -1120, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", - "width": 70, - "x": -1190, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", - "width": 70, - "x": -840, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", - "width": 70, - "x": -1400, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", - "width": 70, - "x": -1470, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", - "width": 70, - "x": -1540, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", - "width": 70, - "x": -1610, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", - "width": 70, - "x": -1680, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", - "width": 70, - "x": -1330, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", - "width": 70, - "x": -1820, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", - "width": 70, - "x": -1750, - "y": 2450, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", - "width": 70, - "x": -770, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", - "width": 70, - "x": -840, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", - "width": 70, - "x": -910, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", - "width": 70, - "x": -980, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", - "width": 70, - "x": -1050, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", - "width": 70, - "x": -1190, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", - "width": 70, - "x": -1120, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", - "width": 70, - "x": -1260, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", - "width": 70, - "x": -1330, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", - "width": 70, - "x": -1400, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", - "width": 70, - "x": -1470, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", - "width": 70, - "x": -1540, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", - "width": 70, - "x": -1680, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", - "width": 70, - "x": -1610, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", - "width": 70, - "x": -1750, - "y": 3010, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", - "width": 70, - "x": -840, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", - "width": 70, - "x": -1330, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", - "width": 70, - "x": -1260, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", - "width": 70, - "x": -1190, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", - "width": 70, - "x": -1120, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", - "width": 70, - "x": -1050, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", - "width": 70, - "x": -980, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", - "width": 70, - "x": -910, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", - "width": 70, - "x": -1750, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", - "width": 70, - "x": -1680, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", - "width": 70, - "x": -1610, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", - "width": 70, - "x": -1540, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", - "width": 70, - "x": -1470, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", - "width": 70, - "x": -1400, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", - "width": 70, - "x": -770, - "y": 2730, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", - "width": 2450, - "x": -3150, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6090, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", - "width": 210, - "x": -3430, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5810, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", - "width": 210, - "x": -3150, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", - "width": 2450, - "x": -3220, - "y": 1260, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", - "width": 70, - "x": -2940, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", - "width": 70, - "x": -2940, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", - "width": 70, - "x": -2940, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", - "width": 70, - "x": -2940, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", - "width": 70, - "x": -2940, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", - "width": 70, - "x": -2940, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", - "width": 70, - "x": -2940, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", - "width": 70, - "x": -2940, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", - "width": 70, - "x": -3500, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", - "width": 70, - "x": -3500, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", - "width": 70, - "x": -3500, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", - "width": 70, - "x": -3500, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", - "width": 70, - "x": -3500, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", - "width": 70, - "x": -3500, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", - "width": 70, - "x": -3500, - "y": 3500, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", - "width": 70, - "x": -3220, - "y": 3360, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", - "width": 70, - "x": -3220, - "y": 3290, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", - "width": 70, - "x": -3220, - "y": 3220, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", - "width": 70, - "x": -3220, - "y": 3150, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", - "width": 70, - "x": -3220, - "y": 3080, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", - "width": 70, - "x": -3220, - "y": 3500, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", - "width": 70, - "x": -3220, - "y": 3430, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", - "width": 70, - "x": -3220, - "y": 3570, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", - "width": 70, - "x": -3500, - "y": 3570, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", - "width": 2730, - "x": -2870, - "y": 3080, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", - "width": 140, - "x": -3780, - "y": 2590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "Placeholder", - "persistentUuid": "836a213c-8cdb-4941-9c4e-4bd98ce3f7a2", - "width": 0, - "x": -474, - "y": 1561, - "zOrder": 9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "Niko", - "persistentUuid": "70a36631-69a6-4c00-a464-a6e16d80fb3e", - "width": 0, - "x": -108, - "y": 1519, - "zOrder": 10, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", - "width": 70, - "x": 490, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", - "width": 70, - "x": 420, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", - "width": 70, - "x": 490, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", - "width": 70, - "x": 420, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "door1", - "persistentUuid": "0cb1981b-95d9-487d-aa05-ed08b983e17a", - "width": 140, - "x": 420, - "y": 780, - "zOrder": 101, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "fade", - "locked": false, - "name": "fade_tiled_sprite", - "persistentUuid": "d64b1427-69f8-4865-83c1-e71101d9e007", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 102, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "4e812b69-5a12-4e22-ba1c-a240bebf9e91", - "width": 140, - "x": -560, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "f96e4766-b631-4e90-ab0e-4f80ce881d3c", - "width": 140, - "x": -700, - "y": 630, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2a73a07c-8c3e-410d-b7ed-654e7a743421", - "width": 70, - "x": -280, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "34ec7312-1e01-466e-934d-6e6681a1bfa8", - "width": 70, - "x": -210, - "y": 980, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", - "width": 70, - "x": -280, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", - "width": 70, - "x": -210, - "y": 1050, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "gun1", - "persistentUuid": "5a448040-cb9c-49d6-8597-63790fc6f3fb", - "width": 0, - "x": 98, - "y": 1194, - "zOrder": 121, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "door2", - "persistentUuid": "f1e66476-0a86-45c4-883b-68568d63d87e", - "width": 140, - "x": -280, - "y": 780, - "zOrder": 104, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "58eced0f-c0fb-421c-98fc-ea739b877fb2", - "width": 70, - "x": -910, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "7f356254-bc0d-47bb-8f49-970e4d2333ef", - "width": 140, - "x": 420, - "y": 700, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "24c3b475-9d85-487a-8528-e8c0ba748dc5", - "width": 140, - "x": 420, - "y": 840, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": true, - "height": 190, - "layer": "", - "locked": false, - "name": "door3", - "persistentUuid": "8eb44553-f249-49d3-8537-5a6e294ef1f2", - "width": 140, - "x": -2380, - "y": 1890, - "zOrder": 18, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ammo", - "persistentUuid": "02cb8fdd-466a-4a8b-ba79-590d3bf4c75d", - "width": 0, - "x": -70, - "y": 1330, - "zOrder": 108, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ammo", - "persistentUuid": "3a7b864c-ab03-4d43-aefa-f7eae6251dc8", - "width": 0, - "x": -140, - "y": 1400, - "zOrder": 109, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ammo", - "persistentUuid": "385a36c9-79bb-4c01-b99b-1364069755d3", - "width": 0, - "x": -70, - "y": 1400, - "zOrder": 110, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": true, - "name": "AmmoText", - "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", - "width": 0, - "x": -5110, - "y": -5530, - "zOrder": 111, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "gun2", - "persistentUuid": "91c0c667-36c2-4c98-acb1-ff4aebfefcc9", - "width": 0, - "x": 70, - "y": 1470, - "zOrder": 112, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", - "width": 70, - "x": 770, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", - "width": 70, - "x": 840, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", - "width": 70, - "x": 770, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", - "width": 70, - "x": 840, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", - "width": 70, - "x": 770, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", - "width": 70, - "x": 840, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", - "width": 70, - "x": 770, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", - "width": 70, - "x": 840, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", - "width": 70, - "x": 770, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", - "width": 70, - "x": 840, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", - "width": 70, - "x": 770, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", - "width": 70, - "x": 840, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", - "width": 70, - "x": 770, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", - "width": 70, - "x": 770, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", - "width": 70, - "x": 840, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", - "width": 70, - "x": 770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", - "width": 70, - "x": 840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", - "width": 70, - "x": 770, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", - "width": 70, - "x": 840, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", - "width": 70, - "x": 770, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", - "width": 70, - "x": 840, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", - "width": 70, - "x": 770, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", - "width": 70, - "x": 840, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", - "width": 70, - "x": 770, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", - "width": 70, - "x": 840, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", - "width": 70, - "x": 770, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", - "width": 70, - "x": 840, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", - "width": 70, - "x": 770, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", - "width": 70, - "x": 840, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", - "width": 70, - "x": 770, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", - "width": 70, - "x": 840, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", - "width": 70, - "x": 770, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", - "width": 70, - "x": 840, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", - "width": 70, - "x": 770, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", - "width": 70, - "x": 840, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", - "width": 70, - "x": 770, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", - "width": 70, - "x": 840, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", - "width": 70, - "x": 770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", - "width": 70, - "x": 840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", - "width": 70, - "x": 770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", - "width": 70, - "x": 840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", - "width": 70, - "x": 1540, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", - "width": 70, - "x": 1610, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", - "width": 70, - "x": 1540, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", - "width": 70, - "x": 1610, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", - "width": 70, - "x": 1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", - "width": 70, - "x": 1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", - "width": 70, - "x": 1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", - "width": 70, - "x": 1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", - "width": 70, - "x": 1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", - "width": 70, - "x": 1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", - "width": 70, - "x": 1540, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", - "width": 70, - "x": 1610, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", - "width": 70, - "x": 1540, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", - "width": 70, - "x": 1610, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", - "width": 70, - "x": 1540, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", - "width": 70, - "x": 1610, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", - "width": 70, - "x": 1540, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", - "width": 70, - "x": 1610, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", - "width": 70, - "x": 1540, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", - "width": 70, - "x": 1610, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", - "width": 70, - "x": 1540, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", - "width": 70, - "x": 1610, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", - "width": 70, - "x": 1540, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", - "width": 70, - "x": 1610, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", - "width": 70, - "x": 1540, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", - "width": 70, - "x": 1610, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", - "width": 70, - "x": 1540, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", - "width": 70, - "x": 1610, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", - "width": 70, - "x": 1540, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", - "width": 70, - "x": 1610, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", - "width": 70, - "x": 1540, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", - "width": 70, - "x": 1610, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", - "width": 70, - "x": 1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", - "width": 70, - "x": 1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", - "width": 70, - "x": 1540, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", - "width": 70, - "x": 1610, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", - "width": 70, - "x": 1540, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", - "width": 70, - "x": 1610, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", - "width": 70, - "x": 1540, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", - "width": 70, - "x": 1610, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", - "width": 70, - "x": 1540, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", - "width": 70, - "x": 1610, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", - "width": 70, - "x": 1540, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "674a3cb9-d7c1-462f-904e-bfd6565eeefe", - "width": 70, - "x": 1610, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", - "width": 70, - "x": 1540, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", - "width": 70, - "x": 1610, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", - "width": 70, - "x": 1540, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", - "width": 70, - "x": 1610, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", - "width": 70, - "x": 1540, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", - "width": 70, - "x": 1610, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", - "width": 70, - "x": 1540, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", - "width": 70, - "x": 1610, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", - "width": 70, - "x": 1540, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", - "width": 70, - "x": 1610, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", - "width": 70, - "x": 1540, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", - "width": 70, - "x": 1610, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "a1f5c763-dd07-4000-81b4-d1fe11fbd5bf", - "width": 70, - "x": 1610, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", - "width": 70, - "x": 1540, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", - "width": 70, - "x": 1610, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", - "width": 70, - "x": 1540, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", - "width": 70, - "x": 1610, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", - "width": 70, - "x": 1540, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", - "width": 70, - "x": 1610, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", - "width": 70, - "x": -140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", - "width": 70, - "x": -70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", - "width": 70, - "x": -140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", - "width": 70, - "x": -70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", - "width": 70, - "x": 0, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", - "width": 70, - "x": 70, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", - "width": 70, - "x": 0, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", - "width": 70, - "x": 70, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", - "width": 70, - "x": 140, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", - "width": 70, - "x": 210, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", - "width": 70, - "x": 140, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", - "width": 70, - "x": 210, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", - "width": 70, - "x": 280, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", - "width": 70, - "x": 350, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", - "width": 70, - "x": 280, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", - "width": 70, - "x": 350, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", - "width": 70, - "x": 420, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", - "width": 70, - "x": 490, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", - "width": 70, - "x": 420, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", - "width": 70, - "x": 490, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", - "width": 70, - "x": 700, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", - "width": 70, - "x": 700, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7247f601-a750-4757-be03-95644999d829", - "width": 70, - "x": 910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", - "width": 70, - "x": 910, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", - "width": 70, - "x": 1050, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", - "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", - "width": 70, - "x": 1120, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", - "width": 70, - "x": 1190, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", - "width": 70, - "x": 1120, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", - "width": 70, - "x": 1190, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", - "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", - "width": 70, - "x": 1330, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", - "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", - "width": 70, - "x": 1330, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", - "width": 70, - "x": 1400, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fc092547-6921-461e-8626-545397380833", - "width": 70, - "x": 1470, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", - "width": 70, - "x": 1400, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", - "width": 70, - "x": 1470, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", - "width": 70, - "x": 420, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", - "width": 70, - "x": 490, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", - "width": 70, - "x": 490, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", - "width": 70, - "x": 420, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", - "width": 70, - "x": 630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", - "width": 70, - "x": 700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", - "width": 70, - "x": 630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", - "width": 70, - "x": 700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", - "width": 70, - "x": 280, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", - "width": 70, - "x": 350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", - "width": 70, - "x": 280, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", - "width": 70, - "x": 350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", - "width": 70, - "x": 560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", - "width": 70, - "x": 560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", - "width": 70, - "x": -210, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", - "width": 70, - "x": -280, - "y": 1120, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", - "width": 70, - "x": -280, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", - "width": 70, - "x": -210, - "y": 1190, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", - "width": 70, - "x": 0, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", - "width": 70, - "x": 70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", - "width": 70, - "x": 0, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", - "width": 70, - "x": 70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", - "width": 70, - "x": 140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", - "width": 70, - "x": 210, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", - "width": 70, - "x": 140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", - "width": 70, - "x": 210, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", - "width": 70, - "x": -350, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", - "width": 70, - "x": -140, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", - "width": 70, - "x": -350, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", - "width": 70, - "x": -140, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", - "width": 70, - "x": -490, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", - "width": 70, - "x": -420, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", - "width": 70, - "x": -490, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", - "width": 70, - "x": -420, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", - "width": 70, - "x": -630, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", - "width": 70, - "x": -560, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", - "width": 70, - "x": -630, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", - "width": 70, - "x": -560, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", - "width": 70, - "x": -910, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", - "width": 70, - "x": -70, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", - "width": 70, - "x": -910, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", - "width": 70, - "x": -70, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", - "width": 70, - "x": -770, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", - "width": 70, - "x": -700, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", - "width": 70, - "x": -770, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", - "width": 70, - "x": -700, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", - "width": 70, - "x": 520, - "y": 1080, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "031e03a8-1d5b-4920-ad17-82c2d35ee61f", - "width": 70, - "x": 590, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", - "width": 70, - "x": 660, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", - "width": 70, - "x": 730, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d2042623-f888-4680-8254-5a0e2dab8fe8", - "width": 70, - "x": 730, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", - "width": 70, - "x": 730, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", - "width": 70, - "x": 730, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", - "width": 70, - "x": 730, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", - "width": 70, - "x": 730, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", - "width": 70, - "x": 730, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", - "width": 70, - "x": 730, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", - "width": 70, - "x": 730, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", - "width": 70, - "x": 730, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", - "width": 70, - "x": 730, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", - "width": 70, - "x": 590, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", - "width": 70, - "x": 660, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", - "width": 70, - "x": 450, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", - "width": 70, - "x": 520, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", - "width": 70, - "x": 310, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [ - { - "name": "Id", - "type": "string", - "value": "1" - } - ] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", - "width": 70, - "x": 380, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", - "width": 70, - "x": 170, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", - "width": 70, - "x": 240, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", - "width": 70, - "x": 30, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1b764fba-aede-457b-b97d-a07d8208e35d", - "width": 70, - "x": 30, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", - "width": 70, - "x": 30, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", - "width": 70, - "x": 30, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", - "width": 70, - "x": 30, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", - "width": 70, - "x": 30, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", - "width": 70, - "x": 30, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", - "width": 70, - "x": 30, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", - "width": 70, - "x": 30, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", - "width": 70, - "x": 30, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", - "width": 70, - "x": 100, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", - "width": 70, - "x": 30, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", - "width": 70, - "x": 170, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", - "width": 70, - "x": 100, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", - "width": 70, - "x": 310, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", - "width": 70, - "x": 240, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", - "width": 70, - "x": 380, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", - "width": 70, - "x": 30, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", - "width": 70, - "x": -250, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", - "width": 70, - "x": -180, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", - "width": 70, - "x": -390, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", - "width": 70, - "x": -320, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", - "width": 70, - "x": -530, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", - "width": 70, - "x": -460, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", - "width": 70, - "x": -670, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", - "width": 70, - "x": -600, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", - "width": 70, - "x": -740, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", - "width": 70, - "x": -950, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", - "width": 70, - "x": -880, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", - "width": 70, - "x": -810, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", - "width": 70, - "x": -950, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", - "width": 70, - "x": -950, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", - "width": 70, - "x": -950, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", - "width": 70, - "x": -950, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", - "width": 70, - "x": -950, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", - "width": 70, - "x": -950, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d89a329b-4f89-4d08-9d95-cb405dbb4a94", - "width": 70, - "x": -950, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", - "width": 70, - "x": -950, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", - "width": 70, - "x": -950, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", - "width": 70, - "x": -950, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", - "width": 70, - "x": -880, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", - "width": 70, - "x": -810, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", - "width": 70, - "x": -740, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", - "width": 70, - "x": -670, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", - "width": 70, - "x": -530, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", - "width": 70, - "x": -460, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", - "width": 70, - "x": -600, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", - "width": 70, - "x": 30, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "64abcb55-b4ee-4457-ac06-b4efa02191e1", - "width": 70, - "x": -40, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", - "width": 70, - "x": -180, - "y": 1080, - "zOrder": 115, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", - "width": 70, - "x": -320, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", - "width": 70, - "x": -980, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", - "width": 70, - "x": -980, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", - "width": 70, - "x": -1050, - "y": 1960, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", - "width": 70, - "x": -1050, - "y": 2030, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", - "width": 70, - "x": -1050, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", - "width": 70, - "x": -1050, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", - "width": 70, - "x": -980, - "y": 1330, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", - "width": 70, - "x": -980, - "y": 1400, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", - "width": 70, - "x": -840, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", - "width": 70, - "x": -840, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", - "width": 70, - "x": -910, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", - "width": 70, - "x": -840, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", - "width": 70, - "x": -840, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", - "width": 70, - "x": -910, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", - "width": 70, - "x": -910, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", - "width": 70, - "x": -910, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", - "width": 70, - "x": -840, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", - "width": 70, - "x": -840, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", - "width": 70, - "x": -910, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", - "width": 70, - "x": -910, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", - "width": 70, - "x": -840, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", - "width": 70, - "x": -840, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", - "width": 70, - "x": -910, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", - "width": 70, - "x": -840, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", - "width": 70, - "x": -840, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", - "width": 70, - "x": -910, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", - "width": 70, - "x": -910, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", - "width": 70, - "x": -910, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", - "width": 70, - "x": -840, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", - "width": 70, - "x": -840, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", - "width": 70, - "x": -910, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", - "width": 70, - "x": -910, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", - "width": 70, - "x": -840, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", - "width": 70, - "x": -840, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", - "width": 70, - "x": -910, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", - "width": 70, - "x": -840, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", - "width": 70, - "x": -140, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", - "width": 70, - "x": -70, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", - "width": 70, - "x": -70, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", - "width": 70, - "x": -140, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", - "width": 70, - "x": -140, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", - "width": 70, - "x": -70, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", - "width": 70, - "x": -70, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", - "width": 70, - "x": -140, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", - "width": 70, - "x": -140, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", - "width": 70, - "x": -70, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", - "width": 70, - "x": -140, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", - "width": 70, - "x": -70, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", - "width": 70, - "x": -70, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", - "width": 70, - "x": -140, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", - "width": 70, - "x": -140, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", - "width": 70, - "x": -70, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", - "width": 70, - "x": -70, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", - "width": 70, - "x": -140, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", - "width": 70, - "x": -140, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", - "width": 70, - "x": -70, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", - "width": 70, - "x": -140, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", - "width": 70, - "x": -70, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", - "width": 70, - "x": -70, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", - "width": 70, - "x": -140, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", - "width": 70, - "x": -140, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", - "width": 70, - "x": -70, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", - "width": 70, - "x": -70, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", - "width": 70, - "x": -140, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", - "width": 70, - "x": -140, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", - "width": 70, - "x": -70, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", - "width": 70, - "x": -2030, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", - "width": 70, - "x": -1960, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", - "width": 70, - "x": -2030, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", - "width": 70, - "x": -1960, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", - "width": 70, - "x": -1890, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", - "width": 70, - "x": -1820, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", - "width": 70, - "x": -1890, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", - "width": 70, - "x": -1820, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", - "width": 70, - "x": -1750, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", - "width": 70, - "x": -1680, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", - "width": 70, - "x": -1750, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", - "width": 70, - "x": -1680, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", - "width": 70, - "x": -1610, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", - "width": 70, - "x": -1540, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", - "width": 70, - "x": -1610, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", - "width": 70, - "x": -1540, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", - "width": 70, - "x": -1470, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", - "width": 70, - "x": -1400, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", - "width": 70, - "x": -1470, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", - "width": 70, - "x": -1400, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", - "width": 70, - "x": -1330, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", - "width": 70, - "x": -1260, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", - "width": 70, - "x": -1330, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", - "width": 70, - "x": -1260, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", - "width": 70, - "x": -1190, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", - "width": 70, - "x": -1120, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", - "width": 70, - "x": -1190, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", - "width": 70, - "x": -1120, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", - "width": 70, - "x": -1050, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", - "width": 70, - "x": -980, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", - "width": 70, - "x": -1050, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", - "width": 70, - "x": -980, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", - "width": 70, - "x": -3150, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", - "width": 70, - "x": -3080, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", - "width": 70, - "x": -3150, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", - "width": 70, - "x": -3080, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", - "width": 70, - "x": -3010, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", - "width": 70, - "x": -3010, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", - "width": 70, - "x": -2730, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", - "width": 70, - "x": -2660, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", - "width": 70, - "x": -2730, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", - "width": 70, - "x": -2660, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", - "width": 70, - "x": -2590, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", - "width": 70, - "x": -2520, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", - "width": 70, - "x": -2590, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", - "width": 70, - "x": -2520, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", - "width": 70, - "x": -2450, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", - "width": 70, - "x": -2380, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", - "width": 70, - "x": -2450, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", - "width": 70, - "x": -2380, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", - "width": 70, - "x": -2310, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", - "width": 70, - "x": -2240, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", - "width": 70, - "x": -2310, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", - "width": 70, - "x": -2240, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", - "width": 70, - "x": -2170, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", - "width": 70, - "x": -2100, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", - "width": 70, - "x": -2170, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", - "width": 70, - "x": -2100, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", - "width": 70, - "x": -1120, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", - "width": 70, - "x": -1050, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", - "width": 70, - "x": -1120, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", - "width": 70, - "x": -1050, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", - "width": 70, - "x": -980, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", - "width": 70, - "x": -910, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", - "width": 70, - "x": -980, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", - "width": 70, - "x": -910, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", - "width": 70, - "x": -840, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", - "width": 70, - "x": -770, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", - "width": 70, - "x": -840, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", - "width": 70, - "x": -770, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", - "width": 70, - "x": -700, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", - "width": 70, - "x": -630, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", - "width": 70, - "x": -700, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", - "width": 70, - "x": -630, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", - "width": 70, - "x": -560, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", - "width": 70, - "x": -490, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", - "width": 70, - "x": -560, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", - "width": 70, - "x": -490, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", - "width": 70, - "x": -420, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", - "width": 70, - "x": -350, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", - "width": 70, - "x": -420, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", - "width": 70, - "x": -350, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", - "width": 70, - "x": -280, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", - "width": 70, - "x": -210, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", - "width": 70, - "x": -280, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", - "width": 70, - "x": -210, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", - "width": 70, - "x": -140, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", - "width": 70, - "x": -70, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", - "width": 70, - "x": -140, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", - "width": 70, - "x": -70, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", - "width": 70, - "x": -2240, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", - "width": 70, - "x": -2170, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", - "width": 70, - "x": -2240, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", - "width": 70, - "x": -2170, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", - "width": 70, - "x": -2100, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", - "width": 70, - "x": -2030, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", - "width": 70, - "x": -2100, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", - "width": 70, - "x": -2030, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", - "width": 70, - "x": -1960, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", - "width": 70, - "x": -1890, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", - "width": 70, - "x": -1960, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", - "width": 70, - "x": -1890, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", - "width": 70, - "x": -1820, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", - "width": 70, - "x": -1750, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", - "width": 70, - "x": -1820, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", - "width": 70, - "x": -1750, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "52547319-be3b-4d16-85d0-1719cbd0927e", - "width": 70, - "x": -1680, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", - "width": 70, - "x": -1610, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", - "width": 70, - "x": -1680, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", - "width": 70, - "x": -1610, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", - "width": 70, - "x": -1540, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", - "width": 70, - "x": -1470, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", - "width": 70, - "x": -1540, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", - "width": 70, - "x": -1470, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", - "width": 70, - "x": -1400, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", - "width": 70, - "x": -1330, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", - "width": 70, - "x": -1400, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", - "width": 70, - "x": -1330, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", - "width": 70, - "x": -1260, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", - "width": 70, - "x": -1190, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", - "width": 70, - "x": -1260, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", - "width": 70, - "x": -1190, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "929b5ac9-59ae-4827-99ca-52e86d399794", - "width": 70, - "x": -390, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", - "width": 70, - "x": -110, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ef1154bf-9b02-4dad-87b4-54011b4328b9", - "width": 70, - "x": -110, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", - "width": 70, - "x": -40, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 17, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "00b4388f-447f-43e5-908f-481cd5f6e925", - "width": 140, - "x": 140, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "b09cda94-3c28-44fc-b95a-d49943c138be", - "width": 140, - "x": 140, - "y": 910, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 20, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "e474178b-dd5c-437c-8551-5b2d4c63958c", - "width": 140, - "x": 140, - "y": 490, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", - "width": 140, - "x": 140, - "y": 630, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "f455fae4-a981-41cb-9f42-ebc230edd898", - "width": 140, - "x": 140, - "y": 770, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 20, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "b41e9fe5-bdc2-4ec2-b615-593db7d74866", - "width": 140, - "x": -840, - "y": 490, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", - "width": 140, - "x": -840, - "y": 630, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 17, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "3d963181-fcfb-4fb0-a48c-7f0536db618d", - "width": 140, - "x": -840, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", - "width": 140, - "x": -840, - "y": 910, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", - "width": 140, - "x": -840, - "y": 770, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", - "width": 70, - "x": -950, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", - "width": 70, - "x": -950, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", - "width": 70, - "x": -950, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", - "width": 70, - "x": -950, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", - "width": 70, - "x": -1440, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", - "width": 70, - "x": -1090, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", - "width": 70, - "x": -1160, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", - "width": 70, - "x": -1020, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", - "width": 70, - "x": -1510, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", - "width": 70, - "x": -1370, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", - "width": 70, - "x": -1300, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", - "width": 70, - "x": -1230, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "40f45722-0753-458c-97d8-86b90735d89f", - "width": 70, - "x": -1580, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", - "width": 70, - "x": -1720, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", - "width": 70, - "x": -1720, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", - "width": 70, - "x": -1720, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", - "width": 70, - "x": -1720, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", - "width": 70, - "x": -1720, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", - "width": 70, - "x": -1720, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", - "width": 70, - "x": -1720, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", - "width": 70, - "x": -1720, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", - "width": 70, - "x": -1720, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", - "width": 70, - "x": -1720, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", - "width": 70, - "x": -950, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", - "width": 70, - "x": -950, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", - "width": 70, - "x": -950, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4d3cddb9-5467-47e2-a16e-fe86d69d91df", - "width": 70, - "x": -950, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e321332b-34d6-4b1d-8058-a92a72a5c1b5", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", - "width": 70, - "x": -950, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", - "width": 70, - "x": -950, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fb8f15e2-d0cf-412c-8203-a91eabfd6067", - "width": 70, - "x": -950, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", - "width": 70, - "x": -1720, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", - "width": 70, - "x": -1720, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", - "width": 70, - "x": -1720, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", - "width": 70, - "x": -1720, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", - "width": 70, - "x": -1720, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", - "width": 70, - "x": -1720, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", - "width": 70, - "x": -950, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", - "width": 70, - "x": -1720, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", - "width": 70, - "x": -1720, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", - "width": 70, - "x": -1720, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", - "width": 70, - "x": -1720, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", - "width": 70, - "x": -1370, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", - "width": 70, - "x": -1440, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", - "width": 70, - "x": -1510, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", - "width": 70, - "x": -1580, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", - "width": 70, - "x": -1090, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", - "width": 70, - "x": -1160, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", - "width": 70, - "x": -1230, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", - "width": 70, - "x": -1300, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "32845a05-f60b-48ef-8aec-11c3cc2bb51b", - "width": 70, - "x": -1020, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", - "width": 70, - "x": -950, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", - "width": 70, - "x": -950, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", - "width": 140, - "x": -1610, - "y": 1050, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", - "width": 70, - "x": -1720, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", - "width": 70, - "x": -1650, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", - "width": 70, - "x": -1440, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", - "width": 70, - "x": -1090, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", - "width": 70, - "x": -1160, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", - "width": 70, - "x": -1020, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", - "width": 70, - "x": -1510, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", - "width": 70, - "x": -1370, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", - "width": 70, - "x": -1300, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", - "width": 70, - "x": -1230, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", - "width": 70, - "x": -1580, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ae961f02-4c9c-430e-a470-f9ee519b233d", - "width": 70, - "x": -1650, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", - "width": 70, - "x": -1650, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", - "width": 70, - "x": -950, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", - "width": 70, - "x": -950, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", - "width": 70, - "x": -950, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", - "width": 140, - "x": -1610, - "y": 1330, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", - "width": 140, - "x": -1610, - "y": 1610, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", - "width": 140, - "x": -1610, - "y": 1820, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", - "width": 140, - "x": -1610, - "y": 2170, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", - "width": 70, - "x": -2730, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", - "width": 70, - "x": -2660, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", - "width": 70, - "x": -2730, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", - "width": 70, - "x": -2660, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", - "width": 70, - "x": -2590, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", - "width": 70, - "x": -2520, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", - "width": 70, - "x": -2590, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", - "width": 70, - "x": -2520, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", - "width": 70, - "x": -2450, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", - "width": 70, - "x": -2380, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", - "width": 70, - "x": -2450, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", - "width": 70, - "x": -2380, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", - "width": 70, - "x": -2310, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", - "width": 70, - "x": -2310, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", - "width": 70, - "x": -3500, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", - "width": 70, - "x": -3430, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", - "width": 70, - "x": -3500, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", - "width": 70, - "x": -3430, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", - "width": 70, - "x": -3360, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", - "width": 70, - "x": -3290, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", - "width": 70, - "x": -3360, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", - "width": 70, - "x": -3290, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", - "width": 70, - "x": -3220, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", - "width": 70, - "x": -2870, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", - "width": 70, - "x": -3220, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", - "width": 70, - "x": -2870, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", - "width": 70, - "x": -2800, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", - "width": 70, - "x": -2800, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", - "width": 70, - "x": -3570, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", - "width": 70, - "x": -3640, - "y": 2310, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", - "width": 70, - "x": -3640, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", - "width": 70, - "x": -3570, - "y": 2380, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", - "width": 70, - "x": -3640, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", - "width": 70, - "x": -3570, - "y": 2450, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", - "width": 70, - "x": -3570, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", - "width": 70, - "x": -3640, - "y": 2520, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", - "width": 70, - "x": -3640, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", - "width": 70, - "x": -3570, - "y": 2590, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", - "width": 70, - "x": -3570, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", - "width": 70, - "x": -3640, - "y": 2660, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", - "width": 70, - "x": -3640, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", - "width": 70, - "x": -3570, - "y": 2730, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", - "width": 70, - "x": -3640, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", - "width": 70, - "x": -3570, - "y": 2800, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", - "width": 70, - "x": -3640, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", - "width": 70, - "x": -3570, - "y": 2870, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", - "width": 70, - "x": -3570, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", - "width": 70, - "x": -3640, - "y": 2940, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", - "width": 70, - "x": -3640, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", - "width": 70, - "x": -3570, - "y": 3010, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", - "width": 70, - "x": -3640, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", - "width": 70, - "x": -3570, - "y": 3080, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", - "width": 70, - "x": -3570, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", - "width": 70, - "x": -3640, - "y": 3150, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", - "width": 70, - "x": -3640, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", - "width": 70, - "x": -3570, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", - "width": 70, - "x": -3570, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", - "width": 70, - "x": -3640, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", - "width": 70, - "x": -3640, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", - "width": 70, - "x": -3570, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", - "width": 70, - "x": -3640, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", - "width": 70, - "x": -3570, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", - "width": 70, - "x": -3640, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", - "width": 70, - "x": -3570, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", - "width": 70, - "x": -2870, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", - "width": 70, - "x": -2800, - "y": 3220, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", - "width": 70, - "x": -2800, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", - "width": 70, - "x": -2870, - "y": 3290, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", - "width": 70, - "x": -2870, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", - "width": 70, - "x": -2800, - "y": 3360, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", - "width": 70, - "x": -2800, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", - "width": 70, - "x": -2870, - "y": 3430, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", - "width": 70, - "x": -2870, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", - "width": 70, - "x": -2800, - "y": 3500, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "c3282000-6105-43c0-a011-b7fc30815131", - "width": 6020, - "x": -1260, - "y": -1960, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", - "width": 70, - "x": -950, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", - "width": 70, - "x": -950, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", - "width": 70, - "x": -950, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", - "width": 70, - "x": -950, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", - "width": 70, - "x": -950, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", - "width": 70, - "x": -950, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", - "width": 70, - "x": -950, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", - "width": 70, - "x": 590, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "034e0cd9-4656-418e-81c2-a2fdc94df16a", - "width": 70, - "x": 660, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", - "width": 70, - "x": 450, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", - "width": 70, - "x": 520, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", - "width": 70, - "x": 310, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", - "width": 70, - "x": 380, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", - "width": 70, - "x": 170, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", - "width": 70, - "x": 240, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", - "width": 70, - "x": 100, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", - "width": 70, - "x": 730, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", - "width": 70, - "x": -390, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", - "width": 70, - "x": -530, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", - "width": 70, - "x": -460, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", - "width": 70, - "x": -670, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", - "width": 70, - "x": -600, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", - "width": 70, - "x": -810, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", - "width": 70, - "x": -740, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", - "width": 70, - "x": -880, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", - "width": 70, - "x": -40, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", - "width": 70, - "x": -180, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", - "width": 70, - "x": -110, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", - "width": 70, - "x": -320, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", - "width": 70, - "x": -250, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", - "width": 70, - "x": 30, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", - "width": 70, - "x": 730, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", - "width": 70, - "x": 730, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", - "width": 70, - "x": 730, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d8cddc26-6c6a-4b87-92c4-bec873b8d00b", - "width": 70, - "x": 590, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", - "width": 70, - "x": 660, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", - "width": 70, - "x": 450, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", - "width": 70, - "x": 520, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", - "width": 70, - "x": 310, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", - "width": 70, - "x": 380, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", - "width": 70, - "x": 170, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", - "width": 70, - "x": 240, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", - "width": 70, - "x": 100, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", - "width": 70, - "x": -40, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", - "width": 70, - "x": 30, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", - "width": 70, - "x": -180, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", - "width": 70, - "x": -110, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", - "width": 70, - "x": -320, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", - "width": 70, - "x": -250, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", - "width": 70, - "x": -460, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", - "width": 70, - "x": -390, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", - "width": 70, - "x": -530, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", - "width": 70, - "x": -670, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", - "width": 70, - "x": -600, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", - "width": 70, - "x": -810, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", - "width": 70, - "x": -740, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", - "width": 70, - "x": -880, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", - "width": 70, - "x": -950, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", - "width": 70, - "x": -2000, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", - "width": 70, - "x": -1930, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", - "width": 70, - "x": -1930, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", - "width": 70, - "x": -1930, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", - "width": 70, - "x": -1930, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "be610e1c-2b75-4726-b9ab-17c13e04b0dd", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", - "width": 70, - "x": -1930, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", - "width": 70, - "x": -1930, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", - "width": 70, - "x": -1930, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", - "width": 70, - "x": -1930, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", - "width": 70, - "x": -1930, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", - "width": 70, - "x": -1930, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", - "width": 70, - "x": -1930, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", - "width": 70, - "x": -1930, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", - "width": 70, - "x": -1930, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", - "width": 70, - "x": -1930, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", - "width": 70, - "x": -1930, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", - "width": 70, - "x": -1930, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", - "width": 70, - "x": -1930, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", - "width": 70, - "x": -1930, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sports_equipments", - "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", - "width": 140, - "x": 560, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sports_equipments", - "persistentUuid": "87df3078-0b84-4b8b-877a-f5d1693b797c", - "width": 140, - "x": 420, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 30, - "layer": "", - "locked": false, - "name": "sports_equipments_movable", - "persistentUuid": "6948a31e-81b4-4f3a-9a1c-8440d0a084dd", - "width": 30, - "x": -140, - "y": 70, - "zOrder": 100, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "a99a4ec2-138d-4e94-9c27-c4e417bb0bd9", - "width": 0, - "x": 280, - "y": 560, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", - "width": 0, - "x": -1470, - "y": 1190, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", - "width": 0, - "x": -1470, - "y": 1820, - "zOrder": 120, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", - "width": 0, - "x": -490, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", - "width": 0, - "x": -2520, - "y": 1540, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "4393ace7-fdcd-4410-9789-21f0bd2e30f4", - "width": 140, - "x": -2380, - "y": 1890, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "5c6123ae-d57b-4022-a5c7-db0ee6e014b9", - "width": 140, - "x": -2380, - "y": 1893, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", - "width": 0, - "x": -2520, - "y": 910, - "zOrder": 12, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", - "width": 70, - "x": -2000, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", - "width": 70, - "x": -2000, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fa51ad7d-bd0d-4b5c-91aa-f33f5566aced", - "width": 70, - "x": -2000, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "gun3", - "persistentUuid": "649553fa-c15a-47bc-82bc-2b7b8687672b", - "width": 0, - "x": 70, - "y": 1540, - "zOrder": 121, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "flame_thrower_fire_collision", - "persistentUuid": "ded64a81-59c3-4fd0-8f25-30f0b69e5472", - "width": 0, - "x": -247, - "y": 1324, - "zOrder": 122, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", - "width": 70, - "x": -2380, - "y": 2030, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", - "width": 70, - "x": -2380, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", - "width": 70, - "x": -2310, - "y": 2030, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", - "width": 70, - "x": -2380, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", - "width": 70, - "x": -2310, - "y": 2240, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", - "width": 70, - "x": -2310, - "y": 2100, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", - "width": 70, - "x": -2310, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", - "width": 70, - "x": -2380, - "y": 2170, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", - "width": 70, - "x": -2420, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", - "width": 70, - "x": -2070, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", - "width": 70, - "x": -2140, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cfab0be8-ecd5-4758-9f16-050ea518895c", - "width": 70, - "x": -2000, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", - "width": 70, - "x": -2350, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", - "width": 70, - "x": -2280, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", - "width": 70, - "x": -2210, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "90004105-56ce-45f1-960c-cce2a732f1c4", - "width": 70, - "x": -1930, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", - "width": 70, - "x": -2700, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", - "width": 70, - "x": -2700, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", - "width": 70, - "x": -2700, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", - "width": 70, - "x": -2700, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", - "width": 70, - "x": -2700, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", - "width": 70, - "x": -2700, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2569da75-8539-4c2f-ae0e-e5da1e001ca7", - "width": 70, - "x": -2700, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", - "width": 70, - "x": -2700, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", - "width": 70, - "x": -2700, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", - "width": 70, - "x": -2700, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", - "width": 70, - "x": -2700, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", - "width": 70, - "x": -2700, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", - "width": 70, - "x": -2700, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", - "width": 70, - "x": -2700, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", - "width": 70, - "x": -2700, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", - "width": 70, - "x": -2490, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", - "width": 70, - "x": -2560, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", - "width": 70, - "x": -2630, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", - "width": 70, - "x": -2700, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", - "width": 70, - "x": -2700, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", - "width": 70, - "x": -2700, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", - "width": 70, - "x": -2700, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", - "width": 70, - "x": -2700, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", - "width": 70, - "x": -2700, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", - "width": 70, - "x": -2700, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", - "width": 70, - "x": -2700, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", - "width": 70, - "x": -2700, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", - "width": 70, - "x": -2700, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", - "width": 70, - "x": -2700, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", - "width": 70, - "x": -2700, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", - "width": 70, - "x": -2700, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", - "width": 70, - "x": -2700, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "424a433b-aaae-4851-b063-663843dd15f7", - "width": 70, - "x": -2630, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", - "width": 70, - "x": -2560, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", - "width": 70, - "x": -2490, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", - "width": 70, - "x": -2420, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", - "width": 70, - "x": -2350, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", - "width": 70, - "x": -2280, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", - "width": 70, - "x": -2210, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", - "width": 70, - "x": -2140, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", - "width": 70, - "x": -2070, - "y": 385, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", - "width": 70, - "x": -2000, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", - "width": 70, - "x": -2630, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", - "width": 70, - "x": -2070, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", - "width": 70, - "x": -2560, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "56147eaa-0af2-42c3-9f6c-2e7ff844db96", - "width": 70, - "x": -2490, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", - "width": 70, - "x": -2140, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", - "width": 70, - "x": -2210, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", - "width": 70, - "x": -2420, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", - "width": 70, - "x": -2140, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", - "width": 70, - "x": -2140, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8534af35-48af-4896-b449-cf4a1622a887", - "width": 70, - "x": -2140, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "45c44adb-2ea9-4bb3-941e-fd0b32625f05", - "width": 70, - "x": -2070, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", - "width": 70, - "x": -2140, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "51695d53-ce7d-4dbb-a0b9-37b1f8210917", - "width": 70, - "x": -2070, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", - "width": 70, - "x": -2870, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", - "width": 1820, - "x": -2870, - "y": 210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", - "width": 210, - "x": -1820, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", - "width": 70, - "x": -3010, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", - "width": 70, - "x": -3010, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", - "width": 70, - "x": -3010, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "298aee83-aa29-41c1-b284-36dd965c4c5a", - "width": 70, - "x": -3010, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc90e793-2e56-4022-969b-7465ce8c17b3", - "width": 70, - "x": -3010, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", - "width": 70, - "x": -3010, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", - "width": 70, - "x": -3010, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", - "width": 70, - "x": -3010, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", - "width": 70, - "x": -3010, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", - "width": 70, - "x": -3010, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a3880452-b974-4033-9d23-48e5b46c5439", - "width": 70, - "x": -3010, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", - "width": 70, - "x": -3010, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3efc7c00-3405-4012-afaa-121ad6c60f20", - "width": 70, - "x": -3010, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", - "width": 70, - "x": -3010, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", - "width": 70, - "x": -3010, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", - "width": 70, - "x": -3010, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", - "width": 70, - "x": -3010, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ca10a7df-d8f6-4c40-b039-429f191bd075", - "width": 70, - "x": -3010, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", - "width": 70, - "x": -3010, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4d250a55-e245-4459-8107-5d3986e0046d", - "width": 70, - "x": -3010, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", - "width": 70, - "x": -3010, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", - "width": 70, - "x": -2730, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", - "width": 70, - "x": -2730, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", - "width": 70, - "x": -2730, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", - "width": 70, - "x": -2730, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", - "width": 70, - "x": -2730, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", - "width": 70, - "x": -2730, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", - "width": 70, - "x": -2730, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", - "width": 70, - "x": -2730, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", - "width": 70, - "x": -2730, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", - "width": 70, - "x": -2730, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", - "width": 70, - "x": -2730, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", - "width": 70, - "x": -2730, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", - "width": 70, - "x": -2730, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", - "width": 70, - "x": -2730, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", - "width": 70, - "x": -2730, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", - "width": 70, - "x": -2730, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", - "width": 70, - "x": -2730, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", - "width": 70, - "x": -2730, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", - "width": 70, - "x": -2730, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", - "width": 70, - "x": -2730, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", - "width": 70, - "x": -2730, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", - "width": 70, - "x": -3010, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", - "width": 70, - "x": -3010, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", - "width": 70, - "x": -3010, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", - "width": 70, - "x": -3010, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", - "width": 70, - "x": -3010, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", - "width": 70, - "x": -3010, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", - "width": 70, - "x": -3010, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", - "width": 70, - "x": -3010, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", - "width": 70, - "x": -3010, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", - "width": 70, - "x": -3010, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", - "width": 70, - "x": -3010, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", - "width": 70, - "x": -2730, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", - "width": 70, - "x": -2730, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", - "width": 70, - "x": -2730, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", - "width": 70, - "x": -2730, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", - "width": 70, - "x": -2730, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", - "width": 70, - "x": -2730, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", - "width": 70, - "x": -2730, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", - "width": 70, - "x": -2170, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", - "width": 70, - "x": -2100, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", - "width": 70, - "x": -2030, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", - "width": 70, - "x": -2520, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", - "width": 70, - "x": -2450, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", - "width": 70, - "x": -2380, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", - "width": 70, - "x": -2310, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", - "width": 70, - "x": -2240, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", - "width": 70, - "x": -2590, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb97c581-bfe6-4c6c-9c41-b5bd93717ce4", - "width": 70, - "x": -2660, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", - "width": 70, - "x": -2450, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", - "width": 70, - "x": -2380, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", - "width": 70, - "x": -2310, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", - "width": 70, - "x": -2800, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", - "width": 70, - "x": -2730, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", - "width": 70, - "x": -2660, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", - "width": 70, - "x": -2590, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", - "width": 70, - "x": -2520, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", - "width": 70, - "x": -2870, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", - "width": 70, - "x": -2940, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", - "width": 70, - "x": -1750, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", - "width": 70, - "x": -1680, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", - "width": 70, - "x": -1610, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", - "width": 70, - "x": -2100, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", - "width": 70, - "x": -2030, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", - "width": 70, - "x": -1960, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", - "width": 70, - "x": -1890, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", - "width": 70, - "x": -1820, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", - "width": 70, - "x": -2170, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", - "width": 70, - "x": -2240, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", - "width": 70, - "x": -1050, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", - "width": 70, - "x": -980, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", - "width": 70, - "x": -1400, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", - "width": 70, - "x": -1330, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", - "width": 70, - "x": -1260, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", - "width": 70, - "x": -1190, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", - "width": 70, - "x": -1120, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", - "width": 70, - "x": -1470, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", - "width": 70, - "x": -1540, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", - "width": 70, - "x": -1960, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", - "width": 70, - "x": -980, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", - "width": 70, - "x": -980, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", - "width": 70, - "x": -980, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", - "width": 70, - "x": -980, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", - "width": 70, - "x": -980, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", - "width": 70, - "x": -980, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", - "width": 70, - "x": -980, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", - "width": 70, - "x": -980, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", - "width": 70, - "x": -980, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", - "width": 70, - "x": -980, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", - "width": 70, - "x": -980, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", - "width": 70, - "x": -1190, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", - "width": 70, - "x": -1120, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", - "width": 70, - "x": -1050, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", - "width": 70, - "x": -1400, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", - "width": 70, - "x": -1330, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", - "width": 70, - "x": -1260, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", - "width": 70, - "x": -1680, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", - "width": 70, - "x": -1610, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", - "width": 70, - "x": -1540, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", - "width": 70, - "x": -1470, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "ground_1", - "persistentUuid": "fa1a4a5e-9b00-407e-b0dd-21ab489e513b", - "width": 1680, - "x": -910, - "y": -214, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ground_elements", - "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", - "width": 0, - "x": -840, - "y": -70, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ground_elements", - "persistentUuid": "389124ee-f8c8-46ed-b50a-59a370e84049", - "width": 0, - "x": 490, - "y": -70, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "name": "ground_elements", - "persistentUuid": "53e4866c-5c86-4519-b8f1-8ce042a92e84", - "width": 0, - "x": -140, - "y": -70, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sports_equipments", - "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", - "width": 140, - "x": -910, - "y": 0, - "zOrder": 118, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sports_equipments", - "persistentUuid": "aacbefe4-00b0-4e91-a270-f33a3ce872b0", - "width": 140, - "x": -770, - "y": 0, - "zOrder": 119, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", - "width": 70, - "x": -2100, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", - "width": 70, - "x": -2380, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", - "width": 70, - "x": -2450, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", - "width": 70, - "x": -2170, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", - "width": 70, - "x": -2170, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", - "width": 70, - "x": -2240, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", - "width": 70, - "x": -2310, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", - "width": 70, - "x": -2380, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", - "width": 70, - "x": -2450, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", - "width": 70, - "x": -2100, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", - "width": 70, - "x": -2240, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", - "width": 70, - "x": -2310, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", - "width": 70, - "x": -2170, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", - "width": 70, - "x": -2240, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", - "width": 70, - "x": -2310, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", - "width": 70, - "x": -2380, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", - "width": 70, - "x": -2450, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", - "width": 70, - "x": -2450, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", - "width": 70, - "x": -2380, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", - "width": 70, - "x": -2310, - "y": 770, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", - "width": 70, - "x": -2380, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", - "width": 70, - "x": -2450, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", - "width": 70, - "x": -2310, - "y": 840, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2299d684-6db2-4d15-afd0-8d4aaab9d8a2", - "width": 70, - "x": -950, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", - "width": 70, - "x": -1610, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", - "width": 210, - "x": -1540, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", - "width": 210, - "x": -1260, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", - "width": 70, - "x": -1610, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", - "width": 70, - "x": -1610, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", - "width": 70, - "x": -1610, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", - "width": 70, - "x": -1610, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", - "width": 70, - "x": -1330, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", - "width": 70, - "x": -1330, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", - "width": 70, - "x": -1330, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", - "width": 70, - "x": -1330, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", - "width": 70, - "x": -1330, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", - "width": 70, - "x": -1330, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", - "width": 70, - "x": -1610, - "y": 350, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", - "width": 70, - "x": -1050, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", - "width": 70, - "x": -1050, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", - "width": 70, - "x": -1050, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", - "width": 70, - "x": -1050, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", - "width": 70, - "x": -1050, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", - "width": 70, - "x": -1050, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", - "width": 70, - "x": -1050, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", - "width": 70, - "x": -1050, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", - "width": 70, - "x": -1050, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", - "width": 70, - "x": -1050, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", - "width": 70, - "x": -2870, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", - "width": 70, - "x": -2800, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", - "width": 70, - "x": -2730, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", - "width": 70, - "x": -2660, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", - "width": 70, - "x": -2590, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", - "width": 70, - "x": -2520, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", - "width": 70, - "x": -2450, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", - "width": 70, - "x": -2380, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", - "width": 70, - "x": -2310, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", - "width": 70, - "x": -2240, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", - "width": 70, - "x": -2170, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", - "width": 70, - "x": -2100, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", - "width": 70, - "x": -2030, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", - "width": 70, - "x": -1960, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", - "width": 70, - "x": -1890, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", - "width": 70, - "x": -1820, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", - "width": 70, - "x": -1750, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", - "width": 70, - "x": -1680, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", - "width": 70, - "x": -1610, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", - "width": 70, - "x": -1540, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", - "width": 70, - "x": -1470, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", - "width": 70, - "x": -1400, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", - "width": 70, - "x": -1330, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", - "width": 70, - "x": -1260, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", - "width": 70, - "x": -1190, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", - "width": 70, - "x": -1120, - "y": 140, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "name": "road", - "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", - "width": 70, - "x": -2940, - "y": 140, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", - "width": 70, - "x": -2940, - "y": 210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", - "width": 70, - "x": -2940, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", - "width": 70, - "x": -2940, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", - "width": 70, - "x": -2940, - "y": 420, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", - "width": 70, - "x": -2940, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", - "width": 70, - "x": -2940, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", - "width": 70, - "x": -2940, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", - "width": 70, - "x": -2940, - "y": 700, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", - "width": 70, - "x": -2940, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", - "width": 70, - "x": -2940, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", - "width": 70, - "x": -2940, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", - "width": 70, - "x": -2940, - "y": 980, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", - "width": 70, - "x": -2940, - "y": 1050, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", - "width": 70, - "x": -2940, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", - "width": 70, - "x": -2940, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", - "width": 70, - "x": -2940, - "y": 1260, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", - "width": 70, - "x": -2940, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", - "width": 70, - "x": -2940, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", - "width": 70, - "x": -2940, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", - "width": 70, - "x": -2940, - "y": 1540, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", - "width": 70, - "x": -2940, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", - "width": 70, - "x": -2940, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", - "width": 70, - "x": -2940, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", - "width": 70, - "x": -2940, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", - "width": 70, - "x": -2800, - "y": 1610, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", - "width": 70, - "x": -2800, - "y": 1680, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", - "width": 70, - "x": -2800, - "y": 1750, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", - "width": 70, - "x": -2800, - "y": 1820, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", - "width": 70, - "x": -2800, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", - "width": 70, - "x": -2800, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", - "width": 70, - "x": -2800, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", - "width": 70, - "x": -2800, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", - "width": 70, - "x": -2800, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", - "width": 70, - "x": -2800, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", - "width": 70, - "x": -2800, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", - "width": 70, - "x": -2800, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", - "width": 70, - "x": -2800, - "y": 770, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", - "width": 70, - "x": -2800, - "y": 840, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", - "width": 70, - "x": -2800, - "y": 910, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", - "width": 70, - "x": -2800, - "y": 980, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", - "width": 70, - "x": -2800, - "y": 1050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", - "width": 70, - "x": -2800, - "y": 1120, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", - "width": 70, - "x": -2800, - "y": 1190, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", - "width": 70, - "x": -2800, - "y": 1260, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", - "width": 70, - "x": -2800, - "y": 1400, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", - "width": 70, - "x": -2800, - "y": 1330, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", - "width": 70, - "x": -2800, - "y": 1470, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", - "width": 70, - "x": -2800, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", - "width": 70, - "x": -2800, - "y": 490, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", - "width": 70, - "x": -2800, - "y": 560, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", - "width": 70, - "x": -2800, - "y": 630, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", - "width": 70, - "x": -2800, - "y": 700, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", - "width": 70, - "x": -2940, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", - "width": 70, - "x": -2940, - "y": 1960, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", - "width": 70, - "x": -2940, - "y": 2030, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", - "width": 70, - "x": -2940, - "y": 2100, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", - "width": 70, - "x": -2940, - "y": 2240, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", - "width": 70, - "x": -2940, - "y": 2170, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", - "width": 70, - "x": -2940, - "y": 2310, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", - "width": 70, - "x": -2940, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", - "width": 70, - "x": -2730, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", - "width": 70, - "x": -2100, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", - "width": 70, - "x": -2170, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", - "width": 70, - "x": -2240, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", - "width": 70, - "x": -2310, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", - "width": 70, - "x": -2380, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", - "width": 70, - "x": -2450, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", - "width": 70, - "x": -2520, - "y": 280, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", - "width": 70, - "x": -2660, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "846df340-365f-4859-8137-4845c9256455", - "width": 70, - "x": -2590, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", - "width": 70, - "x": -2800, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", - "width": 70, - "x": -2800, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", - "width": 70, - "x": -2800, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", - "width": 70, - "x": -2030, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", - "width": 70, - "x": -1960, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", - "width": 70, - "x": -1890, - "y": 280, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", - "width": 70, - "x": -1890, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", - "width": 70, - "x": -1890, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", - "width": 70, - "x": -1890, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", - "width": 70, - "x": -1890, - "y": 630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", - "width": 70, - "x": -1890, - "y": 560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", - "width": 70, - "x": -1890, - "y": 770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", - "width": 70, - "x": -1890, - "y": 700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", - "width": 70, - "x": -1890, - "y": 840, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", - "width": 70, - "x": -1680, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", - "width": 70, - "x": -1820, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", - "width": 70, - "x": -1610, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", - "width": 70, - "x": -1750, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", - "width": 770, - "x": -1820, - "y": 280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", - "width": 70, - "x": -1470, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", - "width": 70, - "x": -1540, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", - "width": 70, - "x": -1400, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", - "width": 70, - "x": -1260, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", - "width": 70, - "x": -1330, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", - "width": 70, - "x": -1120, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", - "width": 70, - "x": -1190, - "y": 840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", - "width": 70, - "x": -1960, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", - "width": 70, - "x": -1960, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", - "width": 70, - "x": -1960, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", - "width": 70, - "x": -1960, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", - "width": 70, - "x": -1960, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", - "width": 70, - "x": -2000, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", - "width": 70, - "x": -1930, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", - "width": 70, - "x": -1960, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", - "width": 70, - "x": -1960, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", - "width": 70, - "x": -1960, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", - "width": 70, - "x": -1890, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", - "width": 70, - "x": -1820, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", - "width": 70, - "x": -1750, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", - "width": 70, - "x": -980, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", - "width": 70, - "x": -2100, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", - "width": 70, - "x": -2030, - "y": 560, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", - "width": 70, - "x": -2030, - "y": 630, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", - "width": 70, - "x": -2030, - "y": 700, - "zOrder": 26, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", - "width": 70, - "x": -2940, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", - "width": 70, - "x": -2800, - "y": 2450, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", - "width": 70, - "x": -1120, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", - "width": 70, - "x": -560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", - "width": 70, - "x": -490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", - "width": 70, - "x": -420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", - "width": 70, - "x": -910, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", - "width": 70, - "x": -840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", - "width": 70, - "x": -770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", - "width": 70, - "x": -700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", - "width": 70, - "x": -630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", - "width": 70, - "x": -980, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", - "width": 70, - "x": -1050, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", - "width": 70, - "x": 140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", - "width": 70, - "x": 210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", - "width": 70, - "x": 280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", - "width": 70, - "x": -210, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", - "width": 70, - "x": -140, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", - "width": 70, - "x": -70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", - "width": 70, - "x": 0, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", - "width": 70, - "x": 70, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", - "width": 70, - "x": -280, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", - "width": 70, - "x": -350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", - "width": 70, - "x": 840, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", - "width": 70, - "x": 490, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", - "width": 70, - "x": 560, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", - "width": 70, - "x": 630, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", - "width": 70, - "x": 700, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", - "width": 70, - "x": 770, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", - "width": 70, - "x": 420, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", - "width": 70, - "x": 350, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", - "width": 70, - "x": -1120, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", - "width": 70, - "x": -560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", - "width": 70, - "x": -490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", - "width": 70, - "x": -420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": true, - "name": "sand", - "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", - "width": 70, - "x": -910, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", - "width": 70, - "x": -840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", - "width": 70, - "x": -770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", - "width": 70, - "x": -700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", - "width": 70, - "x": -630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", - "width": 70, - "x": -980, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", - "width": 70, - "x": -1050, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", - "width": 70, - "x": 140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", - "width": 70, - "x": 210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", - "width": 70, - "x": 280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", - "width": 70, - "x": -210, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", - "width": 70, - "x": -140, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", - "width": 70, - "x": -70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", - "width": 70, - "x": 0, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", - "width": 70, - "x": 70, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", - "width": 70, - "x": -280, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", - "width": 70, - "x": -350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", - "width": 70, - "x": 840, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", - "width": 70, - "x": 490, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", - "width": 70, - "x": 560, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", - "width": 70, - "x": 630, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", - "width": 70, - "x": 700, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", - "width": 70, - "x": 770, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", - "width": 70, - "x": 420, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", - "width": 70, - "x": 350, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", - "width": 70, - "x": -1120, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", - "width": 70, - "x": -1050, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", - "width": 70, - "x": -1050, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", - "width": 70, - "x": -1050, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", - "width": 70, - "x": -1050, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", - "width": 70, - "x": -980, - "y": -210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", - "width": 70, - "x": -980, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", - "width": 70, - "x": -980, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", - "width": 70, - "x": -980, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", - "width": 70, - "x": -1120, - "y": -140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", - "width": 70, - "x": -1120, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", - "width": 70, - "x": -1120, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", - "width": 70, - "x": -2590, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", - "width": 70, - "x": -2520, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", - "width": 70, - "x": -2450, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", - "width": 70, - "x": -2940, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", - "width": 70, - "x": -2870, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", - "width": 70, - "x": -2800, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", - "width": 70, - "x": -2730, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", - "width": 70, - "x": -2660, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", - "width": 70, - "x": -3010, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", - "width": 70, - "x": -3080, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b1ba355-0033-479e-8410-4423a7ecd076", - "width": 70, - "x": -1890, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", - "width": 70, - "x": -1820, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", - "width": 70, - "x": -1750, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", - "width": 70, - "x": -2240, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", - "width": 70, - "x": -2170, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", - "width": 70, - "x": -2100, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", - "width": 70, - "x": -2030, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", - "width": 70, - "x": -1960, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", - "width": 70, - "x": -2310, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", - "width": 70, - "x": -2380, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", - "width": 70, - "x": -1190, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", - "width": 70, - "x": -1540, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", - "width": 70, - "x": -1470, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", - "width": 70, - "x": -1400, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", - "width": 70, - "x": -1330, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", - "width": 70, - "x": -1260, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", - "width": 70, - "x": -1610, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", - "width": 70, - "x": -1680, - "y": 0, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", - "width": 70, - "x": -2590, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", - "width": 70, - "x": -2520, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", - "width": 70, - "x": -2450, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", - "width": 70, - "x": -2940, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", - "width": 70, - "x": -2870, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", - "width": 70, - "x": -2800, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", - "width": 70, - "x": -2730, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", - "width": 70, - "x": -2660, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", - "width": 70, - "x": -3010, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", - "width": 70, - "x": -3080, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "45636fe2-fce7-4718-b188-2f8eff773926", - "width": 70, - "x": -1890, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", - "width": 70, - "x": -1820, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", - "width": 70, - "x": -1750, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", - "width": 70, - "x": -2240, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", - "width": 70, - "x": -2170, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", - "width": 70, - "x": -2100, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", - "width": 70, - "x": -2030, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", - "width": 70, - "x": -1960, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", - "width": 70, - "x": -2310, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", - "width": 70, - "x": -2380, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", - "width": 70, - "x": -1190, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", - "width": 70, - "x": -1540, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", - "width": 70, - "x": -1470, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", - "width": 70, - "x": -1400, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", - "width": 70, - "x": -1330, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", - "width": 70, - "x": -1260, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", - "width": 70, - "x": -1610, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", - "width": 70, - "x": -1680, - "y": -70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", - "width": 70, - "x": -3080, - "y": 840, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", - "width": 70, - "x": -3080, - "y": 910, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", - "width": 70, - "x": -3080, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", - "width": 70, - "x": -3080, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", - "width": 70, - "x": -3080, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", - "width": 70, - "x": -3080, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", - "width": 70, - "x": -3080, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", - "width": 70, - "x": -3080, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", - "width": 70, - "x": -3080, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", - "width": 70, - "x": -3080, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", - "width": 70, - "x": -3080, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", - "width": 70, - "x": -3080, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", - "width": 70, - "x": -3080, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", - "width": 70, - "x": -3080, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", - "width": 70, - "x": -3080, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", - "width": 70, - "x": -3080, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", - "width": 70, - "x": -3080, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", - "width": 70, - "x": -3080, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", - "width": 70, - "x": -3080, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", - "width": 70, - "x": -3080, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", - "width": 70, - "x": -3080, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", - "width": 70, - "x": -3080, - "y": 70, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", - "width": 70, - "x": -3080, - "y": 140, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", - "width": 70, - "x": -3080, - "y": 210, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", - "width": 70, - "x": -3080, - "y": 280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6cb0e950-9a8c-496d-bd67-774e75c04418", - "width": 70, - "x": -3080, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6d9dab9c-63ce-4922-9e02-ff6c19188008", - "width": 70, - "x": -3080, - "y": 420, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", - "width": 70, - "x": -3080, - "y": 490, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", - "width": 70, - "x": -3080, - "y": 560, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "62a4a047-24c1-487f-87bd-df3881885551", - "width": 70, - "x": -3080, - "y": 630, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", - "width": 70, - "x": -3080, - "y": 700, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd831170-7ea4-422e-b57f-c6feaa014ba7", - "width": 70, - "x": -3080, - "y": 770, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", - "width": 70, - "x": 1470, - "y": -210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", - "width": 70, - "x": 1470, - "y": -140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", - "width": 70, - "x": 910, - "y": -210, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", - "width": 70, - "x": 910, - "y": -140, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", - "width": 70, - "x": 1190, - "y": -210, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", - "width": 70, - "x": 1190, - "y": -280, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "flame_thrower_fire", - "persistentUuid": "28a74c98-359a-4215-ab03-e9e261d13ee6", - "width": 0, - "x": 350, - "y": 1400, - "zOrder": 1239, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "50d7b1de-96a1-4f71-b957-e20768dc708d", - "width": 70, - "x": 1540, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", - "width": 70, - "x": 1610, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", - "width": 70, - "x": 1540, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", - "width": 70, - "x": 1610, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "name": "gun4", - "persistentUuid": "e3d8ea57-8d05-4c0e-9db6-8b316d24b503", - "width": 0, - "x": 154, - "y": 1289, - "zOrder": 1240, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ammo", - "persistentUuid": "0ac23ea7-fd4d-4558-8625-f1846c824a5b", - "width": 0, - "x": -140, - "y": 1330, - "zOrder": 1241, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "crossair", - "persistentUuid": "3ef2ea28-0138-453d-99de-f457f24e58f5", - "width": 0, - "x": 0, - "y": 1190, - "zOrder": 1242, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "GUI", - "locked": false, - "name": "reloading", - "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 1243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "door4", - "persistentUuid": "ae1505bc-1af2-4d85-adcb-edc32b757a0a", - "width": 220, - "x": -1260, - "y": 1960, - "zOrder": 1244, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "door4", - "persistentUuid": "a90ae9b0-79ac-47d0-8faf-2c8eacc1b2c2", - "width": 220, - "x": -1260, - "y": 1330, - "zOrder": 1244, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "door5", - "persistentUuid": "db4b45ff-7954-43bc-ad4d-d5ea8b3b6e75", - "width": 210, - "x": -2450, - "y": 900, - "zOrder": 1245, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "379055e1-4277-4112-a273-ca7a8e7b1b58", - "width": 70, - "x": -1820, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", - "width": 70, - "x": -1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", - "width": 70, - "x": -1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", - "width": 70, - "x": -1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", - "width": 70, - "x": -1820, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", - "width": 70, - "x": -1820, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", - "width": 70, - "x": -1820, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", - "width": 70, - "x": -1820, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", - "width": 70, - "x": -1820, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", - "width": 70, - "x": -1820, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", - "width": 70, - "x": -1820, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", - "width": 70, - "x": -1820, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", - "width": 70, - "x": -1820, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", - "width": 70, - "x": -1820, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", - "width": 70, - "x": -1820, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", - "width": 70, - "x": -1820, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", - "width": 70, - "x": -1820, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", - "width": 70, - "x": -1890, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", - "width": 70, - "x": -1890, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "14a6d93c-17cc-4c5f-8681-b463151e8b89", - "width": 70, - "x": -1890, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "32892402-1801-48b8-aeb9-8712ed98ce38", - "width": 70, - "x": -1890, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "31150f68-fa1a-4aad-b3bd-63963073e0b8", - "width": 70, - "x": -1890, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", - "width": 70, - "x": -1890, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", - "width": 70, - "x": -1890, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", - "width": 70, - "x": -1890, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", - "width": 70, - "x": -1890, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", - "width": 70, - "x": -1890, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", - "width": 70, - "x": -1890, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", - "width": 70, - "x": -1890, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", - "width": 70, - "x": -1890, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", - "width": 70, - "x": -1890, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", - "width": 70, - "x": -1890, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", - "width": 70, - "x": -1890, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", - "width": 70, - "x": -1890, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", - "width": 70, - "x": -1750, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a248f1d0-1ff3-4bef-acba-dec57fc60107", - "width": 70, - "x": -1750, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0452f3da-94cc-46a1-aa88-a54962bec1c3", - "width": 70, - "x": -1750, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f1c0d321-6422-45bf-a32c-37156a882fe9", - "width": 70, - "x": -1750, - "y": 1330, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", - "width": 70, - "x": -1750, - "y": 1400, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", - "width": 70, - "x": -1750, - "y": 1470, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", - "width": 70, - "x": -1750, - "y": 1540, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", - "width": 70, - "x": -1750, - "y": 1610, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", - "width": 70, - "x": -1750, - "y": 1680, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", - "width": 70, - "x": -1750, - "y": 1750, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", - "width": 70, - "x": -1750, - "y": 1820, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", - "width": 70, - "x": -1750, - "y": 1890, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", - "width": 70, - "x": -1750, - "y": 1960, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", - "width": 70, - "x": -1750, - "y": 2030, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", - "width": 70, - "x": -1750, - "y": 2100, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", - "width": 70, - "x": -1750, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", - "width": 70, - "x": -1750, - "y": 1050, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", - "width": 70, - "x": -1890, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", - "width": 70, - "x": -1750, - "y": 980, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", - "width": 70, - "x": -1820, - "y": 2170, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", - "width": 70, - "x": -1750, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", - "width": 70, - "x": -1820, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", - "width": 70, - "x": -1890, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", - "width": 70, - "x": -770, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", - "width": 70, - "x": -840, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", - "width": 70, - "x": -910, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", - "width": 70, - "x": -560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", - "width": 70, - "x": -630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", - "width": 70, - "x": -700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", - "width": 70, - "x": 140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", - "width": 70, - "x": -420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", - "width": 70, - "x": -490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", - "width": 70, - "x": 630, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", - "width": 70, - "x": -280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", - "width": 70, - "x": -350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", - "width": 70, - "x": 560, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", - "width": 70, - "x": 700, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", - "width": 70, - "x": 210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", - "width": 70, - "x": 350, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", - "width": 70, - "x": 420, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", - "width": 70, - "x": -70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", - "width": 70, - "x": -140, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", - "width": 70, - "x": -210, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", - "width": 70, - "x": 0, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", - "width": 70, - "x": 280, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", - "width": 70, - "x": 70, - "y": 350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "gun5", - "persistentUuid": "20766923-9466-4ff2-a793-d64a75da31f7", - "width": 0, - "x": 70, - "y": 1610, - "zOrder": 1246, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "ammo", - "persistentUuid": "4ef41487-1e41-403b-a2f4-f786280a493f", - "width": 0, - "x": -140, - "y": 1470, - "zOrder": 1247, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "mele1", - "persistentUuid": "457e4317-ece4-45d3-bf96-708ab93d5b4d", - "width": 0, - "x": 210, - "y": 1610, - "zOrder": 1248, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "energy", - "persistentUuid": "34696f8a-c031-467a-bffd-889118b6d90f", - "width": 0, - "x": -70, - "y": 1470, - "zOrder": 1249, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "Wheel_info", - "persistentUuid": "539a6f1b-b450-4262-8663-6b83b88a20f9", - "width": 0, - "x": 0, - "y": 560, - "zOrder": 1250, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", - "width": 700, - "x": 2030, - "y": 70, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", - "width": 630, - "x": 1960, - "y": 1050, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "deco", - "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", - "width": 210, - "x": 1750, - "y": -210, - "zOrder": 1252, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "deco", - "persistentUuid": "288f8d6b-d873-441f-96ad-59d5c5716e5f", - "width": 210, - "x": 2100, - "y": -210, - "zOrder": 1252, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", - "width": 70, - "x": 2030, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", - "width": 70, - "x": 2100, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", - "width": 70, - "x": 2170, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", - "width": 70, - "x": 1680, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", - "width": 70, - "x": 1750, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", - "width": 70, - "x": 1820, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", - "width": 70, - "x": 1890, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", - "width": 70, - "x": 1960, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", - "width": 70, - "x": 2730, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", - "width": 70, - "x": 2800, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", - "width": 70, - "x": 2870, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", - "width": 70, - "x": 2380, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", - "width": 70, - "x": 2450, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", - "width": 70, - "x": 2520, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", - "width": 70, - "x": 2590, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", - "width": 70, - "x": 2660, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", - "width": 70, - "x": 2310, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", - "width": 70, - "x": 2240, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", - "width": 70, - "x": 3010, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", - "width": 70, - "x": 2940, - "y": -280, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", - "width": 70, - "x": 2030, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", - "width": 70, - "x": 2100, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", - "width": 70, - "x": 2170, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", - "width": 70, - "x": 1680, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", - "width": 70, - "x": 1750, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", - "width": 70, - "x": 1820, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", - "width": 70, - "x": 1890, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", - "width": 70, - "x": 1960, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", - "width": 70, - "x": 2730, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", - "width": 70, - "x": 2800, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", - "width": 70, - "x": 2870, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", - "width": 70, - "x": 2380, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", - "width": 70, - "x": 2450, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", - "width": 70, - "x": 2520, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", - "width": 70, - "x": 2590, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", - "width": 70, - "x": 2660, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", - "width": 70, - "x": 2310, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", - "width": 70, - "x": 2240, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", - "width": 70, - "x": 3010, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", - "width": 70, - "x": 2940, - "y": -350, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", - "width": 0, - "x": 3010, - "y": -294, - "zOrder": 124, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", - "width": 70, - "x": 2060, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", - "width": 70, - "x": 1990, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", - "width": 70, - "x": 1920, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", - "width": 70, - "x": 1850, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", - "width": 70, - "x": 1780, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", - "width": 70, - "x": 1710, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", - "width": 70, - "x": 3040, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", - "width": 70, - "x": 3040, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", - "width": 70, - "x": 3040, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", - "width": 70, - "x": 3040, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", - "width": 70, - "x": 3040, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", - "width": 70, - "x": 2970, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", - "width": 70, - "x": 2900, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", - "width": 70, - "x": 2830, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", - "width": 70, - "x": 2760, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", - "width": 70, - "x": 2690, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", - "width": 70, - "x": 2620, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", - "width": 70, - "x": 2550, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", - "width": 70, - "x": 2480, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "19e3a51d-cd4f-4972-a731-740e67a4f346", - "width": 70, - "x": 2410, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", - "width": 70, - "x": 2340, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", - "width": 70, - "x": 2270, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", - "width": 70, - "x": 2200, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", - "width": 70, - "x": 2130, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", - "width": 70, - "x": 3040, - "y": 310, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", - "width": 70, - "x": 3040, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", - "width": 70, - "x": 3040, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", - "width": 70, - "x": 3040, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", - "width": 70, - "x": 3040, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", - "width": 70, - "x": 3040, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", - "width": 70, - "x": 3040, - "y": 450, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", - "width": 70, - "x": 3040, - "y": 380, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", - "width": 70, - "x": 2970, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", - "width": 70, - "x": 3040, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", - "width": 70, - "x": 3040, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", - "width": 70, - "x": 3040, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", - "width": 70, - "x": 2410, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", - "width": 70, - "x": 2550, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", - "width": 70, - "x": 2480, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", - "width": 70, - "x": 2620, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", - "width": 70, - "x": 2690, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", - "width": 70, - "x": 2760, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", - "width": 70, - "x": 2830, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8e2ba7b4-f596-476a-b807-7d65aa6abe8f", - "width": 70, - "x": 2900, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", - "width": 70, - "x": 2060, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", - "width": 70, - "x": 2130, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", - "width": 70, - "x": 2200, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", - "width": 70, - "x": 2270, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", - "width": 70, - "x": 2340, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", - "width": 70, - "x": 1990, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", - "width": 70, - "x": 1640, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", - "width": 70, - "x": 1850, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", - "width": 70, - "x": 1920, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", - "width": 70, - "x": 1710, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", - "width": 70, - "x": 1780, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", - "width": 70, - "x": 1640, - "y": 170, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", - "width": 70, - "x": 1640, - "y": 240, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", - "width": 70, - "x": 1640, - "y": 730, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", - "width": 70, - "x": 1640, - "y": 660, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", - "width": 70, - "x": 1640, - "y": 520, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", - "width": 70, - "x": 1640, - "y": -110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "918c82da-54ca-4050-86d4-559f0e59f70e", - "width": 70, - "x": 1640, - "y": -180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", - "width": 70, - "x": 1640, - "y": -250, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", - "width": 70, - "x": 1640, - "y": 30, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", - "width": 70, - "x": 1640, - "y": -40, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", - "width": 70, - "x": 1640, - "y": 100, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", - "width": 70, - "x": 2900, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", - "width": 70, - "x": 2410, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", - "width": 70, - "x": 2550, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", - "width": 70, - "x": 2480, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", - "width": 70, - "x": 2620, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", - "width": 70, - "x": 2690, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", - "width": 70, - "x": 2760, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ab9cc8fd-48a5-40d0-a745-2437631ec85f", - "width": 70, - "x": 2830, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", - "width": 70, - "x": 2060, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", - "width": 70, - "x": 2130, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", - "width": 70, - "x": 2200, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", - "width": 70, - "x": 2270, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", - "width": 70, - "x": 2340, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", - "width": 70, - "x": 1990, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", - "width": 70, - "x": 1850, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", - "width": 70, - "x": 1920, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", - "width": 70, - "x": 1710, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", - "width": 70, - "x": 1780, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", - "width": 70, - "x": 2900, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", - "width": 70, - "x": 2900, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", - "width": 70, - "x": 2900, - "y": 1220, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", - "width": 70, - "x": 2900, - "y": 1150, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", - "width": 70, - "x": 2900, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", - "width": 70, - "x": 2900, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", - "width": 70, - "x": 2900, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", - "width": 70, - "x": 2900, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", - "width": 70, - "x": 2900, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", - "width": 70, - "x": 2900, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", - "width": 70, - "x": 2900, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7fa497d3-5121-4e0b-84b6-4e12c1c44d66", - "width": 70, - "x": 2900, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9a771218-d4ea-406d-b2dd-fd7351bc23ea", - "width": 70, - "x": 2900, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2dbca21b-5e6b-4d4d-8976-aaea8703eeb3", - "width": 70, - "x": 1640, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "703fdde6-2050-4fa4-856e-b85284f6996e", - "width": 70, - "x": 1640, - "y": 1570, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1478f30b-7503-461e-9ea5-9decf73fcf4c", - "width": 70, - "x": 1640, - "y": 1500, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "da452c08-2e23-44dd-8b98-e5aa754e47c7", - "width": 70, - "x": 1640, - "y": 1430, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f220f293-81e3-4013-b477-29fdca91c690", - "width": 70, - "x": 1640, - "y": 1640, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ddd9a7ed-4293-43b7-8543-1de0cbbce567", - "width": 70, - "x": 1640, - "y": 940, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cf9eb196-e355-47a8-b46f-746d74a1b86e", - "width": 70, - "x": 1640, - "y": 870, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "18c5aa67-40c3-41ab-b783-21df9b0c7050", - "width": 70, - "x": 1640, - "y": 800, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "438d72bd-c8a0-46f4-bb07-856674079261", - "width": 70, - "x": 1640, - "y": 1010, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "27ef65da-eded-43f3-94b5-10d769e8a421", - "width": 70, - "x": 1640, - "y": 1290, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4ec95727-e908-4bd3-b387-7a088f2d76a4", - "width": 70, - "x": 1640, - "y": 1080, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "f0ff9cf6-97fa-41f2-bb18-18861c2b9dfb", - "width": 70, - "x": 1820, - "y": 1190, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "daf91861-b6ba-4e1e-a176-748bb2dd6a52", - "width": 70, - "x": 1820, - "y": 1260, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2fccca62-a84e-472b-b954-9bee063c2a6f", - "width": 70, - "x": 1820, - "y": 1120, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "Fences", - "persistentUuid": "aac11c90-9d76-4193-9c07-10ab73620297", - "width": 70, - "x": 1640, - "y": 1360, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "Fences", - "persistentUuid": "29692a65-4d8c-43cc-b44a-240bcb386887", - "width": 70, - "x": 1640, - "y": 590, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "foliage", - "persistentUuid": "35369171-dcf7-4add-919a-c77646405910", - "width": 140, - "x": 3010, - "y": 70, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "08268a92-32f8-43da-a699-95806c75b214", - "width": 140, - "x": 3010, - "y": 280, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "89edcecc-0111-4d07-b7dc-cd4e5c4c1943", - "width": 140, - "x": 3010, - "y": 490, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -81, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "3721e960-fc06-4ba7-89ca-d4c77402b696", - "width": 140, - "x": 3010, - "y": 700, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "081fc014-41e5-4cdf-908d-f642704a7c65", - "width": 140, - "x": 3010, - "y": -140, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -27, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "72b4108f-25e7-4de8-bed5-d77c85a9dd58", - "width": 140, - "x": 2800, - "y": -140, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 38, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "80b69df7-87de-4c9e-9378-6705e93a9dd0", - "width": 140, - "x": 2520, - "y": -140, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", - "width": 420, - "x": 1120, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 770, - "layer": "", - "locked": true, - "name": "roof_tops", - "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", - "width": 770, - "x": 140, - "y": 2240, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "db30fcc8-72c4-416e-a867-1bb4e3623c66", - "width": 420, - "x": 1120, - "y": 2660, - "zOrder": 1251, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", - "width": 70, - "x": 730, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f03cd06d-d1e8-40a7-be2e-f711eada215b", - "width": 70, - "x": 870, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4c4520ac-dcc7-46fc-9a06-d2f0f53d7b4c", - "width": 70, - "x": 800, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "db19dc14-1100-4578-a295-c698ec22f654", - "width": 70, - "x": 940, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a744f5d3-ad1b-4834-bcf0-a373a2aa47d3", - "width": 70, - "x": 1010, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "df28d3f4-1b4a-4456-bdff-106006d1949d", - "width": 70, - "x": 1080, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ffa6d047-cf0c-4235-a922-5e840460bf66", - "width": 70, - "x": 1150, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d7c9abdd-33b9-4c21-9db1-5a241036e7d4", - "width": 70, - "x": 380, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8a3acc38-b2fb-4af6-bcb8-4cff087b89a2", - "width": 70, - "x": 450, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "535b6aea-b142-4dfc-ab34-7b70067f8ebc", - "width": 70, - "x": 520, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b2c87575-c14b-4f69-8043-c74e4988a5d6", - "width": 70, - "x": 590, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "51ce2a94-fccf-434a-a35e-db676fa2cf9b", - "width": 70, - "x": 660, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1f6240f8-353e-45a2-b4c1-0327c4a1c0a0", - "width": 70, - "x": 310, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "75e8953f-a21a-4e82-9a7e-3bf0703efbe0", - "width": 70, - "x": 170, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "664c2efb-60b0-4c55-9f50-c2a0aa2e6f06", - "width": 70, - "x": 240, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "b60b773a-27b2-4e6c-93b4-8a299aa56ac3", - "width": 70, - "x": 30, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c7173c46-3789-49f8-8fe8-f66b78aedb3c", - "width": 70, - "x": 100, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "758827aa-6243-4d66-bd23-0f33d8e83444", - "width": 70, - "x": -40, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "4ee0c84f-f0c2-4532-a197-808f7e994298", - "width": 70, - "x": 1640, - "y": 2410, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "fee1dd8d-c255-4958-81eb-34ed9cc976d4", - "width": 70, - "x": 1640, - "y": 2340, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dbcfe7c0-5ba0-4435-9139-df2b5ffeac6b", - "width": 70, - "x": 1640, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ea82cddb-ac13-4c1d-8285-58e07a9dd129", - "width": 70, - "x": 1640, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "138a6def-b202-4c3f-8457-26f694ffe0b8", - "width": 70, - "x": 1640, - "y": 2690, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c9249796-de6c-444c-9633-c0c036e74644", - "width": 70, - "x": 1640, - "y": 2620, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5689059c-8816-4f90-ad45-e4b87ecae9fe", - "width": 70, - "x": 1640, - "y": 2550, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ec8edcc8-0b1b-460c-b89e-e05ba1463374", - "width": 70, - "x": 1640, - "y": 2480, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "26c03c8d-60af-4858-8c38-1cdd099ce62b", - "width": 70, - "x": 1640, - "y": 2970, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a66054ae-0246-4618-ac82-4ee578692086", - "width": 70, - "x": 1640, - "y": 2900, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "074bf4ff-bf6c-429d-9c31-387ee9f83395", - "width": 70, - "x": 1640, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a0f87fbc-9e0d-494d-abac-ffbaf5ea47cf", - "width": 70, - "x": 1640, - "y": 2760, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "003cd580-aade-47c1-a2df-db399e302c27", - "width": 70, - "x": 1640, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3bfa7108-442c-41a0-af7e-86dcaf05b69c", - "width": 70, - "x": 1640, - "y": 3110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "db39049c-ff66-48e2-a98b-e5246c9bab2b", - "width": 70, - "x": 1640, - "y": 3040, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2b457b59-a8c3-462a-9b3d-1ab0acffd720", - "width": 70, - "x": 1220, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "60287c70-e7c0-4b3b-9874-dbe61be12c06", - "width": 70, - "x": 1290, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2e56e3f5-b9e0-4f4e-b179-cb51a85003b6", - "width": 70, - "x": 1360, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a14bbb22-3457-42e4-8151-6d478cfc36ba", - "width": 70, - "x": 1430, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6a28a485-b5d6-419d-81c2-e2ed69cfb0df", - "width": 70, - "x": 1500, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c17a0093-b97c-47aa-a638-9fbb0f4cab15", - "width": 70, - "x": 1570, - "y": 3180, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "747cb77b-f5c4-4ff8-ad53-c842d40f3abf", - "width": 70, - "x": -40, - "y": 2480, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e4ccf47e-8584-4ffc-9df3-3b9218f3a566", - "width": 70, - "x": -40, - "y": 2410, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "45bcee2b-7b28-4117-887a-038572e454e9", - "width": 70, - "x": -40, - "y": 2340, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6dc8fa62-6545-4293-8fb5-5c360836d5b2", - "width": 70, - "x": -40, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dd979be9-1dd6-461d-b490-60e608ff3aee", - "width": 70, - "x": -40, - "y": 2760, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ba972223-5331-48f4-87a7-4076ede13dc9", - "width": 70, - "x": -40, - "y": 2690, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "35a53d64-17b0-4726-a956-5b565492b321", - "width": 70, - "x": -40, - "y": 2620, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5ae70e97-c405-46ea-aae5-7f504698f6cc", - "width": 70, - "x": -40, - "y": 2550, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "98e19e2b-7048-4adc-9633-91e95182b93d", - "width": 70, - "x": -40, - "y": 3040, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "de084cd6-25bc-45f0-9fbc-b4bf80f72dda", - "width": 70, - "x": -40, - "y": 2970, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "1bccf72a-3a8a-4f48-b4b8-5415cb79826c", - "width": 70, - "x": -40, - "y": 2900, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9898dcb0-d207-4f3a-bbbc-c2dd89f66586", - "width": 70, - "x": -40, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "829c963f-15e1-4ac1-add3-da88cc2cad2e", - "width": 70, - "x": -40, - "y": 3110, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e64e9f3e-0a39-4928-8f3f-3b067001ce70", - "width": 70, - "x": -40, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "db0ef6fc-93fd-4a1a-b54f-1fd0d4bf6350", - "width": 70, - "x": -40, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3f29cf5d-8a39-4a50-8ff9-3ce5069a0513", - "width": 70, - "x": -40, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "269cb788-212d-4b6d-a564-9c1b13d3e877", - "width": 70, - "x": -40, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "26d4094a-25a1-4c0d-aa06-dade9878b5a1", - "width": 70, - "x": 590, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a988f5ea-f8e0-45f5-9544-4e14f5ccfd7b", - "width": 70, - "x": 730, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e08c5d0c-1826-488f-9b64-dd31703fdf3d", - "width": 70, - "x": 660, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "88e6dfd1-a4b1-44b5-a0d3-642da1455ec9", - "width": 70, - "x": 800, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2e6f2410-f832-4631-85a0-07d6eeb4e464", - "width": 70, - "x": 870, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "460977dc-3446-44db-ab0f-0d223866b051", - "width": 70, - "x": 940, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7608ee28-9760-490c-8d94-f94fad504325", - "width": 70, - "x": 1010, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "da5cdf80-61b2-4ffd-94e3-61c86760f39c", - "width": 70, - "x": 240, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "011b9989-045d-4a30-9cfe-b01abd000d82", - "width": 70, - "x": 310, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "379a55a7-ea5c-4836-a9e9-0874d09f08ff", - "width": 70, - "x": 380, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0dbf86dc-38c8-45a7-8330-ace138b4edb8", - "width": 70, - "x": 170, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3c714d1a-036c-4606-ae34-b828eb71fd63", - "width": 70, - "x": 30, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "25eb6718-695c-4f16-982d-2b5638c5fa20", - "width": 70, - "x": 100, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "56adb359-6c0d-4cac-a58f-e27cd140e27f", - "width": 70, - "x": 1080, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5c2206fd-4293-4567-94f7-fe5cd158125e", - "width": 70, - "x": 1640, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ec0c55d6-9094-4adc-aa22-8b3ac0296bf3", - "width": 70, - "x": 1640, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "659684c4-2f45-46b0-a21a-a06fc3a9760e", - "width": 70, - "x": 1640, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "3c363a86-8994-4bd7-9b60-0e0bb1a310d6", - "width": 70, - "x": 1430, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f6c107b1-1f6a-4db1-896f-15f0b574fefa", - "width": 70, - "x": 1500, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f9835191-ac46-4d0e-aff6-2b3eb6688515", - "width": 70, - "x": 1570, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "f4fc9e52-7596-4aaa-8ad0-4987f7d1b592", - "width": 70, - "x": 1290, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a97989da-7671-4fa1-9216-a619c494f7ec", - "width": 70, - "x": 1360, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "a8333718-b610-4507-a25a-af6f50753590", - "width": 70, - "x": 1220, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "41d98456-46f2-47e1-822a-de6fc87fa557", - "width": 70, - "x": 1150, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "foliage", - "persistentUuid": "5f863ce2-76d6-4612-8531-0e72e902ace3", - "width": 140, - "x": 70, - "y": 3150, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -81, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "foliage", - "persistentUuid": "46116a74-c82b-489a-8722-14e8fc84c6cc", - "width": 140, - "x": 1610, - "y": 2100, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -26, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "659e0f50-c913-4b0e-b434-17a61be34adb", - "width": 140, - "x": 1330, - "y": 2100, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 11, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "foliage", - "persistentUuid": "45d62f23-766f-4d53-83e0-679075519a57", - "width": 140, - "x": 70, - "y": 2100, - "zOrder": 116, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e7271123-185b-4768-8c90-5c0941efa8a6", - "width": 70, - "x": 2410, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "c1a4d02e-52a4-432e-b3f9-73bdd865f5e9", - "width": 70, - "x": 2550, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e7c9af17-d2d9-401c-82e1-25a4fe11322f", - "width": 70, - "x": 2480, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2716921d-3646-460b-a3a3-94aac43e3bf9", - "width": 70, - "x": 2620, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9370535f-d80e-431a-9581-de61f2017ed6", - "width": 70, - "x": 2060, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "19dcd4a6-3f64-4558-a745-6af2aba38268", - "width": 70, - "x": 2130, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "20689c2c-5670-485e-a31e-c7009ed56f56", - "width": 70, - "x": 2200, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "dbff8b92-147e-412f-9187-347ed57b66e5", - "width": 70, - "x": 2270, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "2dfd74b5-524b-4452-9b4a-f952f492bf96", - "width": 70, - "x": 2340, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "bb1e818d-553b-455f-aa66-6f128f7012bb", - "width": 70, - "x": 1990, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "9b83ddba-24b5-4848-9e28-6d379bccb56f", - "width": 70, - "x": 1850, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "84e2b3f6-cd43-40a7-a4fe-cd492d3e214b", - "width": 70, - "x": 1920, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ff742666-d22c-4909-9900-fbb47748bf59", - "width": 70, - "x": 1710, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "0ddb1721-e496-4021-ad68-fa1c978e9d6a", - "width": 70, - "x": 1780, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ba9b2e79-f806-4a17-9dc5-bc151b2d68f1", - "width": 70, - "x": 2900, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "49b551a4-aca8-49dc-b092-d9ca7987b587", - "width": 70, - "x": 2690, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "d5cb869c-bc86-4f9c-9378-9ac312629f91", - "width": 70, - "x": 2760, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "806686c5-3bec-4691-a9b1-4fbbd64f7ee0", - "width": 70, - "x": 2830, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "e8bd910e-23b4-43c5-bd6f-e17a517d8d05", - "width": 70, - "x": 2900, - "y": 2200, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "cd0f45fc-6abc-40fd-a70c-020e28e6d63b", - "width": 70, - "x": 2900, - "y": 2130, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "08ef7399-dece-40ff-837e-252019150802", - "width": 70, - "x": 2900, - "y": 2060, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "7d6c1c9f-0b96-4eca-818d-952f81cb9465", - "width": 70, - "x": 2900, - "y": 1990, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "45108584-2f3b-4bab-995b-062ad59ff9ea", - "width": 70, - "x": 2900, - "y": 2480, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "33511547-f08c-4d9c-b362-d5823875e180", - "width": 70, - "x": 2900, - "y": 2410, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5af4c433-0333-47fd-a7d7-0e89bbbd3a84", - "width": 70, - "x": 2900, - "y": 2340, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5b625785-9d13-4097-9214-cda61ec683ce", - "width": 70, - "x": 2900, - "y": 2270, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "8250ee98-d602-4797-8cef-19ee3c240e5b", - "width": 70, - "x": 2900, - "y": 1850, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "725eb193-5c27-4486-b8a3-2e2cfb574324", - "width": 70, - "x": 2900, - "y": 1780, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "6e5b1020-08a2-431e-b384-ffe5e2a00704", - "width": 70, - "x": 2900, - "y": 1920, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "04e3986e-c400-4087-8328-ce90c7d6110b", - "width": 70, - "x": 2900, - "y": 2690, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "ea44194f-7c82-4055-b779-69b3641adfc8", - "width": 70, - "x": 2900, - "y": 2620, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "168bbb2f-a430-4eb8-a6cc-18ab0f61476c", - "width": 70, - "x": 2900, - "y": 2550, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "47e24764-d82b-4fdb-8b77-e1553ac0bdee", - "width": 70, - "x": 2900, - "y": 2760, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5e61d5be-f3d6-4120-8870-ce819be954a0", - "width": 70, - "x": 2900, - "y": 1710, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Fences", - "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", - "width": 70, - "x": 1640, - "y": 2830, - "zOrder": 115, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": false, - "height": 0, - "layer": "", - "locked": false, - "name": "green_leaves_particle", - "persistentUuid": "cba4acd9-0250-47fe-8582-da0034598875", - "width": 0, - "x": 271, - "y": 1480, - "zOrder": 1253, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": false, - "name": "grass_tiled", - "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", - "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", - "width": 2100, - "x": -140, - "y": 3150, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": 1610, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "777c92fb-60f3-46a5-b9bb-94a4e4811763", - "width": 1330, - "x": 3430, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "ab5883e7-91fe-423b-9e50-60e6923316c1", - "width": 1400, - "x": 3290, - "y": 1190, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4200, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "6a9983d1-76fc-4cb3-8ac0-c0c55d2833a5", - "width": 2730, - "x": 2030, - "y": 3220, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3990, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "2871a858-baae-43a3-9f57-27b797501a60", - "width": 2170, - "x": -2520, - "y": 3430, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3850, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "f7208c4c-e8bf-47d8-9910-220c999149e9", - "width": 2380, - "x": -350, - "y": 3570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "be0a92ab-4beb-42b4-84b5-9557e8dc9cd5", - "width": 1960, - "x": -3290, - "y": -2030, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4130, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "4671ab70-670c-42bf-a96e-fd76783e6279", - "width": 2800, - "x": -6090, - "y": -2030, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5320, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "41b960e3-8961-4054-b07e-278bac1450c4", - "width": 6090, - "x": -9940, - "y": 2100, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": 4970, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "e583ab96-139f-4b62-945d-1665d25abd31", - "width": 70, - "x": -3500, - "y": 3640, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 4970, - "layer": "", - "locked": false, - "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": "", - "locked": true, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "road_block", - "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", - "width": 0, - "x": -3234, - "y": 7140, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "97e272ae-a2bc-4290-9264-9fcf06b3c12f", - "width": 0, - "x": -3234, - "y": 7350, - "zOrder": 12610, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9380, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "1fc8f346-14e4-4799-899b-b2e4f9af21c7", - "width": 10710, - "x": -5950, - "y": 7490, - "zOrder": -11, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "930d8410-02ba-4025-85d7-b947827d83e6", - "width": 280, - "x": -2800, - "y": 3710, - "zOrder": -22, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3920, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": 70, - "layer": "", - "locked": false, - "name": "concrete_1", - "persistentUuid": "dceff044-76d2-4e49-b8cc-3d79a6836608", - "width": 140, - "x": -2870, - "y": 7490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "concrete_1", - "persistentUuid": "690a7446-1bd7-4c30-b056-1a676743cda6", - "width": 140, - "x": -3640, - "y": 7490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3845, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "sand", - "persistentUuid": "35613c0c-25b5-4b14-a401-550b69b57c1e", - "width": 70, - "x": 560, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", - "width": 70, - "x": 630, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", - "width": 70, - "x": 420, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", - "width": 70, - "x": 490, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", - "width": 70, - "x": 350, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", - "width": 70, - "x": 210, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", - "width": 70, - "x": 280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", - "width": 70, - "x": 70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", - "width": 70, - "x": 140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", - "width": 70, - "x": 0, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", - "width": 70, - "x": -140, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", - "width": 70, - "x": -70, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", - "width": 70, - "x": -280, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", - "width": 70, - "x": 1960, - "y": 3360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", - "width": 70, - "x": 1820, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", - "width": 70, - "x": 1890, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", - "width": 70, - "x": 1750, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", - "width": 70, - "x": 1960, - "y": 3290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", - "width": 70, - "x": 1960, - "y": 3220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", - "width": 70, - "x": 1960, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b32bc620-2222-4888-a0ba-b142ceed1637", - "width": 70, - "x": 2030, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", - "width": 70, - "x": 2870, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", - "width": 70, - "x": 2660, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", - "width": 70, - "x": 2730, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", - "width": 70, - "x": 2590, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", - "width": 70, - "x": 2450, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", - "width": 70, - "x": 2520, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", - "width": 70, - "x": 2310, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", - "width": 70, - "x": 2380, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", - "width": 70, - "x": 2240, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", - "width": 70, - "x": 2100, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", - "width": 70, - "x": 2170, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", - "width": 70, - "x": 3010, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", - "width": 70, - "x": 3080, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", - "width": 70, - "x": 2940, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", - "width": 70, - "x": 3150, - "y": 3150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", - "width": 70, - "x": -2590, - "y": 3430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", - "width": 70, - "x": -2590, - "y": 3500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", - "width": 70, - "x": -2590, - "y": 3570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", - "width": 70, - "x": -2590, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", - "width": 70, - "x": -2800, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", - "width": 70, - "x": -2730, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", - "width": 70, - "x": -2660, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", - "width": 70, - "x": -3640, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", - "width": 70, - "x": -3780, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", - "width": 70, - "x": -3710, - "y": 3640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ae4a1b7-5728-491b-8a87-ac9741a0515a", - "width": 70, - "x": -2940, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "67bb2cf8-6e00-4539-b915-864b39972ba9", - "width": 7420, - "x": -2870, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "2380b077-57f4-4f85-985b-edece1ea5d09", - "width": 1820, - "x": -5320, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e75a96fe-c4dd-420a-be33-6b503223b2ef", - "width": 70, - "x": -3500, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3104eeec-a4c3-448f-add6-251f0c5858c5", - "width": 1890, - "x": -5320, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "46f37cf6-fd7d-4434-9fc7-8ac582c42a6b", - "width": 3920, - "x": -2940, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "29173b15-90b2-4d61-bf6c-80c32d0f3eaa", - "width": 140, - "x": -7420, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f0de4f6-45ed-458e-bc0b-209ec07e68db", - "width": 140, - "x": 770, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6090, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2ff3ae88-16fe-468d-99d8-3343a193dbdc", - "width": 140, - "x": 980, - "y": 8680, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "52e632c6-255d-40f8-b90a-0ea0d2cbe1b1", - "width": 2940, - "x": 1120, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "296f35ce-6afe-4db7-9398-fdce09d1fe09", - "width": 3850, - "x": -5250, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "be9e6e61-81cc-425b-a14b-a19081240566", - "width": 6090, - "x": -5320, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "8a41b0b9-bc9c-4551-b2a6-c748043cb90b", - "width": 70, - "x": 700, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e7610508-a853-43be-9e83-f168419cfcb9", - "width": 2940, - "x": 1120, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2100, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "82ff216b-c6a0-406a-990f-a6ee484f7c85", - "width": 70, - "x": 1120, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "a4ffc1cc-732c-471b-88e2-9deb3be90edf", - "width": 840, - "x": 1190, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6160, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0e7df6b1-716a-472e-9487-2294cc068011", - "width": 210, - "x": 4340, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 8610, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "047d664a-1c16-4ca5-828b-59ae125048a0", - "width": 70, - "x": 4550, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "2a464e87-5cb6-4293-8130-482f91745d02", - "width": 70, - "x": 4270, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "afcad52b-f352-427a-9357-62d7752769d4", - "width": 70, - "x": 910, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "153db9ef-9a20-4501-af18-dfd7337edfd6", - "width": 1820, - "x": -5180, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "ead64980-c236-420d-b2c4-73595e8b37fa", - "width": 3010, - "x": 1120, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "adaebfab-b04b-44ea-ad3a-63ae13e64b6e", - "width": 70, - "x": 3990, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c960ff4-fed9-419a-bfe4-0e46469118b5", - "width": 70, - "x": 700, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9590, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "46cb2037-8f61-4673-871a-f646bcc59ecb", - "width": 140, - "x": -7630, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "7e2739db-536e-4e71-9c8d-d3f76cf6c36b", - "width": 1400, - "x": -7630, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e34a5275-807d-40a2-8108-667b48a77acb", - "width": 70, - "x": -7280, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "007a5d0d-63c9-4f19-aa3e-ba3387ceea23", - "width": 70, - "x": 1120, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ed0a3532-5cf1-4776-aa79-b56546e1cdef", - "width": 70, - "x": -7700, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9590, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "5d89cdca-ffa7-4468-9531-b306c027e6ff", - "width": 70, - "x": -7700, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "4e19c4aa-9566-4499-89d6-b23e7b8ce722", - "width": 70, - "x": -7280, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3220, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "f6ad51a5-1b06-4ee1-b461-891bbfc1454d", - "width": 70, - "x": -7490, - "y": 9030, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "93cd8ef0-6e6b-4d30-a7a4-9e210592fcb6", - "width": 70, - "x": 4550, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "83165ee2-5905-42d0-a63b-b9966526dfe5", - "width": 3500, - "x": -2800, - "y": 14490, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "c54ca547-68cd-4c7c-8db3-4eb49c7577aa", - "width": 2450, - "x": -5250, - "y": 14490, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8b3d430f-ccd7-4d1c-8399-f8c97307e98f", - "width": 2450, - "x": -5320, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ac6c917d-9bba-4d83-84d6-d2b86856aa5b", - "width": 3780, - "x": -2870, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9cb0f226-d27f-4b7e-998d-bd207094bb6a", - "width": 3150, - "x": 1120, - "y": 14560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "29fdd567-6dc7-43c3-9bfa-7e1ba1ab8d7b", - "width": 6720, - "x": -5530, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a91c4f5c-57aa-4161-ac94-2f73a621c483", - "width": 3080, - "x": 1190, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "d1d7d09e-72cb-4c4c-bdea-172583b1d343", - "width": 6160, - "x": -5390, - "y": 14770, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "e959f30b-71c0-4644-92aa-694b83d363e1", - "width": 3010, - "x": 1120, - "y": 14770, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "827ec0cd-b0cd-4f31-a26c-cd0166714059", - "width": 210, - "x": 4060, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2100, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "68c6036b-e787-43fa-8d61-79e6e226efdf", - "width": 70, - "x": 3990, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "1449602d-96c0-4124-825d-f6bfa6c191b7", - "width": 2240, - "x": -5250, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "e9060a1d-d68e-459d-a9fc-8b6b6fecca50", - "width": 3430, - "x": -2660, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "33945b31-4119-47ac-bdaa-3fc3f34ec9a2", - "width": 2240, - "x": -5250, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ba81dd70-f1c9-4094-be41-a754ea2a923e", - "width": 2450, - "x": -5320, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e546c7a9-4135-4cc3-86c7-632ddcaac81c", - "width": 4060, - "x": -2870, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "18eca9d3-3b94-4afb-9a17-601073c25fe1", - "width": 2870, - "x": 1190, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5cacac2c-da0a-4ada-8a77-98763b7fe240", - "width": 4550, - "x": -5530, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "abb88313-6f21-4aa9-b984-2a722383803e", - "width": 1610, - "x": 4550, - "y": 17360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "e3b4b2f9-36ed-40ba-ba1b-daa9952d4f4c", - "width": 4270, - "x": -5390, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "d4eda0ec-b789-405f-8166-d7ec193c05d0", - "width": 2870, - "x": 1260, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "d47f8d1c-4b5c-42ae-848f-19829f16ac91", - "width": 3990, - "x": -5250, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2240, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "91195a8d-4ca9-45be-a6d4-dbf4bf106236", - "width": 140, - "x": -7420, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "bfe0b229-2a1b-469e-b3ed-5f09ea4bad3a", - "width": 70, - "x": -7280, - "y": 16240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1a29fa75-42d6-44b2-9893-71d54bf7dabc", - "width": 210, - "x": -5810, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "31970ae6-07b5-489b-a6c9-f9b654dcd3b1", - "width": 210, - "x": 4340, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "601beb61-b0df-428d-8f07-c0669e476453", - "width": 70, - "x": 3990, - "y": 15120, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "81ce6c90-922a-4e12-85b4-75fd668fd244", - "width": 210, - "x": 4060, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "97729062-1168-4c53-80be-89d5f982ed4a", - "width": 70, - "x": -7490, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "df39b127-2111-486a-a976-c776e4472d02", - "width": 70, - "x": 4270, - "y": 14980, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bbefd8c1-7744-4a22-b43d-9869822dd05b", - "width": 280, - "x": 4060, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "96f4bf5d-113b-418e-8710-151dd40ae057", - "width": 70, - "x": 4270, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e22f68a3-6d4d-43b4-bc81-d001cab8e90e", - "width": 70, - "x": 4130, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "65105850-5341-494c-849d-ae4f17d346d0", - "width": 70, - "x": 4270, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e16b210d-d923-4958-9063-d2a8b56b116f", - "width": 70, - "x": 4200, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5423ad58-5031-4059-b3b6-f9c6a2a24d54", - "width": 70, - "x": 4270, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "da1b6e08-bbe2-47a7-a1e0-5efd0aca7db8", - "width": 70, - "x": 3990, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "849cfea2-60c9-41eb-95a8-04bbcd3e20a0", - "width": 70, - "x": 4270, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f6896e28-669f-4af7-960f-7bddfd361a0c", - "width": 70, - "x": 4270, - "y": 14630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7cc882d8-14f0-422c-bffd-4500d0976ee2", - "width": 70, - "x": 4130, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6fcf0794-282f-4787-a92e-9c06aa19d51b", - "width": 70, - "x": 4270, - "y": 14910, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8bf111d3-2c2a-4255-aa30-617ba7915e85", - "width": 210, - "x": 4340, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "69c50967-524a-480b-8aaf-e6844217fd34", - "width": 70, - "x": 4270, - "y": 14700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "45412ee4-f048-4f75-a9a9-35f408a74821", - "width": 70, - "x": 4200, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "70bb404a-08de-4f23-81f0-cfc8d4b6a947", - "width": 70, - "x": 4270, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7fe8b531-364c-4c93-a347-2179f87999ef", - "width": 70, - "x": 3990, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e70f8ba3-3bee-45fd-b805-d22639749c16", - "width": 70, - "x": -7490, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fc412fc1-713a-46fc-921e-e9dbeba0130e", - "width": 70, - "x": -7490, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d302fd61-dcf5-4780-bbe1-9a54952df965", - "width": 70, - "x": -7350, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c8a578db-804d-4030-8c35-8f4547e351fe", - "width": 70, - "x": -7490, - "y": 12320, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c83caa8d-85b0-4bd4-aa2e-ed34549a572d", - "width": 70, - "x": -7420, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ef1cfe8c-5712-4167-b748-6ab0217681d5", - "width": 70, - "x": -7280, - "y": 12600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cc4ad029-c7b8-4164-b768-5c6287ca828f", - "width": 70, - "x": -3220, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1120, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "767d41d7-c20a-4c47-9949-4e00964d7848", - "width": 70, - "x": -3220, - "y": 7630, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "67957b72-fd61-44de-aa62-d67232533551", - "width": 70, - "x": -3220, - "y": 8750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "12b5afeb-3d18-4a9d-b563-89c786cc2010", - "width": 70, - "x": -3220, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c3f8db55-3cfe-47f4-9283-84b839f5d1f3", - "width": 70, - "x": -3150, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "391daa98-de16-4639-b2fb-a00a0530ab1e", - "width": 70, - "x": -3290, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c3c9b16c-eba5-497a-b8ad-e2ad3a59b26d", - "width": 210, - "x": -3430, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c433c412-b0cf-4bc2-8180-0a31d6a25922", - "width": 210, - "x": -3150, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ddc68276-6960-4133-8a10-3512c17aef75", - "width": 70, - "x": -3360, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "4f9f2a09-54ae-4130-a357-da64ea97ccf3", - "width": 3780, - "x": -3010, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0409eda0-e636-48ce-9175-fe9c214beb19", - "width": 70, - "x": -3080, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bfd040d1-e5ad-4c74-a625-10c4280eaf4e", - "width": 70, - "x": 910, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dc715674-f026-4cdb-b038-f664080f5160", - "width": 70, - "x": 770, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dc89e4f2-892e-43bc-997d-8915e7ea1d6c", - "width": 70, - "x": 1050, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "72dfa6d3-6534-4945-99f6-28aae13cbf09", - "width": 70, - "x": 910, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4be3f354-caa7-4314-af14-77120ba17bc0", - "width": 70, - "x": 840, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9d52d07b-28fc-4a90-8c76-ab77fb54df3e", - "width": 70, - "x": 910, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "03553d6d-cd67-486e-9a83-e8956b4aa109", - "width": 70, - "x": -7490, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "07a33c5e-d7ec-4bcf-a8bb-f778b7f26409", - "width": 840, - "x": -7280, - "y": 8820, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "873a2ee5-e32c-4883-b722-2bca53e502a0", - "width": 70, - "x": -7350, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1d653b5b-1acd-478f-89b7-4700742b2905", - "width": 70, - "x": -7490, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d8578ebf-bf51-4207-8f8c-856074ac598f", - "width": 1260, - "x": -7490, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "445fb956-bc5c-41f5-ba5a-4c599f4345ed", - "width": 70, - "x": -7420, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0389df86-4560-40d0-86b9-f73c794aaa85", - "width": 70, - "x": -7490, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "94aea0a6-cb69-494e-a3bd-9f8139418721", - "width": 70, - "x": -7700, - "y": 18270, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ddb63da5-6c15-4a6c-917d-8c8a96c3c84f", - "width": 70, - "x": 4270, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9461844a-4154-4f9b-987c-dee92042291e", - "width": 70, - "x": 3990, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "84ee5db8-c7e5-4c28-800c-6b9390fe218d", - "width": 70, - "x": 4270, - "y": 17430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a05631c1-3a83-4ca3-a4ba-335cf911a373", - "width": 70, - "x": 4130, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7cbbc0d9-acc3-4d45-8543-f40a8ac4ee71", - "width": 70, - "x": 4270, - "y": 17500, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "56838061-e1e9-458f-b16b-b6ff0be40854", - "width": 70, - "x": 4200, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6860, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "c2b7859a-e149-4570-8e50-bee761380051", - "width": 70, - "x": -9940, - "y": 8540, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "09ef74d1-60a9-4d68-8f48-dfa2093afe4d", - "width": 70, - "x": -9940, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5c192aad-91f3-4110-b21d-04baf3452a20", - "width": 70, - "x": -9940, - "y": 8470, - "zOrder": 12644, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "67374737-9c99-4ff0-af43-0bcba74faa58", - "width": 70, - "x": -9170, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8b47a8bd-21f9-46c5-97c2-58e930510e29", - "width": 70, - "x": -8960, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3a3196f5-2670-4f2e-803a-2310664d9510", - "width": 70, - "x": -7840, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "248bafaf-0d05-400a-87c3-e12afe4b0232", - "width": 70, - "x": -7910, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "382763ca-d026-4be1-8b23-9f3292fe082f", - "width": 70, - "x": -8330, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb1188b0-52f2-4e83-ac92-c915432e4a41", - "width": 70, - "x": -9170, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "68772f77-85a6-41a0-a910-8b054a4b0238", - "width": 70, - "x": -7840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1880fe37-0cae-468f-a0f0-6d35d450219f", - "width": 70, - "x": 6020, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2828aff8-8ff8-41f3-9479-ccaa3140e9d6", - "width": 70, - "x": 1680, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f2a0d66-87ec-4e41-ab2b-233500cd4c2f", - "width": 70, - "x": 1750, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06c60856-6c77-488e-b9fa-d8ca2f77f8f8", - "width": 70, - "x": 1610, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9a176fb1-f0a7-4d46-9429-70f07a7c1845", - "width": 70, - "x": 1470, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "63438dfd-6564-439c-8c20-889b9b9dead9", - "width": 70, - "x": 1540, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c0e07586-7abe-461d-9f8f-040c7d8392c0", - "width": 70, - "x": 1330, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "29b869db-a66c-42e0-850f-952d14678c36", - "width": 70, - "x": 1400, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6bce089f-b222-483f-9d1c-acfc7d912937", - "width": 70, - "x": 1260, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "86f4e8ae-4509-4e65-8e97-d2dc512ec675", - "width": 70, - "x": 1120, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "47b82bd1-6865-4812-adac-9faeb2379651", - "width": 70, - "x": 1190, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2c4a1627-f308-4ff1-a8ec-55a09ecee037", - "width": 70, - "x": 980, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "028ec976-5113-4bb4-bc8f-0fbd197279fc", - "width": 70, - "x": 1050, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6b85a1c-056c-4849-bb47-52672c691d0e", - "width": 70, - "x": 910, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4b41a189-d878-41e2-a62d-a10d1a4a20b0", - "width": 70, - "x": 770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0946c1b-60a0-4fd5-80b3-2ad9d9356bbb", - "width": 70, - "x": 840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bf0b3762-a33b-47e5-8e21-3deff164d947", - "width": 70, - "x": 630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30c569dd-1f68-4744-b2bc-86c9c116ee7f", - "width": 70, - "x": 700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1248b57f-aa92-4ec4-a162-b73ddff812dc", - "width": 70, - "x": 560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "35b7b411-6248-4e31-a64e-7648c9820893", - "width": 70, - "x": 420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5ad3f83f-7b59-4cda-9be1-43c36780f96f", - "width": 70, - "x": 490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "775e0a77-09f9-475e-bd08-8535bc187fde", - "width": 70, - "x": 280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0c33d1c8-55ed-46a4-80a5-81c243759228", - "width": 70, - "x": 350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5a1dcaa4-d1fc-4ffc-bb7c-2232080af5e4", - "width": 70, - "x": 210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5e303256-3232-4a76-9c12-056eb232fd10", - "width": 70, - "x": 70, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8fd8c334-a4d4-40cf-a0b9-cc9a54b7cee7", - "width": 70, - "x": 140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7216e525-dbf6-4c91-b33e-fadc8e13eb3a", - "width": 70, - "x": -70, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf0fd41d-089f-4629-9287-f04c38480dbc", - "width": 70, - "x": 0, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7363d1c1-fb17-4f93-9908-a10b47400ccc", - "width": 70, - "x": -140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "93952be4-6ddc-4548-b7de-4e88a902e67e", - "width": 70, - "x": -280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1eefd45e-795c-4599-9492-bc173e8db2a1", - "width": 70, - "x": -210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "db72c1f7-5a32-4fe2-ad12-4b5b7d7e7923", - "width": 70, - "x": -420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "78b9aef7-908a-4720-b7ad-52ea30cd0482", - "width": 70, - "x": -350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c3818645-e65f-4b77-9c8b-7bec1c09d6d4", - "width": 70, - "x": -490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "002a650a-d9c4-4639-a1b2-23121d6a4321", - "width": 70, - "x": -630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58d1774c-39d7-458f-a62f-e45b9f161e27", - "width": 70, - "x": -560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "934ba8c3-98a8-4a56-839b-16bbb413f363", - "width": 70, - "x": -770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8fa36368-747a-4ebf-a096-aeedd3ab7446", - "width": 70, - "x": -700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "da949b3f-af8c-4026-be79-9653af881493", - "width": 70, - "x": -840, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ae52c08-b92c-443e-a712-32d00ecfb5a3", - "width": 70, - "x": -980, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7b63cc5e-f8be-42a7-a8fa-d7d8afa4bd7b", - "width": 70, - "x": -910, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fe7f05b1-76bf-470a-802f-e5bba87c0d9f", - "width": 70, - "x": -1120, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "780d3279-653d-4248-8c4e-17c28544fd30", - "width": 70, - "x": -1050, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6515a149-0f24-4ccc-a8d2-8b50eacf291d", - "width": 70, - "x": -1190, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e56fae96-dc35-4ae5-951c-d18a132b133b", - "width": 70, - "x": -1330, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f8c5762-c641-4ecd-ac0c-50f2824ad99f", - "width": 70, - "x": -1260, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "92d4155f-8978-489d-ab7c-8147b7cc48bf", - "width": 70, - "x": -1470, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a7b4ca3f-1b58-4dcd-ae7b-482e1dec2e4c", - "width": 70, - "x": -1400, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2f882f96-9100-4ba8-90fa-acfd4efbbeca", - "width": 70, - "x": -1540, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "26d7c365-ab91-4447-a213-453658eda8a0", - "width": 70, - "x": -1680, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0eb7f529-a917-47fd-b98f-842d631f4f45", - "width": 70, - "x": -1610, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "82f143c4-a5f5-4494-a015-2751e544d300", - "width": 70, - "x": -1820, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9327f173-59a3-4a9f-b5eb-84e367ce7f90", - "width": 70, - "x": -1750, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b097ee4-9817-4281-84d7-0f177b3d5b7d", - "width": 70, - "x": -1890, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8cfa1e31-a63e-40ce-bcce-a9580bbe5aa8", - "width": 70, - "x": -2030, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "177a0348-78cd-41d7-8c0d-a3deb21334ec", - "width": 70, - "x": -1960, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cb4248a2-2c6a-4b88-ba6d-4f1228f43584", - "width": 70, - "x": -2170, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9c3d7f77-dcb6-45a9-a2e4-26ff231fd872", - "width": 70, - "x": -2100, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2e0494ce-162a-484a-aa57-fff95973a6e0", - "width": 70, - "x": -2240, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b65e304b-b117-4fc7-845f-08fb3594356c", - "width": 70, - "x": -2380, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6718d1f-e801-4af0-9eec-29ebfded987b", - "width": 70, - "x": -2310, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a4df91f2-86e1-4a3a-bc7a-da3e04f7d020", - "width": 70, - "x": -2520, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e95c5bcf-f04b-4329-8b64-5940e22e225e", - "width": 70, - "x": -2450, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "352b7732-84db-4c72-a4ae-b4fd304578db", - "width": 70, - "x": -2590, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5fa9b027-9a6e-4a99-90a1-f9dc19d3ba9e", - "width": 70, - "x": -2730, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bc3c2952-b4ca-46c2-9048-06fc098f1320", - "width": 70, - "x": -2660, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0194767-ff5d-4f22-a000-d47b20e46323", - "width": 70, - "x": -2800, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "852ce45b-cf22-4dd8-b21b-464a0183d7b0", - "width": 70, - "x": 5880, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "787370d1-fbc6-4b1a-be34-4be0fefeffe3", - "width": 70, - "x": 5950, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "72045e0f-285b-4264-a0be-2c025fa54b4b", - "width": 70, - "x": 4550, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ab8721fc-014f-4326-bb03-043d88961ee6", - "width": 70, - "x": 4480, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "74b4ae53-bf0d-455e-98b7-21667b8ce74b", - "width": 70, - "x": 4340, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2698bc40-dba2-42b2-8d3e-72cf803131e7", - "width": 70, - "x": 4410, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2434ce96-a433-4ac3-b9e4-f5162f9e7721", - "width": 70, - "x": 4200, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d3120e1e-8688-4a16-a9d5-f489e5ec5768", - "width": 70, - "x": 4270, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "439d3d26-0839-42a8-8b58-832b51b92fe2", - "width": 70, - "x": 4130, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5bb9e06a-c2eb-4e4d-a645-ddc017fe6e9e", - "width": 70, - "x": 3990, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec97143f-ac6f-41d9-8a95-817d38452de3", - "width": 70, - "x": 4060, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "14e20f94-10e0-4b29-8452-bf3f8e0b9442", - "width": 70, - "x": 3850, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "df9a90f3-1b18-460b-a7db-97b7fa23a139", - "width": 70, - "x": 3920, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6cad4ba3-9821-4f48-8f7f-158b03a8d6de", - "width": 70, - "x": 3780, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7f50dab7-1625-4024-9f21-42981f611983", - "width": 70, - "x": 3640, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0d2115f-8d2d-46c1-8e5c-35f240d9020d", - "width": 70, - "x": 3710, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "562dbf91-4d3f-462b-a221-fe3ac54954ef", - "width": 70, - "x": 3500, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16a467c2-079b-4b67-929c-2c0328b901c9", - "width": 70, - "x": 3570, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "afdc876a-c691-4ebb-8867-199b1d77f36a", - "width": 70, - "x": 3430, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f2d569ef-0266-4f26-a540-be15920ba782", - "width": 70, - "x": 3290, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ffc3406d-c4f2-4f9f-b6bd-91c7eaa55c3c", - "width": 70, - "x": 3360, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fd4127fe-4510-4b4f-a743-8c8a2eb1307e", - "width": 70, - "x": 3150, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e2b373b-2df8-45b7-8000-476a0f13f59f", - "width": 70, - "x": 3220, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "22c694b9-15e5-4b8b-8692-ece69df0dca0", - "width": 70, - "x": 3080, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0d21e24b-4569-43fe-91fc-a1b8c028303d", - "width": 70, - "x": 2940, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b0bb79ba-cf5a-4cca-916c-b1c65fccf2af", - "width": 70, - "x": 3010, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d46ee9ee-e96b-41b3-8ea2-d1dded532560", - "width": 70, - "x": 2800, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a157f83a-b151-4fe6-9c78-4cb02735d20c", - "width": 70, - "x": 2870, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "50a69d03-05f0-46ca-af7d-10e165ef8008", - "width": 70, - "x": 2730, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ce46f011-2bb0-4c88-abc9-d259fd461d2f", - "width": 70, - "x": 2590, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7094e502-3c10-45b9-9d19-265be54fb2cc", - "width": 70, - "x": 2660, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d5dfa501-dcc9-452f-b318-d7adf67034f9", - "width": 70, - "x": 2450, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7fddbea7-c77e-45f4-ae82-c5f2f936c085", - "width": 70, - "x": 2520, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b03c6a8-051b-48eb-8a73-d8690399de22", - "width": 70, - "x": 2380, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "51e501ae-05a9-4ae4-b1b2-e8e4d6e17783", - "width": 70, - "x": 2240, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a836aedc-1654-4a7f-b30f-608c2bee7c21", - "width": 70, - "x": 2310, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e8ecaf1d-cd2b-424f-9167-b48ae8925d61", - "width": 70, - "x": 2100, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "32b6fdc1-df4f-43e6-ad5b-2478d57fb8ae", - "width": 70, - "x": 2170, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "65f73679-9cfa-4206-8ea3-7f05b9e2bcf7", - "width": 70, - "x": 2030, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e986190a-3651-4d8f-8c71-eac85e039d74", - "width": 70, - "x": 1890, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7adf24e4-752d-4493-bef0-381d60679a45", - "width": 70, - "x": 1960, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d503873a-69fa-4e53-9e9d-07b663081456", - "width": 70, - "x": 1820, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b783edcd-cb09-45df-8ea3-ecf6168c55bb", - "width": 70, - "x": -3990, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4c1f119-87a3-477c-873d-3eace9dd3ae8", - "width": 70, - "x": -3920, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a81ddc24-decf-4a62-a240-01e16dabf4e3", - "width": 70, - "x": -4060, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3f77578d-15be-4307-8041-3428d8fe8528", - "width": 70, - "x": -4200, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30551d13-00bf-4be2-8dd0-c422988a5bbd", - "width": 70, - "x": -4130, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "57d3c072-301e-4852-b4ac-2032d689cc63", - "width": 70, - "x": -4340, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c39e941c-a12a-48b0-85af-7f2b692d5557", - "width": 70, - "x": -4270, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f123151a-325a-4f66-a0b5-cdf6932cdd3f", - "width": 70, - "x": -4410, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5ae27ec0-31c3-4367-b784-383655de4f91", - "width": 70, - "x": -4550, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e50d3672-d882-450e-980a-eec264ffba53", - "width": 70, - "x": -4480, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "183b78d0-0644-4293-8377-720a5346e717", - "width": 70, - "x": -4690, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6f1fd72f-5e35-43b0-a7cb-fe67d2825215", - "width": 70, - "x": -4620, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "39594809-f61f-4ace-a4f3-78abb1cf8401", - "width": 70, - "x": -4760, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "489c5f5c-4c72-48aa-abd9-593640c9332b", - "width": 70, - "x": -4900, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b0618da7-364d-407e-ab36-503fc7175206", - "width": 70, - "x": -4830, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ec953ea3-8f8e-4315-96f0-cc77aa455751", - "width": 70, - "x": -5040, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ca990166-ec51-4d85-83e3-874f165fe72c", - "width": 70, - "x": -4970, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6b5a5aa-19e5-40af-8812-eb8691e59936", - "width": 70, - "x": -5110, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1827869b-9c11-462c-a8ce-7b08fd9a3344", - "width": 70, - "x": -7070, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "86f3725b-bc9c-45d5-afc6-d049d8e30953", - "width": 70, - "x": -7000, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6b6b7d79-1370-4a11-9d45-6ab1807e9797", - "width": 70, - "x": -7210, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "61aad679-eb2a-4f71-b717-8a63334a6daa", - "width": 70, - "x": -7140, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e987cf6a-2b4d-46da-aa6c-19c83dbb6ef1", - "width": 70, - "x": -7280, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf22e25f-afc2-41af-9c10-efa7fa41b1d1", - "width": 70, - "x": -7420, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3ba6259e-1b53-4f15-b49b-16bd6a06e853", - "width": 70, - "x": -7350, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8ba70d11-4e34-420e-99c4-617c274c285c", - "width": 70, - "x": -7560, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6e8c0a6f-765e-46f5-8b27-9df8ffc2ee63", - "width": 70, - "x": -7490, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5223f9e4-a882-494f-9acf-6239c86f48ec", - "width": 70, - "x": -7630, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ac58fddb-0762-41f3-a33c-518474565299", - "width": 70, - "x": -7770, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ee0d2b3-7194-45ce-bd03-e71c37f02115", - "width": 70, - "x": -7700, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f2667df6-663e-458d-8a5e-151711936d1c", - "width": 70, - "x": -7840, - "y": 7490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1bcd28e1-55bf-4571-99a6-b606021baa3b", - "width": 70, - "x": -3640, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9e159dbf-9f8f-4cc8-a0ec-2a332cc3d9c5", - "width": 70, - "x": -3780, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "58fad68e-240c-4862-86d9-a9d9156ca710", - "width": 70, - "x": -3710, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8ef62f4c-ef16-4f6d-8105-80dbcea6cdc2", - "width": 70, - "x": -3850, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "98634bb8-fe80-4846-ba43-ebead9ecd9cd", - "width": 70, - "x": 6020, - "y": 9450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c8887d72-9fd7-43aa-b5b7-137e5769e022", - "width": 70, - "x": 6020, - "y": 9380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "98925f9c-caaf-450c-8f9c-1dbe1b64a375", - "width": 70, - "x": 6020, - "y": 9310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d2ae7ba3-9feb-475d-9676-61f686f027a9", - "width": 70, - "x": 6020, - "y": 9240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "808ef23f-b733-4fba-9db6-8ffeb084272e", - "width": 70, - "x": 6020, - "y": 9170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5e6f64bc-b69e-42a9-a886-f8b6b56a40eb", - "width": 70, - "x": 6020, - "y": 9100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "48ac6a30-9983-4d2f-a54f-6f8710f5f83d", - "width": 70, - "x": 6020, - "y": 9030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "977b3ed1-8983-4305-b3f0-f7f3ba1fed1c", - "width": 70, - "x": 6020, - "y": 8960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13035ea4-aa1c-4e7b-a39a-c5f0628d6dd2", - "width": 70, - "x": 6020, - "y": 8890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b47ef73a-251c-43e5-ad52-6e99c5097d2c", - "width": 70, - "x": 6020, - "y": 8820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0b17a247-d24f-4905-8c67-3de00c4f2542", - "width": 70, - "x": 6020, - "y": 8750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36239b59-8f24-47f6-937c-cd93f3c80080", - "width": 70, - "x": 6020, - "y": 8680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1eaad9e2-cfee-4b94-b0e4-96846b923637", - "width": 70, - "x": 6020, - "y": 8610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6c75eef0-347f-479d-a230-198b36fd0f80", - "width": 70, - "x": 6020, - "y": 8540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "39eb895a-700d-4107-8ad9-a7b24cb53c16", - "width": 70, - "x": 6020, - "y": 8470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3a276265-2134-4521-b1bc-f04c4ce874e6", - "width": 70, - "x": 6020, - "y": 8400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "475e31c6-9673-4270-8cfc-d4099251747a", - "width": 70, - "x": 6020, - "y": 8330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "05c544d3-216a-401c-a6a0-a8186eaada20", - "width": 70, - "x": 6020, - "y": 8260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6a539772-8704-47ef-bff5-761f1c0c66a5", - "width": 70, - "x": 6020, - "y": 8190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "231d17a9-72c5-4dc8-a98c-265589715ef0", - "width": 70, - "x": 6020, - "y": 8120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8205a8d6-7f32-4793-a196-f6125f28d34a", - "width": 70, - "x": 6020, - "y": 8050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b5faeed0-bb85-403a-a385-0492d40ea8e1", - "width": 70, - "x": 6020, - "y": 7980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bb98fc07-7dae-4d25-8041-7b2612eb08c5", - "width": 70, - "x": 6020, - "y": 7910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00a48578-1930-48cd-9e67-a49df253ac6f", - "width": 70, - "x": 6020, - "y": 7840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa1431ae-4887-450d-8c3f-cda8151e146c", - "width": 70, - "x": 6020, - "y": 7770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ef3a6ef6-f516-46c5-b678-9ee577ac476e", - "width": 70, - "x": 6020, - "y": 7490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a60fd7cd-a1e5-4293-938b-0d8d16497bc3", - "width": 70, - "x": 6020, - "y": 7560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8da2beb8-352d-43b3-9db1-20b4cf777527", - "width": 70, - "x": 6020, - "y": 7630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4fe5b26-bf9a-4f51-b7a0-7b81b9113adf", - "width": 70, - "x": 6020, - "y": 7700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c1dd7864-d4ab-4fb9-9630-bc90753795f7", - "width": 70, - "x": 6020, - "y": 11270, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7c9df671-09bb-4a74-8472-5c4919dc7876", - "width": 70, - "x": 6020, - "y": 11200, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "61e85993-0978-4b22-86bc-996672be70e6", - "width": 70, - "x": 6020, - "y": 11130, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4095e86b-37e6-4540-a9ea-60f2c42e1ffb", - "width": 70, - "x": 6020, - "y": 11060, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d6f37d72-c522-4357-955e-e764f25a2e3b", - "width": 70, - "x": 6020, - "y": 10990, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "07d01511-15ff-4d67-8ecc-bed7549ab94c", - "width": 70, - "x": 6020, - "y": 10920, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "66c664b1-9a23-4662-9995-53d69923ea8f", - "width": 70, - "x": 6020, - "y": 10850, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b161f7fb-772e-46cf-aa36-fc89323ede8e", - "width": 70, - "x": 6020, - "y": 10780, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36479fbf-9e2f-4472-a1d0-540528448d99", - "width": 70, - "x": 6020, - "y": 10710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5078007e-e948-4352-949b-ab7accfd5573", - "width": 70, - "x": 6020, - "y": 10640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ac1d582-8239-4154-b57c-cf367f2ae4d7", - "width": 70, - "x": 6020, - "y": 10570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ff2dc3ba-153a-4eed-bf3d-42392f978890", - "width": 70, - "x": 6020, - "y": 10500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "824110fc-0e7d-48e3-bf21-565c10c6adb4", - "width": 70, - "x": 6020, - "y": 10430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d5740e34-580a-4291-bbcf-f186d693f29a", - "width": 70, - "x": 6020, - "y": 10360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "51e63e66-d8a5-41eb-a0a9-ba9d601a74b2", - "width": 70, - "x": 6020, - "y": 10290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd572745-dfc6-4960-a94e-79479ca53e6f", - "width": 70, - "x": 6020, - "y": 10220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5170faad-c7d9-47b7-bf37-dcc7cf8d3605", - "width": 70, - "x": 6020, - "y": 10150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fe975d2a-6b69-47fb-b0a4-041da9dcd4a4", - "width": 70, - "x": 6020, - "y": 10080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a16128dd-f2b2-44b9-a13c-4b80f9e51a5b", - "width": 70, - "x": 6020, - "y": 10010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1be3b895-2ec0-44ff-9e59-ae05c5394fd2", - "width": 70, - "x": 6020, - "y": 9940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4b3f538e-4d7e-41ee-8d45-4803d11260b7", - "width": 70, - "x": 6020, - "y": 9870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "05e7ba7d-581f-4399-8a7a-5b77dc8f1106", - "width": 70, - "x": 6020, - "y": 9800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c6967e09-454a-4f9f-a071-064bd69e96dc", - "width": 70, - "x": 6020, - "y": 9730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7c9d01d4-e7ba-42ea-a63f-1cda823b12c3", - "width": 70, - "x": 6020, - "y": 9520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00e21b58-9f64-47bf-9d09-dba557feba21", - "width": 70, - "x": 6020, - "y": 9590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "18f17fee-261c-4aa7-b9fc-2f060cbae65c", - "width": 70, - "x": 6020, - "y": 9660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9b3d4da-ba45-4672-a5e9-df9bee618c2e", - "width": 70, - "x": 6020, - "y": 11550, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5ff7e80c-d006-4131-a3b1-306a21f629c7", - "width": 70, - "x": 6020, - "y": 11480, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e1849813-2ee5-4011-ade5-38165a267c65", - "width": 70, - "x": 6020, - "y": 11410, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6f0988f1-2e46-4312-9d8f-50ccc900667f", - "width": 70, - "x": 6020, - "y": 11340, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "facbf961-f7b1-458e-9f3c-561b7b50b23b", - "width": 70, - "x": 6020, - "y": 13370, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c538b288-56e5-4370-8366-b805ef6e4e51", - "width": 70, - "x": 6020, - "y": 13300, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "069a139d-b258-4bd8-8455-77edc43a3166", - "width": 70, - "x": 6020, - "y": 13230, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dcc95ff2-ba81-466a-ab58-21fe125ff28a", - "width": 70, - "x": 6020, - "y": 13160, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "175e8e9b-a68d-4898-8e2f-925df7855760", - "width": 70, - "x": 6020, - "y": 13090, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2952f931-1000-4c1f-80c9-dc451c07fd2e", - "width": 70, - "x": 6020, - "y": 13020, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8f4984e2-8105-443a-ba34-beda680ad0e4", - "width": 70, - "x": 6020, - "y": 12950, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ac6fe423-fc7f-4d37-82b2-42dbdfbf4367", - "width": 70, - "x": 6020, - "y": 12880, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8b635b67-33a1-4b04-b0f1-8e9d4718e0a7", - "width": 70, - "x": 6020, - "y": 12810, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1febc98b-efd9-4954-b524-8b88300cf29a", - "width": 70, - "x": 6020, - "y": 12740, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fc11bbe4-061d-48cf-8d93-013fa1fd6e58", - "width": 70, - "x": 6020, - "y": 12670, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d090a6af-a80d-444f-a405-730f15ea6ba7", - "width": 70, - "x": 6020, - "y": 12600, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00611642-d722-4161-a312-583a86edae5a", - "width": 70, - "x": 6020, - "y": 12530, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c9c79595-842f-4a6c-954e-de3a80114ef9", - "width": 70, - "x": 6020, - "y": 12460, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "169be99e-eed2-45be-95da-b5cf2ead3e13", - "width": 70, - "x": 6020, - "y": 12390, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "64ad4c34-89d1-4ce4-9a83-a7a944fb8f33", - "width": 70, - "x": 6020, - "y": 12320, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "67b0123b-9e11-4445-b1d6-ff143d857c84", - "width": 70, - "x": 6020, - "y": 12250, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "401c4e93-dc53-4530-93c1-b72687d53085", - "width": 70, - "x": 6020, - "y": 12180, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6ad64009-db4c-4e98-b502-08648b53abb7", - "width": 70, - "x": 6020, - "y": 12110, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "111cde48-6b6f-43b1-ae85-1258b305b4c2", - "width": 70, - "x": 6020, - "y": 12040, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "37421f77-87af-4cd3-88b5-fa041a09247c", - "width": 70, - "x": 6020, - "y": 11970, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc893bd0-8120-4822-9fdb-ccd701f3b3cb", - "width": 70, - "x": 6020, - "y": 11900, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bd83fecc-2772-49d6-9103-bce53651894f", - "width": 70, - "x": 6020, - "y": 11830, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "913ebe7a-2752-4b7b-907f-841701e3e20c", - "width": 70, - "x": 6020, - "y": 11620, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "937ec481-2ff8-4780-81cf-ed2288a604e5", - "width": 70, - "x": 6020, - "y": 11690, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6b0e40d8-e0b2-411e-9455-f5b2a45ccb4a", - "width": 70, - "x": 6020, - "y": 11760, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3b14bd96-45e2-4bc3-9b1a-4ca70bbdfde0", - "width": 70, - "x": 6020, - "y": 13650, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "de267832-e4fa-4b39-b490-b685016a8685", - "width": 70, - "x": 6020, - "y": 13580, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "78605920-7428-4132-9e84-e5716d3b5b71", - "width": 70, - "x": 6020, - "y": 13510, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e3efe1b3-9f11-42e9-98e2-299a73ba3f49", - "width": 70, - "x": 6020, - "y": 13440, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "61ea5ca5-99ed-4cab-89e4-a16688c1fc39", - "width": 70, - "x": 6020, - "y": 15470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "87750432-9f2d-4f06-8dea-804e37189672", - "width": 70, - "x": 6020, - "y": 15400, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "21ddda90-260f-48fc-9f09-1425b5e53301", - "width": 70, - "x": 6020, - "y": 15330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dee482e8-3a63-4de9-87ca-88ee24907f36", - "width": 70, - "x": 6020, - "y": 15260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "560f68ca-e59a-42c5-8bf2-23a30ab17d9a", - "width": 70, - "x": 6020, - "y": 15190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aa2672bc-dcbd-4d83-9683-9957ef1316a5", - "width": 70, - "x": 6020, - "y": 15120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bcc6f3b9-97d5-4a8f-8406-820c51f644eb", - "width": 70, - "x": 6020, - "y": 15050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03e22962-5d1a-4554-b1b4-ab3249360422", - "width": 70, - "x": 6020, - "y": 14980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "480af050-9102-4e0f-ac0b-b44e06dc820b", - "width": 70, - "x": 6020, - "y": 14910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1f41bc9c-8e51-4269-a4b7-2bec19f95376", - "width": 70, - "x": 6020, - "y": 14840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ffa1c2bd-011a-417b-9d80-c1687d51a281", - "width": 70, - "x": 6020, - "y": 14770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0404d5ae-2a86-4823-b2a8-c828aeb73df0", - "width": 70, - "x": 6020, - "y": 14700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "940c294c-8c11-4a48-80dc-365165d497a0", - "width": 70, - "x": 6020, - "y": 14630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5e67bb20-0072-4849-acfa-aea9673546fe", - "width": 70, - "x": 6020, - "y": 14560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9185d974-8eef-4819-aa70-71c56b955cea", - "width": 70, - "x": 6020, - "y": 14490, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf5835d6-011b-43c1-9d94-412e829c90c1", - "width": 70, - "x": 6020, - "y": 14420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "15c05fec-efb7-43eb-b46c-e50ee282fea0", - "width": 70, - "x": 6020, - "y": 14350, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "baa5a962-acee-4f6c-ad6f-987714774195", - "width": 70, - "x": 6020, - "y": 14280, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1337ac26-fcc5-4560-9e8d-617c5be1e2d0", - "width": 70, - "x": 6020, - "y": 14210, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "20739b15-05c6-4c37-9cb8-2bff5826456c", - "width": 70, - "x": 6020, - "y": 14140, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "54f0a83c-72e3-4a5d-be47-ef2983c28429", - "width": 70, - "x": 6020, - "y": 14070, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b35c8711-0b21-4986-97ca-a4ed6b3dda73", - "width": 70, - "x": 6020, - "y": 14000, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e14c3e59-3226-47a7-b828-5c2d6d267a64", - "width": 70, - "x": 6020, - "y": 13930, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "59a16de7-1d15-4289-a908-1d4f96a16060", - "width": 70, - "x": 6020, - "y": 13720, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "69124a03-a746-4ba1-8854-761936e7b4e4", - "width": 70, - "x": 6020, - "y": 13790, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "171ad25d-35fb-4f06-b8cb-3dfa4bdc2acf", - "width": 70, - "x": 6020, - "y": 13860, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "544f8360-81a9-4045-bb0e-9b84af0829fb", - "width": 70, - "x": 6020, - "y": 15750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e15de574-9849-4e72-b3f4-97d2f4db9730", - "width": 70, - "x": 6020, - "y": 15680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "baa4b239-f47e-4d65-a307-119a77512544", - "width": 70, - "x": 6020, - "y": 15610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2bcd7719-9cb7-4b4d-b1d5-c75c4685b83f", - "width": 70, - "x": 6020, - "y": 15540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a0fe34db-0acc-4906-9d70-a5e461924be6", - "width": 70, - "x": 6020, - "y": 15820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9dd226b-8573-4c8d-85f5-0a08dcb2f5e9", - "width": 70, - "x": 6020, - "y": 15890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "05c7f840-7a67-497d-8d87-e5819067fd06", - "width": 70, - "x": 6020, - "y": 15960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "10b2a440-e567-47df-a70d-f66e48f7ca2f", - "width": 70, - "x": -8190, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9c1752a0-d7db-4ed4-a38d-dc9d35847b4d", - "width": 70, - "x": -8260, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1bae2f12-357d-4020-adab-38c4bdd80423", - "width": 70, - "x": -7980, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "386438b2-b9db-46c0-a098-5695883b25e1", - "width": 70, - "x": -8050, - "y": 8400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "19dd1c45-a9e8-4b6c-912d-6939c3b95ebe", - "width": 70, - "x": -8890, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "06dc1303-d7b6-4016-a222-242fd6ebd217", - "width": 70, - "x": -8820, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fda8a5f2-13d7-47c6-84d0-dcbdb3ff72b7", - "width": 70, - "x": -8750, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5834385c-aaec-40ab-bd78-a3397d78713d", - "width": 70, - "x": -8680, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a4e531cb-f192-4a9b-abe2-89c78bbc57c0", - "width": 70, - "x": -8610, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c5f4878a-ded3-4e40-8977-0f1d7c0f0503", - "width": 7350, - "x": -2730, - "y": 8470, - "zOrder": 12646, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8820, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5b1c6866-b137-45f0-8bba-a493086ff545", - "width": 140, - "x": 4620, - "y": 8470, - "zOrder": 12647, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e33f8fda-4848-45c5-94da-ed395864188f", - "width": 140, - "x": -3640, - "y": 7560, - "zOrder": 12649, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "67cdc1a5-d1db-474a-851e-ccf8022b6927", - "width": 3850, - "x": -5250, - "y": 9240, - "zOrder": 12651, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "3e2b5720-f5b9-4021-9543-c8029678640e", - "width": 840, - "x": 1190, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "642a9e84-6ea4-42f8-84a0-ba38822f6ac6", - "width": 140, - "x": 3850, - "y": 9380, - "zOrder": 12653, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "08485beb-8ff0-4a3f-8e2d-d42c1a73508d", - "width": 5950, - "x": -5250, - "y": 14350, - "zOrder": 12654, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8bb40d00-49d3-45ac-8ed0-4bb687bf16a1", - "width": 140, - "x": -7210, - "y": 9100, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "30fcaf14-e7be-40a2-891c-277b98e7e1ab", - "width": 2240, - "x": -5250, - "y": 15120, - "zOrder": 12656, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d9506cc8-5462-4c25-b8e9-d38b98e4bd02", - "width": 140, - "x": 3850, - "y": 15260, - "zOrder": 12657, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "efb09e86-67aa-46a4-acf9-d3a45adc2e11", - "width": 2100, - "x": -5110, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5810, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "070520f5-cffd-4a30-9a5c-80f43c89eff7", - "width": 210, - "x": -5530, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d80e9e3e-2c4e-4986-bafc-efd15cf10510", - "width": 210, - "x": -5810, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "d1e9151f-6016-4c88-97cf-e71b94a8e341", - "width": 490, - "x": -5810, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ce7129a0-7ac5-4713-9a09-ed622ec063e0", - "width": 70, - "x": -5320, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "eded015b-c5c3-459b-bb89-a8099a803d59", - "width": 70, - "x": -5880, - "y": 8610, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "765fa2ee-dc61-40e9-87c5-c8612b208137", - "width": 70, - "x": -5880, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "835a5ee7-023b-4ae1-b966-2907656958a9", - "width": 70, - "x": -5320, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3150, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "baa11a57-94c2-4f30-906d-5a193f280db1", - "width": 70, - "x": -5600, - "y": 9100, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2520, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ce750f8-ce0b-436f-9f98-76da57be60d7", - "width": 210, - "x": -5530, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2170, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "45777613-d8ba-49ff-9fbe-71154e75b69c", - "width": 70, - "x": -5320, - "y": 15120, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b44948d0-cc56-4b32-ad86-0ce9124ab033", - "width": 70, - "x": -5600, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "725de249-cd93-4bfb-bb8a-f3ddbf24e158", - "width": 70, - "x": -5600, - "y": 14910, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7dab9454-dd07-4087-8557-c53965d48521", - "width": 70, - "x": -5600, - "y": 14630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6c5dd75f-1d4e-4bd1-a03d-05aa829003ee", - "width": 70, - "x": -5460, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d1348f79-5265-4096-8d2f-33b0bfaaa38e", - "width": 70, - "x": -5530, - "y": 14770, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ffeee3b-6998-4ce4-8eb8-0a75d4ca044f", - "width": 70, - "x": -5600, - "y": 14700, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4aab0771-6008-4a6b-b2d9-d06fbffe26a7", - "width": 70, - "x": -5600, - "y": 14840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "09d91e97-b077-4f96-8ee8-42a013b47d20", - "width": 70, - "x": -5320, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "507c506f-6fd5-47fe-a5d6-2bd9dfab4695", - "width": 70, - "x": -5320, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8636f961-c2d5-4952-bbd8-1da11b0e4e02", - "width": 70, - "x": -5600, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "9c47b4b0-0467-4888-814d-63f7e0cb442e", - "width": 210, - "x": -5390, - "y": 8890, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "81272b46-fae5-4a56-9203-600cd1c46ab0", - "width": 70, - "x": -5460, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3db336af-09ac-41db-ac9d-de618a115657", - "width": 70, - "x": -5600, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6852158d-3116-4e06-98d2-5512e2ad75ba", - "width": 280, - "x": -5600, - "y": 8680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f526c2c3-476b-49a0-8e1c-a9f1900c71cc", - "width": 70, - "x": -5530, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "10a6db18-1262-4fd1-8988-8a4a017cad73", - "width": 70, - "x": -5600, - "y": 8960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "811d5381-ca87-4849-a5df-11b20b1de6ac", - "width": 70, - "x": -5600, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "db94c5b1-2f88-4fce-8aca-57011fa2683a", - "width": 70, - "x": -5600, - "y": 17430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "25425d9f-5db2-46fe-b976-35a9e269cedd", - "width": 70, - "x": -5460, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "903c2d1f-0664-41e9-bbb8-515df19bc3d0", - "width": 70, - "x": -5530, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4956e51b-52b6-4c62-af97-2d71298dbcf4", - "width": 70, - "x": -5600, - "y": 17500, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "05b35a97-553b-46f7-a9a9-f4c8f4540051", - "width": 70, - "x": -5320, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13d97a03-0e2e-4868-8d69-bd316cc3bbb7", - "width": 70, - "x": -5250, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d89d9209-c5cf-45c0-b6c3-dff41b901987", - "width": 70, - "x": -5180, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "33008aa4-eacb-43a1-a2c7-27bce88436bf", - "width": 70, - "x": -5390, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5e731a7-aad3-4e91-8448-80cd0fefc644", - "width": 70, - "x": -5320, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ce8cc9e9-2266-4db2-b538-7860ce47db03", - "width": 70, - "x": -5460, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e6e34479-90fa-4486-a60a-2e8298e82f63", - "width": 70, - "x": -5600, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e600222-a35f-4e72-9c02-3017d8a14485", - "width": 70, - "x": -5530, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "65f8c1eb-bd45-4170-ab23-04640fff0b56", - "width": 70, - "x": -5740, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e3c83fad-d580-4605-95ed-daf7da3ab5d6", - "width": 70, - "x": -5670, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ab5d799e-113f-4e65-ae90-21022ff5e0ec", - "width": 70, - "x": -5810, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e930e389-749c-4fe6-a799-fa628b4fa914", - "width": 70, - "x": -5950, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e049bc19-9b7f-42d2-a022-878628173fff", - "width": 140, - "x": -5250, - "y": 9380, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "0428247b-4489-45d5-836b-06950abaf878", - "width": 140, - "x": -5250, - "y": 15260, - "zOrder": 12658, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "c0a36e92-2a5a-47eb-b8d4-6a19589f533c", - "width": 980, - "x": -7210, - "y": 9030, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "cf418193-66a1-4627-b1c4-624cb0d4fe12", - "width": 70, - "x": -6230, - "y": 8680, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3570, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "2a70ef4a-edb4-4a98-b366-0bce3090ee09", - "width": 140, - "x": -6020, - "y": 8610, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "86c24e58-93d8-45f8-9944-6159c9dab371", - "width": 70, - "x": -6440, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ebdbe2a-2321-4d39-9085-3ec282acf52b", - "width": 1050, - "x": -7280, - "y": 8890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c6471bf2-7a6f-43dd-a7dc-4d1171362f16", - "width": 140, - "x": -6370, - "y": 8820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9ed9b623-3667-4b99-8676-229c7dd77235", - "width": 70, - "x": -6230, - "y": 8610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f3ac1b13-796a-48fb-9261-c5ed02df71ad", - "width": 70, - "x": -6230, - "y": 9030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f324f87b-c1fb-4db9-a4b2-a8651e8790da", - "width": 70, - "x": -7280, - "y": 12180, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "8a4102bb-318a-4c22-8ba8-42c2d2cb7e68", - "width": 1330, - "x": -7210, - "y": 12180, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "b18577ce-a6af-465d-8b30-fbe97ac6869a", - "width": 1330, - "x": -7210, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d85dfb0c-48fe-40bf-85e0-30201e1554bb", - "width": 1470, - "x": -7280, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7c72e7d4-c5fc-4aa2-8b94-46573a215974", - "width": 1470, - "x": -7280, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "1f333745-12b8-4af0-8cdd-daed055eeb4a", - "width": 1540, - "x": -7280, - "y": 12390, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "dc53239a-8a62-44ac-8852-f2f3b878a71f", - "width": 70, - "x": -7280, - "y": 12670, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3f4c654e-c56b-4323-9fa9-9d273f6b67f4", - "width": 140, - "x": -7420, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3220, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "d1ac5eae-3323-42ba-a89d-20c21e613994", - "width": 70, - "x": -7490, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "606965de-e14e-40df-98a3-442e31bfddb8", - "width": 70, - "x": -7490, - "y": 12530, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "70527afe-0d4f-4f40-9737-b0c39936b9a6", - "width": 70, - "x": -7490, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ea369a21-ba2f-4e72-b7bf-292642120f58", - "width": 70, - "x": -5880, - "y": 12180, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "debd15d3-de75-4904-b7af-b85b9e0d6e44", - "width": 70, - "x": -5880, - "y": 12600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a18cff49-49c4-487f-8dcb-92e223438fcb", - "width": 70, - "x": -5600, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c26cec2b-ff3b-4477-8c66-bff04be443be", - "width": 70, - "x": -5740, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0d8b7fa9-a1c9-4fe7-b410-8320f2f94536", - "width": 70, - "x": -5600, - "y": 12250, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "292a1c78-5c49-43f1-85a8-eef10ac7f655", - "width": 70, - "x": -5600, - "y": 12530, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "244176ea-4969-4996-bd04-92cc62952658", - "width": 70, - "x": -5600, - "y": 12600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "8f6600e9-9864-4842-8ad7-7bb827f8d1e8", - "width": 70, - "x": -5880, - "y": 12670, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3500, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df1df638-326d-4a45-bf7a-5e09cbe96b7a", - "width": 210, - "x": -5810, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cd7ba06b-ade9-458b-9e56-ce05864b850e", - "width": 70, - "x": -5600, - "y": 12320, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "960f8a1a-4220-4490-ad29-2a2385ddd8ae", - "width": 70, - "x": -5670, - "y": 12390, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5cf5b97c-6084-46a9-bf52-b64908ab4013", - "width": 70, - "x": -5600, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "40f8b2d4-02ee-4662-b847-68e466ffcd92", - "width": 70, - "x": -7490, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9b159405-0583-48cd-abd3-bdcc68621e8d", - "width": 70, - "x": -7490, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c5c45f0-f677-40d5-bf43-eb78bb82b24e", - "width": 70, - "x": -7350, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f343a6b2-e95a-4db0-b2e1-6b53b53258c3", - "width": 70, - "x": -7490, - "y": 15890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fcade6f6-9693-482a-8acf-422bf57f0c27", - "width": 70, - "x": -7420, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3ab07225-749f-48cb-ba96-0d184e6d6e18", - "width": 70, - "x": -7280, - "y": 16170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ed19dd95-100b-43f4-93e0-a0dc5e97ad94", - "width": 70, - "x": -7280, - "y": 15750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "c9b0c628-1adb-47fa-967a-b3c7f5bfdcb4", - "width": 1330, - "x": -7210, - "y": 15750, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "0de29563-80f0-401e-929d-ef370e55fef0", - "width": 1330, - "x": -7210, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "80b5adb8-6e92-44e1-95fd-0d35f464f6dc", - "width": 1470, - "x": -7280, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "30acc944-738b-43a8-8327-cd58be4d0df2", - "width": 1470, - "x": -7280, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "dbbffa7b-5463-406d-ad64-0a2db18ec55e", - "width": 1540, - "x": -7280, - "y": 15960, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "80de29c6-c54e-4537-b114-2b9a01aab776", - "width": 70, - "x": -7490, - "y": 16100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5d92f2c4-007f-4b4c-b86e-f4d889da266b", - "width": 70, - "x": -7490, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "54a50d37-010f-42b2-8a7b-c96134291ebe", - "width": 70, - "x": -5880, - "y": 15750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "153c8673-aafb-4011-b33a-553b9efba106", - "width": 70, - "x": -5880, - "y": 16170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "17845cfa-9f77-4658-9cb1-0179fcf90027", - "width": 70, - "x": -5600, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4d91c982-9f9c-4c7f-878e-f280d8ba99d3", - "width": 70, - "x": -5740, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a98fdbec-63e6-4d3c-971f-16f4dc347e46", - "width": 70, - "x": -5600, - "y": 15820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dad394ae-0cc7-4c11-a9b8-68d0bea886df", - "width": 70, - "x": -5600, - "y": 16100, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0516eefc-ed61-4f60-a4d1-1e1b5ed36d0d", - "width": 70, - "x": -5600, - "y": 15890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "007131f4-d22a-4651-975f-9973f0a82ce4", - "width": 70, - "x": -5670, - "y": 15960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fcb3916d-a0c2-4365-a0f8-5eae41e14ff3", - "width": 70, - "x": -5600, - "y": 16030, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7630, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "a9952c56-84d3-4513-9ebd-799a9e2b7aee", - "width": 70, - "x": -5880, - "y": 16240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "a4eab494-9065-4aac-9a58-6ebd9c9a99bb", - "width": 70, - "x": -5600, - "y": 16170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c493afe0-c237-41c2-b0f3-cc82a6de213f", - "width": 70, - "x": -7280, - "y": 18270, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "50006927-54f1-417a-bdb4-1b24eee36437", - "width": 70, - "x": -7490, - "y": 18060, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "926f244a-7638-472e-bcfb-a6fdc6714085", - "width": 350, - "x": -7630, - "y": 18270, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df90dbbf-e96f-438e-80bd-209f9397ef43", - "width": 70, - "x": -7490, - "y": 18130, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "954249de-de86-487e-ad4b-6bdc07a47896", - "width": 4130, - "x": -7770, - "y": 8470, - "zOrder": 12646, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "fbd33304-6397-4dd4-91b4-d8e95b4e5d62", - "width": 140, - "x": -2870, - "y": 7560, - "zOrder": 12649, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "747d6392-240d-4a72-9d97-2a6742a5d615", - "width": 70, - "x": 5810, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "59544f10-5486-43aa-9fbc-11bf86e0015e", - "width": 70, - "x": 5740, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f7edadb9-b071-44a8-9bd3-be16ba1346e1", - "width": 70, - "x": 5600, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "28f58568-7d44-4ee6-8a00-1f565b17b620", - "width": 70, - "x": 5670, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7ef45b99-4d78-491d-8b32-230cd7285cf1", - "width": 70, - "x": 5460, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "92f2e168-2684-44bb-99ae-1b76ec56add9", - "width": 70, - "x": 5530, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e437e024-8d34-4f8d-8797-2fc0f1f85f51", - "width": 70, - "x": 5390, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30c38fd7-5475-4ebc-9a87-cf21e025634f", - "width": 70, - "x": 5250, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d22fb8a-0fee-4b5e-8182-45640b04480a", - "width": 70, - "x": 5320, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5a2f2c5c-2bb7-4d16-bf91-a29ec91ad923", - "width": 70, - "x": 5110, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "517e082e-da60-46d4-8ce4-88c1353e9226", - "width": 70, - "x": 5180, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0798feb5-f77a-45d9-815a-712cb8c5328d", - "width": 70, - "x": 5040, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4fa14595-b7ec-4282-86c5-47d8c237a3d4", - "width": 70, - "x": 4900, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9530377e-6427-4be9-99f5-6b159c8d8f4b", - "width": 70, - "x": 4970, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "871b38fc-f3fb-49f6-938b-3079c52776b7", - "width": 70, - "x": 4760, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "699b0009-b10c-4d42-a266-4c1250c393af", - "width": 70, - "x": 4830, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cc6db416-96e4-4635-954f-327ac53266f0", - "width": 70, - "x": 4690, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "357e35fb-ea54-496c-a129-82142518d026", - "width": 70, - "x": 4620, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "0c6a28c1-6234-4e92-acfa-6f0a87189043", - "width": 1820, - "x": -7770, - "y": 7490, - "zOrder": 12660, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "01278d5e-6f1c-4eca-a9e7-7812a094cad6", - "width": 70, - "x": -6370, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a1d35863-8988-483e-977a-fba78df964dc", - "width": 70, - "x": -6300, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d4d7ee0e-1b99-49b9-a71c-f757a7b16fa6", - "width": 70, - "x": -6510, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b49f945f-c153-4fc3-bb46-7300c8aa644c", - "width": 70, - "x": -6440, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d618c788-5e99-444a-8a9d-e0ca3246f409", - "width": 70, - "x": -6580, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "87fae5ec-912b-41cf-acbc-419e80085b0b", - "width": 70, - "x": -6720, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6773a4d7-446e-45ea-a776-286f5f15d9b8", - "width": 70, - "x": -6650, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cf60ab02-1cbf-4666-b01f-8a6621f713c3", - "width": 70, - "x": -6860, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ca84d90a-0af9-4013-919a-e153212ff583", - "width": 70, - "x": -6790, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "edc9721f-38da-46cf-9f82-f972b49f9bf2", - "width": 70, - "x": -6930, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b188996c-0163-4978-aeb9-a552c852f4bf", - "width": 70, - "x": -6020, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "35ba16e0-86e6-4408-9caa-af86b4f9202f", - "width": 70, - "x": -5880, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "52c22f56-fe31-4749-8faf-0ea21a4208b3", - "width": 70, - "x": -6090, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4aa8561-f583-41c6-bc1f-f88bc5c62a3a", - "width": 70, - "x": -6160, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "df1bb30d-49e0-4dbb-ab47-9af98b0a3847", - "width": 70, - "x": -6230, - "y": 7420, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dfb72c0f-8cad-4d90-abc9-a2c79991024e", - "width": 70, - "x": -7840, - "y": 7560, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "da60912e-7970-46e1-a8cf-6807b3ebb42d", - "width": 70, - "x": -7840, - "y": 7630, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b1c956d2-2460-4fe7-95b7-dcf9250f0c4d", - "width": 70, - "x": -7840, - "y": 7700, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "15004ebc-d47b-4fd6-9d82-03ef3599990f", - "width": 70, - "x": -7840, - "y": 7770, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f55b1e3e-5954-46d9-9be8-a54788cc5e22", - "width": 70, - "x": -7840, - "y": 7840, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "86ca7fc8-e261-47ae-9232-89327790b4ae", - "width": 70, - "x": -7840, - "y": 7910, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4f4c4e7c-c161-4642-8375-31b70d6d81b1", - "width": 70, - "x": -7840, - "y": 7980, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "56f7e25c-087f-47f4-a877-0a755e26c419", - "width": 70, - "x": -7840, - "y": 8050, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e95157c-a6cf-4e5c-975a-fb10e1b19181", - "width": 70, - "x": -7840, - "y": 8120, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e93bb75-47a8-424f-8255-7962ab051791", - "width": 70, - "x": -7840, - "y": 8190, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "856d34ea-4f47-4913-bdbe-7ea13f95e898", - "width": 70, - "x": -7840, - "y": 8260, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2a5f0290-8917-4b0d-a88e-d1b477936edb", - "width": 70, - "x": -7840, - "y": 8330, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6790, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "e0c640da-0084-47bd-93f8-5e652a9f3031", - "width": 1820, - "x": -9870, - "y": 8610, - "zOrder": 12661, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "beach_sand_1", - "persistentUuid": "51c7c9dd-f563-470f-ad44-fa0ed1156891", - "width": 1820, - "x": -9870, - "y": 8540, - "zOrder": 12662, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ebdc4bee-0d6f-479f-93eb-312c182ed5fd", - "width": 70, - "x": -9100, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "274ffd88-4317-4ee2-8bc0-5d33074fd6ab", - "width": 70, - "x": -8890, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "34fc7ec9-8925-4213-9a59-0a9806ac6394", - "width": 70, - "x": -8960, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "46287452-7b8b-470c-a97a-d0161b338857", - "width": 70, - "x": -9030, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "84c2af78-dcd6-4047-aea1-0235e2de1db0", - "width": 70, - "x": -8820, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1252a170-eb8c-43fc-8e97-a7b31e09439a", - "width": 70, - "x": -8610, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "838c7491-cb6e-43e9-bae7-f60e00238466", - "width": 70, - "x": -8680, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e4547ffd-c3c6-4fd5-8e1d-8498dcb36035", - "width": 70, - "x": -8750, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8bf9c58-30ae-49bb-90d0-4e997a7bc159", - "width": 70, - "x": -8400, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d9e09dd1-f62d-4a1d-8a3e-08f876a9b69a", - "width": 70, - "x": -8470, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "344bf0b6-a0b7-4a50-9a2d-1bf9f6ec32ef", - "width": 70, - "x": -8540, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9800, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "a0fe8956-e774-424c-9001-a6a11410b865", - "width": 140, - "x": -7840, - "y": 8540, - "zOrder": 12663, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "9d7b6c55-dbd9-40b8-a3f0-aad4d1720f4b", - "width": 1050, - "x": -7070, - "y": 12040, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c3e53d1c-6830-475d-882c-e17d7a550d18", - "width": 1050, - "x": -7070, - "y": 9100, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "180490f3-a905-4132-adf1-4cf11e32a910", - "width": 1330, - "x": -7210, - "y": 12670, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "78ab74a4-b5d9-4f14-b49b-46b18f1624b6", - "width": 1330, - "x": -7210, - "y": 15610, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "076bb920-c92f-47a2-9192-c864240f6a8b", - "width": 140, - "x": -6020, - "y": 12810, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c8e922bb-cd53-48b4-a2cb-33dd698ad0e5", - "width": 140, - "x": -7210, - "y": 12810, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5cd2c23f-7a4c-48c9-bdea-0f8e10c7f50d", - "width": 140, - "x": -6020, - "y": 16240, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "21931ba2-4238-44f8-835b-e06aaa539a9c", - "width": 1190, - "x": -7210, - "y": 16240, - "zOrder": 12664, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "95d8ba7f-6d28-46b7-ad66-08997cdd5281", - "width": 140, - "x": -7210, - "y": 16380, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "801ed26a-d522-456f-a40f-9b70e2eadd30", - "width": 630, - "x": -8470, - "y": 15400, - "zOrder": 8, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "51725be8-f4f8-41b5-a979-0845ea9f3c2e", - "width": 70, - "x": -9100, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "215adfbd-37cc-4092-9b48-f94f06448788", - "width": 70, - "x": -9030, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "cce5a629-5d3c-4747-938c-39fd6f764242", - "width": 70, - "x": -8540, - "y": 15400, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "73496796-23a9-4b9e-b39d-64cbacc50cb9", - "width": 70, - "x": -8540, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13be407c-2ef5-4937-b3d4-fccc47c2dae7", - "width": 70, - "x": -8540, - "y": 15470, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3615c8c8-c3af-458f-b452-e4a95b62d6e2", - "width": 70, - "x": -8540, - "y": 15540, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c5598384-2307-4908-84dd-5885d3761a1f", - "width": 70, - "x": -8540, - "y": 15610, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "72758e61-cab9-429c-9044-f2f7d52c9b5e", - "width": 70, - "x": -8540, - "y": 15680, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "63739beb-1704-4ab8-bb69-30546404ec18", - "width": 70, - "x": -8540, - "y": 15750, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9401413c-d589-4765-9295-be71248f6855", - "width": 70, - "x": -8540, - "y": 15820, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "70be31a1-20a9-40af-9bdf-e4d272666c59", - "width": 70, - "x": -8540, - "y": 15890, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16893649-5bee-4696-9203-d5af14abfd1d", - "width": 70, - "x": -8540, - "y": 15960, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "45a8a0a0-e0bf-4af6-a77a-12f646ff8735", - "width": 70, - "x": -8540, - "y": 16030, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d343bf95-8cfc-4fb9-aef7-81ac678f1167", - "width": 70, - "x": -8540, - "y": 16100, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03d6d3e1-7e1f-43e4-9f4d-7af1c003c8fc", - "width": 70, - "x": -8540, - "y": 16170, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "70d8133d-d163-48d5-83d0-261fe5a5b60f", - "width": 70, - "x": -8540, - "y": 16240, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b7a4c86a-ea63-4de9-83e0-f61be2b5580a", - "width": 70, - "x": -8540, - "y": 16310, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5b604799-0dff-48be-add4-e426dfb66983", - "width": 70, - "x": -8540, - "y": 16380, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "98929ab3-3035-4a2a-a2bf-2b7c5a94796f", - "width": 70, - "x": -8540, - "y": 16450, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d0988c1f-a59d-4a62-9b16-e0b928300e3a", - "width": 70, - "x": -8540, - "y": 16520, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5ffc8aa-ae16-4cd9-a574-114eff3d0fc4", - "width": 70, - "x": -8540, - "y": 16590, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "739fb669-7b17-4c04-ad0c-72c3cf1d68c4", - "width": 70, - "x": -8540, - "y": 16660, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "85c3557f-43c3-4278-a0a7-efb71749b491", - "width": 70, - "x": -8540, - "y": 16730, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0dbd9d7c-8e68-4bd9-875c-34e6caba8165", - "width": 70, - "x": -8540, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "30561e0f-0398-40ff-9013-1767e82ef26b", - "width": 70, - "x": -8540, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f4be9897-3610-4fd8-b3e5-094dc92d7fb5", - "width": 70, - "x": -8540, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a159ef39-2b4d-48eb-8005-9844a75f3e35", - "width": 70, - "x": -8540, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a1f10f21-82d7-4d07-a277-596e71e9bb74", - "width": 70, - "x": -8540, - "y": 17080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b0a68466-289e-4235-80ee-802bb36623ba", - "width": 70, - "x": -8540, - "y": 17150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f2d93dca-0471-4992-b1b3-8593618d3083", - "width": 70, - "x": -8540, - "y": 17220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "899e3ce9-5136-426c-9c9f-3c48007752a3", - "width": 70, - "x": -8540, - "y": 17290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d42759be-58bf-4dac-84ad-09a1e53b1ed6", - "width": 70, - "x": -8330, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f1ac6b5b-a69e-4f12-bbe5-56ec7cd99721", - "width": 70, - "x": -8260, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d504e5f6-61f1-444e-8434-65340066ce11", - "width": 70, - "x": -8470, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "690def48-c67e-4e48-8a67-cbe1482dcb00", - "width": 70, - "x": -8400, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "40682cb6-63b1-4026-960f-bb2c832ef979", - "width": 1050, - "x": -7070, - "y": 12810, - "zOrder": 12665, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "6100d9c5-fdff-40b8-aad7-f9d5aba2037c", - "width": 1050, - "x": -7070, - "y": 9240, - "zOrder": 12666, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "5fa76c32-1d01-42ab-976f-987c43b3f289", - "width": 3290, - "x": -11550, - "y": 17430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7280, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "89cfc073-3290-4d70-a7ef-5e9de095cf7d", - "width": 1610, - "x": -11550, - "y": 8190, - "zOrder": -5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "a7698ac9-1411-40ef-bada-6e6681470ddf", - "width": 1120, - "x": -8260, - "y": 18830, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "44760818-59df-4515-a9c6-f201e09a086f", - "width": 770, - "x": -7840, - "y": 18340, - "zOrder": 12668, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "431986c2-42fa-4434-b9be-2e7d175c221e", - "width": 70, - "x": -8190, - "y": 17360, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1120, - "layer": "", - "locked": false, - "name": "beach_sand_1", - "persistentUuid": "32cb1e6a-cb96-486d-af0b-bc1bd4141329", - "width": 70, - "x": -7910, - "y": 17360, - "zOrder": 12669, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "8d27c4ee-c909-401b-b74e-1d8493b84797", - "width": 210, - "x": -8120, - "y": 17430, - "zOrder": 12670, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "8f9ab754-0a6b-4389-97e4-0d7af7c4a1e5", - "width": 210, - "x": -8120, - "y": 17360, - "zOrder": 12671, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "f601f492-9391-4f52-afd9-f6a27cc40669", - "width": 70, - "x": -8190, - "y": 17430, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7cc478e9-09a4-4573-9ef4-b2c0c95e52b9", - "width": 70, - "x": -8190, - "y": 17780, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "39805134-c524-4339-8d36-7be1a4d9eea8", - "width": 70, - "x": -8260, - "y": 18130, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "11ff7831-e03e-4c47-97c3-dcb77cccdd21", - "width": 70, - "x": -8120, - "y": 17780, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "96d5b6bb-10c1-4606-95a3-777d1bd9540d", - "width": 70, - "x": -8120, - "y": 18130, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fa42e8b7-6224-481a-88db-dd3fdf2250b2", - "width": 70, - "x": -8190, - "y": 18130, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "a823044c-10c3-4167-b9b8-c007d6686ae1", - "width": 70, - "x": -8050, - "y": 17850, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "9982d215-af46-48eb-aa8e-5cd9cc2208ef", - "width": 70, - "x": -7980, - "y": 17780, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7e395f35-9e2d-4f8a-9176-f9f30ae2f0a4", - "width": 70, - "x": -8050, - "y": 17780, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00201be9-5abe-4601-b9f4-30a3c0f36816", - "width": 70, - "x": -8050, - "y": 18130, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e314b9c5-726d-48d9-9f52-d5abddebd494", - "width": 70, - "x": -8260, - "y": 18760, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "ec40ecbc-e917-4fa3-bc3b-a0023f92b335", - "width": 70, - "x": -8260, - "y": 18200, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "797cf128-d8e4-44c1-b293-16786e1d48d5", - "width": 70, - "x": -8190, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "158a6a25-5ee5-4758-8b14-d3aeff6143b0", - "width": 70, - "x": -8120, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "726a9ece-f5ef-4dbf-8ff1-176f38217077", - "width": 70, - "x": -8050, - "y": 18760, - "zOrder": 24, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a3e63b0a-15c2-448a-a7a9-dfe0891d61a6", - "width": 70, - "x": -7980, - "y": 18760, - "zOrder": 55, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "16ad7b90-c918-4a1a-8798-83b9439135a7", - "width": 70, - "x": -7910, - "y": 18760, - "zOrder": 55, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2d045b72-39ba-4d15-967b-40286c713e8a", - "width": 70, - "x": -7840, - "y": 18760, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f72976b7-7cf6-407a-a15e-d8bb917e1e49", - "width": 70, - "x": -7210, - "y": 18760, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0f40c291-4926-4415-b154-a659d2686153", - "width": 70, - "x": -7770, - "y": 18760, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "beach_sand_1", - "persistentUuid": "e30b081f-d0a8-454f-b34c-6b769be8af62", - "width": 280, - "x": -8190, - "y": 18200, - "zOrder": 65965, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8df8de97-3722-41f9-86ac-4ebeb0391e94", - "width": 70, - "x": -7700, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "10e5e803-af0b-46b5-95fc-7eb8ba926176", - "width": 70, - "x": -7630, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "afde8863-b662-4bdb-bb0f-ba3cbcb31c91", - "width": 70, - "x": -7560, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5d22dbb9-a22a-45de-9826-4acfe2d94482", - "width": 70, - "x": -7490, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00919362-687c-4208-8639-1f6e051337b4", - "width": 70, - "x": -7420, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "228ec643-f44a-44b6-87b7-10972e3d84c1", - "width": 70, - "x": -7350, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4ae25afc-a090-49e1-9b44-465eee2b8313", - "width": 70, - "x": -7280, - "y": 18760, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "f0b6928f-7e4e-428f-a372-b7927cd05593", - "width": 70, - "x": -7210, - "y": 18690, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "04acfa31-ccfd-40f9-bb97-142c1985ae3c", - "width": 70, - "x": -7210, - "y": 18620, - "zOrder": 12643467, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9f32369d-057d-4e4d-8c4e-da4b613e3b4d", - "width": 70, - "x": -7140, - "y": 18620, - "zOrder": 65964, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b12353c7-f20d-44d0-a5c7-d27910ab4242", - "width": 70, - "x": -7070, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "9d65101e-93d3-467f-a32b-6fdb9e61a8b6", - "width": 70, - "x": -7000, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "655c2e48-1be4-4d9a-a139-cf756cd88247", - "width": 70, - "x": -6930, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a382ac6c-44eb-4114-a5b6-55c8f58c3cdc", - "width": 70, - "x": -6860, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5cb19bed-8ef6-4b75-9783-81ab6e5cff40", - "width": 70, - "x": -6790, - "y": 18620, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "beach_sand_1", - "persistentUuid": "8453de9c-a6d6-4a27-927c-48030ce2c2df", - "width": 700, - "x": -7910, - "y": 18480, - "zOrder": 12643468, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "ed3323bb-cf76-4c59-b8e9-1b8baa2fa18a", - "width": 70, - "x": -6720, - "y": 17780, - "zOrder": 12672, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8a63d59d-e43d-4751-bde2-3b92d2f61dc9", - "width": 70, - "x": -6720, - "y": 18620, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "ea4cd821-8e02-4235-ad7d-e0c6d181cea4", - "width": 350, - "x": -7070, - "y": 17780, - "zOrder": 12643469, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "7dfb4339-c831-4de2-b5c3-384bb8a38a82", - "width": 490, - "x": -7210, - "y": 18480, - "zOrder": 12643470, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e774fc00-6171-4bbe-8b3a-1e655ded2d64", - "width": 70, - "x": -6720, - "y": 17710, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "00e41956-e6ba-499e-bae9-fd653585b9e1", - "width": 70, - "x": -6860, - "y": 17570, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "fcea7bdf-2481-43e5-a01c-f89153a9378f", - "width": 70, - "x": -7000, - "y": 17360, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "d98ee9fa-a210-4903-bde7-6d0e9425e558", - "width": 70, - "x": -7070, - "y": 17150, - "zOrder": 21568, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aff21ba1-4383-4d42-8b05-dfc1b4aa0d38", - "width": 70, - "x": -6790, - "y": 17710, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "fe0c03b4-1d40-4551-8c32-eb5b2f5fe8fa", - "width": 70, - "x": -6860, - "y": 17640, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "4ff60bb3-7ecd-420f-8cfb-9df856aa9da3", - "width": 70, - "x": -7000, - "y": 17430, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "beach_sand_2", - "persistentUuid": "497d1d83-0508-440d-8a73-8f96c077a60d", - "width": 70, - "x": -7070, - "y": 17220, - "zOrder": 12643471, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8a42b480-f06e-4606-8397-ce773ab13a86", - "width": 70, - "x": -6930, - "y": 17570, - "zOrder": 243456, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "3ed307a1-002d-416f-97d9-cb2de96af2e7", - "width": 70, - "x": -7070, - "y": 17430, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "fd6528b1-3900-47e5-9240-6ce9914b2908", - "width": 70, - "x": -7000, - "y": 17640, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_2", - "persistentUuid": "7d130c06-9879-4ea4-a4e8-eba78e28788b", - "width": 70, - "x": -6930, - "y": 17640, - "zOrder": 12673, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e500497b-bdbb-4d52-90ac-d524965b7d7c", - "width": 70, - "x": -7070, - "y": 17360, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "566536d3-c497-45ab-99c4-4737d460c095", - "width": 70, - "x": -7000, - "y": 17570, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "617790bc-3093-44d6-8f4e-cfa53707d94d", - "width": 70, - "x": -6860, - "y": 17710, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "0f75a9dc-160c-45d7-a39a-2679f6d5b3fa", - "width": 1050, - "x": -7070, - "y": 16380, - "zOrder": 12643472, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "2b1cb9f5-fee2-4c47-8cd5-14447f78871c", - "width": 70, - "x": -6160, - "y": 17080, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4b171ec9-f2f8-4067-98d1-b0f509453d95", - "width": 70, - "x": -6300, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a5ed2346-3721-4e4a-b22e-1833895ac76d", - "width": 70, - "x": -6230, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "aadbe79e-b9db-4b82-a899-39dcc7a18559", - "width": 70, - "x": -6440, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "8723f613-d8fb-4c39-b981-581a92303ad7", - "width": 70, - "x": -6370, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "014fec03-a8ff-426c-bf9f-c0c247f5381c", - "width": 70, - "x": -6580, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3a3f656b-455f-455e-8834-999cecb3b746", - "width": 70, - "x": -6510, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "03762107-4e9a-4909-ab02-86cf5bf2c4fb", - "width": 70, - "x": -6720, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "13adc3f0-3f49-4f8e-a7d3-2b21e788b19f", - "width": 70, - "x": -6650, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "95f1b7a1-a599-4641-9f52-51f16b46ade8", - "width": 70, - "x": -6860, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e029d00f-9528-4029-b7c1-72d6f9e9e7ad", - "width": 70, - "x": -6790, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a371c961-d145-44e2-9535-8660cc19c6e5", - "width": 70, - "x": -6930, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c53f6ca1-198d-4b5e-89ee-739f20698d5a", - "width": 70, - "x": -7000, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "6cb7f7d3-0698-479a-a8a1-5e04f124515f", - "width": 70, - "x": -6160, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "bac197e6-2fac-4658-b0b1-f2f011d4da2e", - "width": 70, - "x": -6160, - "y": 17150, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "be3a0e79-b0b2-44a2-85a2-9adb54125b80", - "width": 70, - "x": -6160, - "y": 17220, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b63dcb42-f6eb-4967-a22e-0b362a9e1ac2", - "width": 70, - "x": -6160, - "y": 17290, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "4638698c-2925-4c9d-9fbb-c86247156c1f", - "width": 70, - "x": -6160, - "y": 17360, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "41974193-0b75-41e0-96c0-f7f573b66c86", - "width": 70, - "x": -6160, - "y": 17430, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3df60252-032a-4743-9b74-850b5c221830", - "width": 70, - "x": -6160, - "y": 17500, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "242270fa-74a4-447c-9260-b446be7bd447", - "width": 70, - "x": -6160, - "y": 17570, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "0ae35c55-dc22-46d8-979f-647a3d88605a", - "width": 70, - "x": -6160, - "y": 17640, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e99892c5-f615-4fe6-b9a7-51d019f02afc", - "width": 70, - "x": -6160, - "y": 17710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f83f7012-5cfd-4d3d-8d7c-9ab65c1fa29f", - "width": 70, - "x": -6090, - "y": 17780, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "92f9bb64-c7b1-4f6a-a639-a55818de20e5", - "width": 70, - "x": -6090, - "y": 17710, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "5dc6fa2e-8ec0-4e59-955f-d8e92513960b", - "width": 70, - "x": -6090, - "y": 16800, - "zOrder": 12643473, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1fc5cd47-9cfe-467f-8fdf-17bc79720721", - "width": 70, - "x": -6090, - "y": 17850, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "57ccae66-3958-4e8e-8678-0c4ad5bf28bf", - "width": 70, - "x": -7070, - "y": 16800, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1a35d824-155f-415a-b79c-7e24ff546292", - "width": 70, - "x": -7070, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "67e022a8-1ddf-4660-b9e6-cb2efde4873c", - "width": 840, - "x": -7000, - "y": 16870, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 9800, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "66173c68-452d-490d-b059-0630696d1b07", - "width": 1260, - "x": 4760, - "y": 7490, - "zOrder": 12643474, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e4bfa92-4c67-4e73-9853-5cb28c55fe70", - "width": 70, - "x": -7070, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1d65b92a-2998-49b9-83a1-f0c24f2b4e54", - "width": 70, - "x": -7070, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6860, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d276a827-9c7d-4d13-a7ed-bedd49c84c1b", - "width": 210, - "x": -8050, - "y": 8540, - "zOrder": 12643475, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "4c7efd93-3705-40e5-836e-a462354c822e", - "width": 140, - "x": -6160, - "y": 8610, - "zOrder": 12643476, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "3c997480-0e40-4c70-8235-9a952e393e54", - "width": 70, - "x": -9870, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "dfb9a3d7-4045-405f-97a9-640f3dc1b469", - "width": 70, - "x": -9800, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8afff63-978d-42a4-be65-a4fa85bcd885", - "width": 70, - "x": -9590, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "38501f07-5359-4292-86c8-9b07fe67fefb", - "width": 70, - "x": -9660, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "36891e1d-e121-4f29-b8b3-35f13bb2b9a9", - "width": 70, - "x": -9730, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5b5a5fae-87e6-473e-b09c-4694eaf51c7b", - "width": 70, - "x": -9520, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "277f2110-5e53-419c-8fbb-9b392f2be5a9", - "width": 70, - "x": -9450, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "77f66f6a-5221-4027-bcb6-b9a1d19e81a0", - "width": 70, - "x": -9380, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a7dc17f3-e543-426c-8c26-bcbcbd7ac09f", - "width": 70, - "x": -9310, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e87c23d9-1656-4ac3-9753-a539e412ffb9", - "width": 70, - "x": -9240, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "19184887-f231-4ac1-9967-a1f82b5f1d1a", - "width": 70, - "x": -9660, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ea0cf809-e35c-4255-ac22-038cc5c37c09", - "width": 70, - "x": -9450, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "b0b266c2-c683-4832-bf5a-1eab25df6641", - "width": 70, - "x": -9380, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "a8d13ab8-5833-496a-aa17-78a2967d7706", - "width": 70, - "x": -9310, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1e1d71d6-62a5-4c59-afe3-3edeffc12d3e", - "width": 70, - "x": -9240, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "5901bd3f-a554-41dd-a0ac-cd97dbf3e23c", - "width": 70, - "x": -9590, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1deed8d2-f0fd-473c-89f9-a51bb5c49919", - "width": 70, - "x": -9520, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "1b7fb009-295a-49e0-ad7e-712ea8a9c724", - "width": 70, - "x": -9870, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "f65c86c2-4878-4f59-85b6-0bdd0c6813a1", - "width": 70, - "x": -9800, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "72b680ef-d407-414e-b567-8f9c3ba30624", - "width": 70, - "x": -9730, - "y": 15400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "5e8605c6-d1ab-4946-96c2-fa0eb2d8806b", - "width": 70, - "x": 2800, - "y": 9590, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "deffa7c0-2362-4349-8d39-38f349e9fc18", - "width": 70, - "x": 2520, - "y": 9870, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "dcc1e05f-57bf-4c11-8d03-969a4309b58e", - "width": 420, - "x": 2380, - "y": 9520, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4970, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ecb59d0-c34c-4abe-b6be-3e258e47434a", - "width": 70, - "x": 2730, - "y": 9590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4970, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7df9d2c7-8356-445c-b1c6-a1da5eb62dab", - "width": 140, - "x": 2590, - "y": 9590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b5cf0113-01a5-4cd3-8b00-3e6f71e894ee", - "width": 70, - "x": 2800, - "y": 9520, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "f414c422-29bf-42c4-b35f-364f3017da94", - "width": 70, - "x": 2030, - "y": 9240, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "88614646-a2ca-48ee-be4d-fa4ee0cd52fa", - "width": 70, - "x": 2310, - "y": 9240, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e6ad7029-9d18-4ac9-a029-8996b43b0186", - "width": 70, - "x": 2310, - "y": 9520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "503eacc9-3207-43e7-aa69-46654342cae4", - "width": 140, - "x": 2100, - "y": 9170, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4323a9c1-dfa6-4c90-9a51-3e3bfad0e58b", - "width": 70, - "x": 2240, - "y": 9170, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a88a6fde-1611-4e91-ae44-ed838c7b737e", - "width": 70, - "x": 2030, - "y": 9800, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "755b4c62-dae5-4e9c-acaa-84c85d58a0be", - "width": 420, - "x": 2100, - "y": 9800, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ee2e821-87d0-4e60-af04-29d278c77c12", - "width": 70, - "x": 2520, - "y": 9800, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c284df70-3795-4a89-9918-a27097c5b449", - "width": 490, - "x": 2100, - "y": 9730, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7379ba78-a14c-442c-bbb6-41c92a81d7fc", - "width": 490, - "x": 2100, - "y": 9590, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "11350731-d751-46d4-b888-356b0a4ae292", - "width": 1610, - "x": 2380, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0dbfcca3-0751-4378-ac7f-f9432ad2f414", - "width": 70, - "x": 2310, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3a793d17-aac2-4b13-b7e8-5d0db8aa4b9a", - "width": 70, - "x": 2030, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e36c146d-647e-4a51-a28c-60a6aa95e12d", - "width": 1610, - "x": 2380, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "3c8aa9c9-b643-41a4-9784-7c319234b448", - "width": 1120, - "x": 2870, - "y": 14490, - "zOrder": 12643482, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3d7cd72f-9e2f-489a-af37-a72d4f569259", - "width": 70, - "x": 2520, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c98b5071-c886-43e5-a878-bfe41f833f88", - "width": 70, - "x": 2800, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5627212d-ac54-4ae8-82a8-301f7cadfb56", - "width": 1330, - "x": 1190, - "y": 14350, - "zOrder": 12643483, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "3ca155e3-9658-4371-9596-d749422b62f8", - "width": 980, - "x": 2870, - "y": 14350, - "zOrder": 12643483, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "a8360158-2ce0-4708-ac13-fdf96ecffe1d", - "width": 1330, - "x": 1190, - "y": 14490, - "zOrder": 12643484, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "646eeadb-556c-4791-95da-b739c3858a24", - "width": 70, - "x": 700, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "af9b61ea-625f-45b8-8f6b-760883af7598", - "width": 70, - "x": 1120, - "y": 14490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2bb2b689-955d-4fd8-848c-2c07d4f80f11", - "width": 70, - "x": 910, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "540426af-3ce7-4e34-aa62-4ff00a59a438", - "width": 70, - "x": 1050, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b95e7cdd-7995-4198-99f5-68aa84b83fc1", - "width": 70, - "x": 910, - "y": 14630, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "117a464e-6a45-4f4f-a550-a59dc94e2c77", - "width": 70, - "x": 770, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "98dfa310-4004-4e95-8a31-b502e60494f8", - "width": 70, - "x": 910, - "y": 14700, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d317825d-48e1-4839-b002-12d7b3af25b5", - "width": 70, - "x": 980, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e0ba0b65-7ac3-41af-96e5-495e256bf15d", - "width": 70, - "x": 840, - "y": 14770, - "zOrder": 12643485, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8109ac20-376a-4115-82bb-7a7e6f54c345", - "width": 70, - "x": 1190, - "y": 9380, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f860c398-399e-4962-8682-84e2551ea854", - "width": 70, - "x": 630, - "y": 9240, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b62b0064-7910-4d3c-8f00-489956c79e28", - "width": 280, - "x": -8050, - "y": 8470, - "zOrder": 12643486, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "ea21d1ce-7e5d-47f5-8c34-9e3b70044156", - "width": 70, - "x": -8120, - "y": 8400, - "zOrder": 12644, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e749d8e3-42db-4af7-bc82-78e3ed77da3b", - "width": 70, - "x": -8120, - "y": 8470, - "zOrder": 12643, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "e833e94b-98c0-48eb-9c9e-478db4eeb27a", - "width": 770, - "x": -6930, - "y": 17360, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "6771c954-cf99-409c-b53b-80ea50dc4168", - "width": 700, - "x": -6790, - "y": 17570, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "f64ce44a-6e7b-48a6-85b3-56391983c7fc", - "width": 70, - "x": -8260, - "y": 17430, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "428a9e7e-6dd4-4c57-b75e-1057dfd20bd5", - "width": 140, - "x": -8190, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "72c54e6f-2292-4661-9cca-6b413334a81f", - "width": 3010, - "x": -11550, - "y": 15470, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "73bd6316-916c-4329-ab8b-c29491da6114", - "width": 1820, - "x": -9940, - "y": 7420, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "a76ce4ec-120f-4472-b386-1083fd410968", - "width": 280, - "x": -8120, - "y": 7420, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3710, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "38fd4693-d24c-41bd-b668-2dd68d0a4aeb", - "width": 280, - "x": -3850, - "y": 3710, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "13c0a2b2-58ed-4052-906b-30126b74f16c", - "width": 1330, - "x": 3430, - "y": 1050, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "5cb168d7-0c57-40df-a8bf-77c324f5afdf", - "width": 70, - "x": -1330, - "y": -1960, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "8acc75b9-9d6b-46b2-8b1c-e0855d4af942", - "width": 70, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", - "width": 280, - "x": -2800, - "y": 3640, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", - "width": 70, - "x": -2590, - "y": 3360, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "3025dfca-2a78-42fe-88ea-f5b5201ce6a3", - "width": 2170, - "x": -2520, - "y": 3360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", - "width": 210, - "x": 3220, - "y": 1120, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "48dcf900-a30a-4257-af94-b974326e3bf8", - "width": 70, - "x": 3360, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "25fb9619-1f9c-4f5b-89c7-51ae50950ca4", - "width": 4690, - "x": -1330, - "y": -560, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", - "width": 70, - "x": -1330, - "y": -490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "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": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "edcb6f9a-2c16-46a5-83ff-a2281a89d842", - "width": 70, - "x": -3850, - "y": 2170, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", - "width": 210, - "x": -3780, - "y": 3640, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "a162b4ea-6173-46f9-a85a-61c71fc7a04e", - "width": 4270, - "x": -7840, - "y": 7420, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "d5d2c653-478d-42e4-a9af-50dc0464ee5f", - "width": 7420, - "x": -2730, - "y": 7420, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", - "width": 70, - "x": -350, - "y": 3430, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", - "width": 70, - "x": 420, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", - "width": 70, - "x": 490, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", - "width": 70, - "x": 560, - "y": 2240, - "zOrder": 114, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "door6", - "persistentUuid": "8ece76a5-613d-4db9-b23a-7ce3e0967b21", - "width": 210, - "x": 1940, - "y": 1120, - "zOrder": 12643488, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "weapon_icons", - "persistentUuid": "e1f10fa7-78d4-4f19-91f7-1e2a6439f087", - "width": 0, - "x": 1170, - "y": 67, - "zOrder": 12643489, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e042c5e2-efbb-49b7-a0b7-6c0b5792a3ef", - "width": 6090, - "x": -5320, - "y": 10780, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": true, - "name": "road", - "persistentUuid": "7739b9f8-f40c-4433-9291-3a8cba7d4f84", - "width": 6090, - "x": -5320, - "y": 12530, - "zOrder": 12643490, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ac095ec6-7d39-468c-8c91-929d943d004c", - "width": 210, - "x": -2450, - "y": 10990, - "zOrder": 12643491, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8155c9ca-6539-4956-bcdb-5d4e64ac3dff", - "width": 210, - "x": -1330, - "y": 9170, - "zOrder": 12643491, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "01e1d755-9d54-4a4e-a931-de6b46f8cc37", - "width": 1470, - "x": 1120, - "y": 11410, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7d02376a-2279-4032-b27f-48cedca93877", - "width": 1260, - "x": 2800, - "y": 11410, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1d447aa6-1573-4c33-82ae-44b0fed1b5f3", - "width": 910, - "x": 1120, - "y": 13020, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "af23a607-b48e-416b-8a5d-1988608a0ba5", - "width": 210, - "x": 1820, - "y": 12810, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "83571f1b-56a8-4377-8a3f-5b248b07910f", - "width": 770, - "x": 1820, - "y": 12600, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": true, - "name": "grass_tiled", - "persistentUuid": "fc793079-ff0a-45cc-afeb-84141ddb8fdc", - "width": 8960, - "x": -5110, - "y": 16870, - "zOrder": -9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "e0627fea-7cdc-4399-b342-0a39842f86e6", - "width": 70, - "x": -6160, - "y": 16870, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "7b5d067c-92e8-4c55-a203-886eeb423958", - "width": 70, - "x": -6160, - "y": 16940, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand", - "persistentUuid": "94168488-5caf-486d-bbf1-1b94b9e1ed97", - "width": 70, - "x": -6160, - "y": 17010, - "zOrder": 12616, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "32ce0db4-cc1f-414e-956c-2f313f079a1b", - "width": 210, - "x": 840, - "y": 15050, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ff25d77-0d7a-434d-baf1-7d7738b89e56", - "width": 210, - "x": -2940, - "y": 15050, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1ff9ea21-751b-4b8f-a644-be48e933a6e8", - "width": 3010, - "x": 1050, - "y": 16170, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8303a4e7-1924-4f7e-bd7c-65b4cdd0f7d5", - "width": 3570, - "x": -2730, - "y": 15750, - "zOrder": 12643480, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c450d767-8906-4290-ac8f-9b9c6cbdc436", - "width": 70, - "x": -1050, - "y": 9240, - "zOrder": 12643497, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "3e77b787-b584-4c5b-82d3-a87e9a1967ad", - "width": 70, - "x": -1470, - "y": 9380, - "zOrder": 12643498, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "680b7da9-bed1-4cd2-9b95-0c83fcd0a7ee", - "width": 1610, - "x": -980, - "y": 10640, - "zOrder": 12643499, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "0fa3e663-991e-4a46-8f71-2b7fae1f4c84", - "width": 3640, - "x": -5110, - "y": 10640, - "zOrder": 12643500, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "889e97ba-d425-4216-afd1-76b70f76c949", - "width": 70, - "x": -2170, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8159bef8-1db5-44f4-82c2-94f834a4251e", - "width": 70, - "x": -2590, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e375491d-15ca-4eab-9ffa-d2d8dc97c427", - "width": 140, - "x": 1120, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "391b820e-b425-4753-a1c1-3331be9250da", - "width": 70, - "x": 1120, - "y": 16380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d5c6f58d-da1e-44be-a5ef-00ad9a7c83e6", - "width": 70, - "x": 700, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "495cb8c8-2881-49f3-8568-7561c2045a6c", - "width": 70, - "x": -3080, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "a25e8b82-3d6f-4a62-9632-256150bacb81", - "width": 70, - "x": -2660, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "6feef300-cdbb-48cd-8a95-7e23ec495270", - "width": 70, - "x": -2660, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "7f7d2cbd-8419-4b44-a7ff-b1988d247de2", - "width": 70, - "x": 700, - "y": 15260, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "100d31e7-7ea9-4568-b8f2-5ba3dfc328a3", - "width": 2520, - "x": -5110, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "cb430ccb-e8c2-4408-8d46-b799ddb79351", - "width": 2520, - "x": -5110, - "y": 12390, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b15b6516-47aa-4322-9f76-99c821bce1ff", - "width": 2800, - "x": -2100, - "y": 12390, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "043a2f8e-03d2-4cca-97c8-ef419dba6cb9", - "width": 2730, - "x": -2100, - "y": 11060, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b8c6512a-0aad-4012-922a-e65dd7e2d826", - "width": 5880, - "x": -5180, - "y": 12810, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "efc5152f-5ee6-4e0a-b26a-14fc7b1cba20", - "width": 3290, - "x": -2590, - "y": 15960, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "029e51c4-7bda-4a0a-a3ca-629b8a1f514d", - "width": 3290, - "x": -2590, - "y": 15680, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "55bd0d7e-7510-4c4c-8c64-aed20a865c4c", - "width": 2800, - "x": 1190, - "y": 16380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "0fc3d9c0-2e58-47e5-9f23-47c5627474b8", - "width": 2730, - "x": 1120, - "y": 16100, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f6391ff6-b446-4707-8d9d-3094b577fdec", - "width": 910, - "x": 1190, - "y": 13230, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "6c203a6f-6d4a-4cf0-b4be-cc73b1572f4a", - "width": 770, - "x": 1750, - "y": 12530, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "69d90660-ff7d-485c-8630-9128f133fc90", - "width": 630, - "x": 1190, - "y": 12950, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "1d9a5193-2a62-4b5e-bca7-7889aeb11b04", - "width": 490, - "x": 2030, - "y": 12810, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "06234479-56a4-4036-a7ec-23a8527fb605", - "width": 70, - "x": 1750, - "y": 12600, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "41c48415-2c63-4a39-acb7-c3861ab15138", - "width": 70, - "x": 2030, - "y": 12880, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "23178177-fa57-4f36-a21f-771e960789bb", - "width": 1260, - "x": 1260, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e9c3a6f0-c3c0-4f6c-9135-54efd8568518", - "width": 1260, - "x": 1260, - "y": 11270, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "18d33c01-88b8-4ef0-8caf-d1a80f92bef0", - "width": 980, - "x": 2870, - "y": 11270, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "0f8fdffc-9715-430d-be0f-2386de68805c", - "width": 980, - "x": 2870, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b454dd12-7fd2-4ebb-bb12-7c8ac543bb0c", - "width": 560, - "x": 1960, - "y": 9870, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "eac27552-b212-4cdb-b1dd-40f81f4652e6", - "width": 560, - "x": 2380, - "y": 9450, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f105f9e7-148c-450a-9bc1-5cf5cf8ebd73", - "width": 70, - "x": 1960, - "y": 9380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f7512d44-4060-420f-9400-e6114f96451c", - "width": 70, - "x": 2870, - "y": 9520, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8ddab793-4fe0-4fdc-8840-8005edffeadc", - "width": 70, - "x": 2450, - "y": 9940, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d5cfb198-c20b-4cc5-9a09-e38aaf9cd10a", - "width": 70, - "x": 2380, - "y": 9380, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c6c5c95a-d065-493e-ae36-f4a47529b24f", - "width": 70, - "x": 2450, - "y": 11760, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2590, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "94a052ef-083b-4a06-bacb-67f6f1791984", - "width": 70, - "x": 2870, - "y": 11760, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "def3d32b-ae60-4f7b-a986-2806231f00d2", - "width": 70, - "x": 2450, - "y": 12880, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "30abca1d-f46c-4c3d-a07a-8ff57691e021", - "width": 70, - "x": 2520, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "45a91d60-0368-45c9-af90-88a0c18ac7fd", - "width": 1330, - "x": 1190, - "y": 11340, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "51c78b04-7dc5-4172-8110-ba1f7b8155f9", - "width": 1330, - "x": 1190, - "y": 11620, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8235ed59-e314-432e-b90c-ca0f21e40daa", - "width": 70, - "x": 1120, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "df45c1d3-bd7c-494f-b26c-c703637613dc", - "width": 70, - "x": 1120, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "6445f5fc-74aa-410e-a89e-005585ce3f46", - "width": 70, - "x": 2520, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "2cbd23ce-0b9d-4d39-ac57-7cafa688fe11", - "width": 70, - "x": 1120, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "11bceeae-f109-4df6-a30e-836da82e7b67", - "width": 70, - "x": 2520, - "y": 12810, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "e7c201d9-9bbc-4298-8d7d-1029c361b470", - "width": 70, - "x": 1120, - "y": 13230, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "cf8f6061-19f4-4c8c-8b1a-1e3061328ea9", - "width": 70, - "x": 1190, - "y": 13300, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f60c5850-db03-495e-ba61-29410d7aae04", - "width": 70, - "x": 1190, - "y": 11690, - "zOrder": 12643501, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "ccf8237f-b267-4862-9c69-455005c2b513", - "width": 1120, - "x": 2870, - "y": 11340, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c86ddc89-26ff-4b96-aac7-7edd5c42e03f", - "width": 140, - "x": 3850, - "y": 11690, - "zOrder": 12653, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "78c237ba-82fe-47bb-bf5b-39ba05a1b6ba", - "width": 1120, - "x": 2870, - "y": 11620, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a3a7b433-3b08-4782-b893-37a26e22d242", - "width": 70, - "x": 3990, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "72c1dd4b-d3d5-4a33-b398-f6f4cb184864", - "width": 70, - "x": 3990, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "b1a39793-eb58-47dd-9b74-0f1000bdf0ae", - "width": 70, - "x": 3990, - "y": 11690, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "13c464b4-2016-45f7-b95f-e2c28cfdf14b", - "width": 70, - "x": 2800, - "y": 11690, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "458157e8-f8c0-4427-a471-9a082b8786a1", - "width": 70, - "x": 2800, - "y": 11340, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7874e2e1-dbda-4d91-bafd-21abe12903b9", - "width": 70, - "x": 2800, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1ba6031e-e7ce-470b-bb9b-60f31708892a", - "width": 70, - "x": 700, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b24d2c75-4e68-427f-b0e8-7cfdb0ecd730", - "width": 70, - "x": 700, - "y": 12740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": true, - "name": "road_3", - "persistentUuid": "697f7d36-879d-48a3-a2cd-b973bedd6668", - "width": 2730, - "x": -5250, - "y": 12460, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "28614a52-d196-464c-92e2-a25b7d0b46e5", - "width": 70, - "x": -2520, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "d3c68258-5690-4a6c-bd4f-a2a5c130b51f", - "width": 70, - "x": -2240, - "y": 11060, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "05f35f85-30f7-415d-9cfe-9f50589c8f40", - "width": 70, - "x": -2240, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "40323d70-4ebd-490a-975c-9bb8c0e85812", - "width": 2870, - "x": -2170, - "y": 12460, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "60cd48bd-5dcc-4fd1-b8d9-ad0f5ed558be", - "width": 70, - "x": -2520, - "y": 11060, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "518cf787-4d5f-4a5b-b13f-80ff8c778b53", - "width": 5950, - "x": -5250, - "y": 12740, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1680, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "22b7f40d-787c-4940-a90e-a3f4a102526f", - "width": 70, - "x": -5320, - "y": 12810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "74ad8c95-75ce-40e6-b0bc-2d48b6bd31b0", - "width": 70, - "x": -5320, - "y": 12460, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e58b927b-78bd-45bd-8173-c090e9ac2f47", - "width": 70, - "x": -5320, - "y": 12740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1680, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "6f97a09b-0300-4261-aa70-eadec8028cd4", - "width": 70, - "x": 700, - "y": 12810, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d9673fd3-afce-412a-bd87-d4038d57cdf5", - "width": 70, - "x": 630, - "y": 12880, - "zOrder": 12643503, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1540, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5d62e308-04da-4abc-809f-7c1046d2e562", - "width": 140, - "x": -5250, - "y": 12810, - "zOrder": 12643504, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "45c485fb-ae86-42b8-89b3-9643f082ce12", - "width": 140, - "x": -5250, - "y": 11060, - "zOrder": 12655, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "fc74767c-a2d4-4de5-acf4-6ebe4e8a97e3", - "width": 3850, - "x": -5250, - "y": 10710, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "806e57a1-c9c9-47fa-9b1e-8ba59201db9e", - "width": 2730, - "x": -5250, - "y": 10990, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2e9ef84f-551e-4daa-9bb1-0734e3dd1ac3", - "width": 70, - "x": -5320, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1dc5e481-e27f-4676-8787-0c0c5d785e1f", - "width": 70, - "x": -5320, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "cd0647a8-1424-4fab-9fdf-bfb58c16c12b", - "width": 70, - "x": -5320, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "dd86a73c-5865-4145-9bfa-7879ec72d01a", - "width": 1610, - "x": -980, - "y": 9240, - "zOrder": 12643499, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ba8fbef-4939-41a3-855c-9db9e1882971", - "width": 70, - "x": -1400, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0c332993-2c9e-4b57-8ea8-c0b0298ff609", - "width": 70, - "x": -1120, - "y": 9170, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "90b49373-9a24-41ac-93df-77c0319cdf8c", - "width": 1750, - "x": -1050, - "y": 9170, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "333b6627-597c-4e87-a3b3-3030455ee9b4", - "width": 70, - "x": -1120, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "42a40bef-22e1-44d8-8811-36d7efa782ad", - "width": 70, - "x": -1400, - "y": 9240, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "0e230f4f-d9fe-4307-8dad-b09906dc4cc1", - "width": 1750, - "x": -1050, - "y": 10710, - "zOrder": 12643502, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "67c83955-b672-46db-9dc0-e68f2b8ee264", - "width": 70, - "x": -1120, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a200e738-bffc-4e3c-9555-030fd1b892a1", - "width": 70, - "x": -1400, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "155a836e-f6f9-4226-81dc-911c3f72043c", - "width": 70, - "x": -2520, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a4ddde41-2fa5-4d7d-8e23-c30a9622e3c8", - "width": 70, - "x": -2240, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "e8c04fb4-d4b5-4099-852d-7a45ce971407", - "width": 2870, - "x": -2170, - "y": 10990, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8e3ab075-aace-4777-842d-08b0de9a4fa5", - "width": 70, - "x": 630, - "y": 11060, - "zOrder": 12652, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "d462c8bb-768c-4d50-9fc3-1bff4c24bf66", - "width": 70, - "x": 700, - "y": 11060, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0789b801-08ab-4ddd-9a29-e00b3cdf6c29", - "width": 70, - "x": 700, - "y": 10710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a7c22db9-2473-474c-b18e-c4cb4c3b9323", - "width": 70, - "x": 700, - "y": 10990, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4317c0e2-9ee0-4cc8-8b85-3f489122c4a6", - "width": 70, - "x": 2520, - "y": 11620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "32795d5e-edeb-4cf2-a0a5-8f22dddf8d23", - "width": 3430, - "x": -2660, - "y": 15120, - "zOrder": 12643505, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "3cd12a2b-e740-48be-b41d-1c741b26eb69", - "width": 3430, - "x": -2660, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "91bb979c-64f1-447a-bc6c-95904f0bdf23", - "width": 2870, - "x": 1120, - "y": 15050, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4f127d75-c8d4-40af-a750-f42fea8ce736", - "width": 70, - "x": 770, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "b0cd93bd-5296-4d7f-a2bd-b14877cf8c7d", - "width": 70, - "x": 770, - "y": 15120, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "46c25684-cac3-4f22-b6a9-f1f9753528af", - "width": 70, - "x": 1050, - "y": 15120, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c47e4417-f8b5-40a6-976c-d1856521ba06", - "width": 70, - "x": 1050, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "888f8e83-60ae-4e7a-aa75-7fe2b5d7a3d4", - "width": 70, - "x": 1050, - "y": 16380, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bd636162-e35b-4a4b-8b20-8bd1b653f979", - "width": 70, - "x": -3010, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "43c7730f-ee88-4f4b-a447-27831619489f", - "width": 70, - "x": -2730, - "y": 15050, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "f8656434-afd2-4e26-ac74-a5f389adc73f", - "width": 70, - "x": -2730, - "y": 15120, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "3c45318e-aabc-4308-91b7-72866502b59a", - "width": 70, - "x": -2730, - "y": 15960, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b2ac814d-9d58-408c-99cb-3a96dd88b079", - "width": 70, - "x": -3010, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0aebc34f-f57d-49b8-ace1-4c66383e19e3", - "width": 70, - "x": -2730, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2170, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "c3d651bb-cb47-41d0-bb97-0e20a0e4055e", - "width": 70, - "x": -3010, - "y": 15120, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1330, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "94f6d611-0c34-4576-9f48-5c60406c87c9", - "width": 70, - "x": 770, - "y": 15960, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "93216ae2-e31d-4cd9-a600-f7098703fc3f", - "width": 2870, - "x": 1120, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "affba3c2-0216-455a-bf71-8a13e85ca9be", - "width": 70, - "x": 1050, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2e3d3f6e-0d02-4fc3-bed3-ef653b88c3ab", - "width": 70, - "x": 770, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "7a444b43-f10b-4db5-8fe5-a6a9bac2fd42", - "width": 3430, - "x": -2660, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "efdc01e4-4458-42d1-b446-38f6fce27e8c", - "width": 2730, - "x": 1120, - "y": 17150, - "zOrder": 12659, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "a21324af-7c49-47b1-aa07-8dbda8b3cdff", - "width": 70, - "x": 3990, - "y": 16380, - "zOrder": 12643506, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "9edf2270-3192-45ab-979d-99942c38f406", - "width": 140, - "x": 3850, - "y": 16450, - "zOrder": 12643507, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "a61e7474-ecbd-4d16-a9b4-9a95394d5466", - "width": 2870, - "x": 1120, - "y": 15120, - "zOrder": 12643508, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "ca4cc295-0a29-40b7-aa4b-f60c44c9dbe0", - "width": 70, - "x": -7840, - "y": 7490, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "91918661-454f-4dc5-986d-2fc8521d210d", - "width": 280, - "x": -8120, - "y": 8400, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "a2014203-7646-4310-9324-0874933e6f12", - "width": 1820, - "x": -9940, - "y": 8470, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6930, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "f0470224-ca40-44f1-8cd2-c12ab632b71b", - "width": 70, - "x": -9940, - "y": 8540, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "89ca0126-d1ea-45ca-9305-f7b25ffec068", - "width": 1330, - "x": -9870, - "y": 15400, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1960, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "7de26ef2-d9f1-46a7-b67f-a16928abc8a9", - "width": 70, - "x": -8540, - "y": 15470, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "ba6d0a70-2cd7-4ddf-97ad-4a96cf9bd639", - "width": 280, - "x": -8470, - "y": 17360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "4a10ae1d-ef5d-457e-bc29-aa21c3eb278c", - "width": 70, - "x": -8190, - "y": 17430, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "5dc37b91-60e5-41b7-a25b-26fbad617906", - "width": 70, - "x": -8120, - "y": 17780, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "0c5371e9-8cd6-4c6f-853b-c1249749f08e", - "width": 70, - "x": -8050, - "y": 17850, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "cd597e62-657b-42b2-ad66-208786adabd7", - "width": 210, - "x": -8260, - "y": 18130, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "0b9427c7-02dd-48b4-858e-55736618dee3", - "width": 70, - "x": -8260, - "y": 18200, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "b950b47e-87b0-4d62-8078-5426931f1f3e", - "width": 1050, - "x": -8190, - "y": 18760, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "d75ce23c-4176-4562-a54f-bc29742af4ac", - "width": 980, - "x": -7070, - "y": 16800, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "54e22422-721d-4208-9a2a-810ebfd76269", - "width": 70, - "x": -6160, - "y": 16870, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "7bb6dabe-907d-4c1a-8b97-723f2c877b67", - "width": 70, - "x": -7070, - "y": 16870, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "58184660-68ce-4ad8-b063-6f0c503fcc9d", - "width": 70, - "x": -7000, - "y": 17360, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "Water_cover", - "persistentUuid": "866039b3-056a-48bc-9718-be63aac5d200", - "width": 210, - "x": -7000, - "y": 17570, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "f66efa8d-6271-4cdd-9288-3f2ceb550566", - "width": 70, - "x": -5600, - "y": 14980, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "f4c6f185-ddf7-4f54-9fea-e7cd807d68fa", - "width": 70, - "x": -5600, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "56d0b0db-eef9-41a3-8bfa-8f911f1fc488", - "width": 70, - "x": -5600, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "017fd4a3-562e-493d-afa4-caf0e9818275", - "width": 70, - "x": -5600, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3c79e71f-2ea3-45cc-a8a4-f0431ad2ae23", - "width": 70, - "x": -5320, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "38375a04-6cf9-49f8-8d6c-1ff13b4ee969", - "width": 70, - "x": -980, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e1cdec8c-d45e-4e1e-aa61-734fde443c4c", - "width": 70, - "x": -1120, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7c0934a8-c7f6-4a84-89a1-b66d66dacacc", - "width": 70, - "x": -840, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2ae85f20-15c8-4158-9d41-dc2009f2b251", - "width": 70, - "x": -980, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "68089a35-ee6f-4426-bb81-99b8dbd2282a", - "width": 70, - "x": -910, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a00fcaf5-5d21-4dd5-8ab9-4d9d98a98dab", - "width": 70, - "x": -1050, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "187c724f-8d7a-4597-8177-8c39dc4a75a9", - "width": 70, - "x": -980, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a2b48ff0-e6f9-4d4d-9a44-104b43091777", - "width": 70, - "x": -980, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8a28a609-1610-4f74-9935-aa158a4f500d", - "width": 210, - "x": -1190, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2590, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "60c06c14-b0fd-4140-a187-94737fa9b6a5", - "width": 210, - "x": -910, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "ad135c01-14b4-411a-a2a0-a307991305c8", - "width": 3290, - "x": -770, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a43090c2-daed-4908-afb4-e4956ba18128", - "width": 210, - "x": 1190, - "y": 17640, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "8b6f33e8-7da8-47ef-8769-c22c0f30f379", - "width": 70, - "x": 1400, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dced9197-6e09-4780-bb66-a07151536cc4", - "width": 1890, - "x": -700, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b2a4df06-2006-4a95-94a9-e3dad7817974", - "width": 1610, - "x": 1400, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cea98b7c-09d1-42d1-ac78-21009087ed17", - "width": 210, - "x": 3010, - "y": 17640, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "a8ee8f4e-2c41-4743-80ed-4aee747e577d", - "width": 70, - "x": 2940, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "99b631cf-7f19-4f97-a52b-a933f1f4b9f1", - "width": 70, - "x": 3220, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a9d503cd-39e7-4092-9113-2f5d24d6e6a0", - "width": 2660, - "x": 3220, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "5f481de1-3666-4c77-a62e-02a94e85b418", - "width": 1260, - "x": 4480, - "y": 17570, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b122042b-567d-4bb6-9d65-8ce953e2199d", - "width": 70, - "x": 4410, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "072473c4-00eb-4212-bfc8-61d35adea2ae", - "width": 70, - "x": 4340, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "2db86430-dd30-46a7-a0c8-7da436079b67", - "width": 1540, - "x": 4620, - "y": 17290, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ceb57880-0b3a-4a53-ab10-c133343067fa", - "width": 70, - "x": 4550, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "634f99dc-ca8e-4901-a302-18cabf4eabe4", - "width": 70, - "x": 6160, - "y": 17290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9bfaa3b9-deef-4a97-9918-3cf7ab0aa35b", - "width": 70, - "x": 5880, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "87a7ca73-0898-47e6-8b90-8b25e4f3d7f7", - "width": 210, - "x": 5950, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ac98c29c-4b7f-470d-b73d-b9d4493985ae", - "width": 70, - "x": 5740, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7008b2d4-be1a-4c29-902a-8d240b789c76", - "width": 70, - "x": 5810, - "y": 17570, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "635b3c92-c0b7-4fa3-b88b-3c815974e7bb", - "width": 70, - "x": 5880, - "y": 17710, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2310, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "93a4e9ee-0392-490c-89fe-ae1aba80c84f", - "width": 70, - "x": 5880, - "y": 17780, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "33ec0878-1ab4-4cb4-832b-367481db9d1e", - "width": 70, - "x": 5880, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 5950, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "0b689b22-56d0-4ce0-9f26-d86ba89a8dbc", - "width": 70, - "x": 6160, - "y": 17360, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2170, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5d23e693-b55e-4f44-9f02-a673adc27069", - "width": 210, - "x": -5530, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "43339b0e-d69a-4828-b2f4-4d37812a6614", - "width": 70, - "x": -700, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d7fa8444-5094-4dfc-b293-0cb20fe3f7fb", - "width": 70, - "x": -1260, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "9f8fe1cc-1013-4308-85f7-47b804ce5f19", - "width": 1750, - "x": -630, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fe73ceab-5a37-492e-acce-6dc14f7940d1", - "width": 70, - "x": 1400, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d60259b3-643a-4bc1-a421-9e6c4da77515", - "width": 70, - "x": 1120, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "482aa9a9-ef64-4830-a501-b701393e5e93", - "width": 1470, - "x": 1470, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "42007926-9902-4f8c-ac80-13d840f8dbe5", - "width": 2310, - "x": 3290, - "y": 17850, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e684e364-aede-4dae-baa6-02138ab3119f", - "width": 210, - "x": 5670, - "y": 17850, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5600, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "77cde4b7-96e3-4439-814e-f482ab12aa64", - "width": 210, - "x": 5950, - "y": 17780, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "1796961d-e242-4b16-901d-c4f10053130e", - "width": 70, - "x": 5600, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a9f55f07-6018-486a-91fb-e29425786a8c", - "width": 70, - "x": 3220, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f2065fb-2836-4b50-8250-90ead2c749f1", - "width": 70, - "x": 2940, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "04b044f5-d9a0-4ff8-8d54-a13429efe8e3", - "width": 70, - "x": 5600, - "y": 17850, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "be79a9b9-620c-49a9-a66e-73b465e197ec", - "width": 2170, - "x": -630, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "6e67896a-e19c-4c3f-b53b-9caa1f24633c", - "width": 1470, - "x": 1470, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6b566e0d-d2d2-41c1-bee1-bba2c51e8112", - "width": 4270, - "x": 1400, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e2c1bc46-0ae6-4afb-8e10-7decd38ff1c2", - "width": 1750, - "x": 1330, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "aebc81bd-14f2-4d70-b779-f2e79a17caa0", - "width": 2310, - "x": 3290, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "1594c083-8a1c-46aa-ac38-3d90c033c661", - "width": 1750, - "x": -630, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "87402300-52c2-43d6-9fea-4315f62af3e0", - "width": 70, - "x": 1120, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "6f672300-8d30-4028-8d8f-55e845aa7d4a", - "width": 70, - "x": -1260, - "y": 17920, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "2e062214-5d69-4156-9896-7e3237dc13a7", - "width": 70, - "x": -700, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "13a787b8-505a-4245-bf6a-ca303b62e31b", - "width": 1890, - "x": -770, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dc049b6f-947e-4142-9278-61a5f79b5a75", - "width": 70, - "x": -840, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "53fe552b-819b-4ae6-b6e5-ccecd12166c9", - "width": 70, - "x": -980, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "400df026-4fba-470b-bbb4-c6f9e07d6dce", - "width": 70, - "x": -980, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "11cad365-d6aa-4000-9894-eb34d4235de5", - "width": 2100, - "x": -700, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "debb6737-f2dd-4dd3-a520-b6a46bb6cea3", - "width": 2030, - "x": -700, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7c190ad4-d4fe-414b-a834-91c8a65a94c9", - "width": 70, - "x": -980, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2730, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "a514dba9-3925-4768-a392-437db143d1ea", - "width": 70, - "x": -700, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "118a35e5-0cbb-4551-b5a3-1550a1440f31", - "width": 210, - "x": -910, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "2960bace-e55d-4e9c-9240-5a6131078a00", - "width": 70, - "x": -980, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "58c4f5ed-e866-46cb-bf74-b1e327c3ff17", - "width": 1330, - "x": 1540, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "3704d8c4-0649-4c84-9946-7398ee97d6eb", - "width": 2240, - "x": 3360, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "90b3fc4b-987d-441c-a742-15d3fa409a03", - "width": 140, - "x": 2940, - "y": 20510, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6fed4323-c66b-4242-8640-d55dc966de6d", - "width": 140, - "x": 3150, - "y": 20300, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "9f07faa8-353a-44e3-a02a-d755827fe55b", - "width": 1470, - "x": 1470, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4b36d850-3e5e-4ee7-94d6-18cc2805692c", - "width": 70, - "x": 1260, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fd9206ca-6485-46ae-aa4a-b9227f47be21", - "width": 70, - "x": 1400, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "da3d0e56-2c3d-4f17-87de-58e62693c706", - "width": 70, - "x": 1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "97ec23a8-09ab-48a8-8a7e-a36e35262c4a", - "width": 70, - "x": 3080, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "f1154345-e0f7-43f3-88fe-d41f9b1c3ffd", - "width": 70, - "x": 3290, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2730, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "be7cd826-0d6a-45b8-9dba-38ef21f2d479", - "width": 70, - "x": 2870, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "09f2b7ac-493a-4a3f-82a4-ce153b8e5c6b", - "width": 70, - "x": 3080, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "83bdb520-8e1a-413f-a275-6f900215281c", - "width": 70, - "x": 2940, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec755d74-8055-45d5-a473-9221f9670cdd", - "width": 70, - "x": 3220, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bbbc09d2-5d97-4cc0-acd5-ae3fc32856f9", - "width": 70, - "x": 3080, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "8ba268c0-9aae-4506-ae10-e2b10602e845", - "width": 2450, - "x": 3290, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8942069f-de78-4a73-b6d6-3c910384a2fd", - "width": 2380, - "x": 3290, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9883f5d0-cab2-4839-b486-492bed46e31e", - "width": 210, - "x": 5670, - "y": 20300, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "ef8dd07e-dd05-4188-a68a-aa8cc06b43d2", - "width": 1470, - "x": 1470, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7d2c4612-4dab-4f1c-b4d7-5b228227e56d", - "width": 1750, - "x": 1330, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "9aa32591-0105-4651-89d9-c1a5889b95ac", - "width": 1330, - "x": 1540, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "5cd1e6c0-0c33-4000-a92e-0f4a606b8769", - "width": 1470, - "x": 1470, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8078bbf3-4885-4b1d-8470-b1037e623d6d", - "width": 70, - "x": 1260, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ac04604b-3346-479d-9c57-f0e25986c583", - "width": 70, - "x": 1400, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f7d08fef-2fb2-4345-b93b-140bda76f743", - "width": 70, - "x": 1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "639b217d-d36f-40ad-b118-a730c6b7adbe", - "width": 70, - "x": 3080, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8c19b55e-ab5c-49a7-9c44-0f6b21ae5658", - "width": 70, - "x": 2940, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "46d4ec0a-d835-4852-8fd4-d630db94fc1f", - "width": 70, - "x": 3080, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "66f91587-9dcb-4905-bf01-4e7a85c5bcaf", - "width": 1470, - "x": 1400, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e510282f-30a2-4742-8019-3ae18739779a", - "width": 1820, - "x": 1260, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "a2e75508-f0b8-4d66-9843-58ecdc402415", - "width": 1400, - "x": 1470, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "86884d0e-f721-4689-9812-1c8c64703157", - "width": 3710, - "x": -770, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e3ccd255-b5b2-4306-ba2d-6d4d779358fa", - "width": 70, - "x": 3080, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0a29acb8-2fdd-4039-a100-f122c123ced9", - "width": 70, - "x": 2940, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c7438f78-854b-4410-b146-dc8418a8f7ea", - "width": 70, - "x": 3080, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "40189ef5-d498-40fd-b30c-1401c53ff51d", - "width": 2170, - "x": -630, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "643b6c04-ffa0-4f62-9c56-7ec93313f3c6", - "width": 1750, - "x": 1330, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "be4fe5a8-a0d9-42a9-9ddd-a13b3408b5e2", - "width": 2100, - "x": -770, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "04e218dd-4531-4b61-b281-af7c37581889", - "width": 2030, - "x": -770, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "225eb31f-5dc9-43a4-895f-a9bcb55f7230", - "width": 4270, - "x": -5390, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "9d3fd818-db99-45f1-a874-7225228000b5", - "width": 2030, - "x": -630, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "99948f85-5ef5-4a9c-8dc6-fcaad71d1e75", - "width": 70, - "x": -980, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "aad3b412-ea31-40a5-8760-fb2108198fe1", - "width": 70, - "x": -980, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ed7a9a0b-4446-4932-8843-2b9f42679e8f", - "width": 70, - "x": -840, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "62a2c4cb-6d66-49ab-9b58-2c90827227d4", - "width": 70, - "x": 3080, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "96b4117b-95a0-4893-9a59-f5b7561f8dea", - "width": 70, - "x": 3080, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "23ea7eb7-ce07-4f19-ab90-37baf75ab4a8", - "width": 70, - "x": 3290, - "y": 21910, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c787fd2f-d7e0-4a78-a877-5c800ab37e23", - "width": 2380, - "x": 3290, - "y": 21630, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "91f0b421-bc25-4144-9712-8e65b14fa06c", - "width": 2240, - "x": 3360, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "3625e093-2c18-4334-b53d-30f7762544cf", - "width": 2240, - "x": 3360, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "875738d7-b699-4cb8-97e0-1c628eccced0", - "width": 70, - "x": 3220, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "87025c7b-9dbe-4558-9978-71409382d495", - "width": 2450, - "x": 3290, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b8f76040-4573-4a6b-a6b7-9914185f4892", - "width": 2730, - "x": 3150, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f2465aad-7151-4dcd-815a-f117f3e7ad16", - "width": 2730, - "x": 3150, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "11515d34-6cf1-43d3-b447-427a62594d86", - "width": 140, - "x": 3150, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "bde90f2b-73e2-449e-b737-5d505230b4e2", - "width": 140, - "x": 2940, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2660, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "3544c9a4-4de3-46a1-8d56-ae8e2cc37fe9", - "width": 70, - "x": 2870, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "649c3784-1e1c-4a69-aace-3747f7a7d998", - "width": 70, - "x": 3290, - "y": 23940, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "3a243a71-55c6-4838-b8e4-c106b9fd0165", - "width": 70, - "x": 5600, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1400, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "a4afa0ee-3b17-4861-8572-daf3504f81af", - "width": 70, - "x": 5600, - "y": 21910, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "569e4e42-f297-4ded-ac0a-ec3b0a069290", - "width": 12040, - "x": 5950, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "5f794691-f090-4bea-bba8-096f17db9952", - "width": 70, - "x": 5880, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "96b4c31c-3a29-406e-a0a4-56a0562215ed", - "width": 70, - "x": 5880, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8adcedd7-89ae-445b-928a-b944c0423024", - "width": 70, - "x": 5740, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ea2a9d1-5907-4f4a-a521-22ba39950530", - "width": 70, - "x": 5880, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "99fbd0a7-8873-41e1-b2d3-b18fee226282", - "width": 70, - "x": 5880, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d1d12927-f5db-448c-80fe-25d080733249", - "width": 70, - "x": 5880, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d1ee021f-879f-4921-8c78-f52e62009afb", - "width": 70, - "x": 5740, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "536683d7-994e-4e81-a359-f59aeca74b63", - "width": 70, - "x": 5880, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1750, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "f46935e1-424b-4c3a-81b4-3c064f44b818", - "width": 70, - "x": 5880, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3f46b7d2-eb10-454e-a9fb-feb9730ee1be", - "width": 70, - "x": 5880, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8c7bfb21-c217-4818-82da-e332a4d4f5a7", - "width": 12040, - "x": 5950, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "d04c50b3-d0ca-4da1-a585-c962edc03d22", - "width": 11760, - "x": 6230, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "349ef3ae-6902-4bd2-bcbd-e20b58cba5fa", - "width": 11970, - "x": 6020, - "y": 23590, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "a1afbf1b-aa2a-4a05-bf2f-e5e1094a9768", - "width": 11760, - "x": 6230, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1610, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5629e394-60ac-46ba-b940-ad5fdc05cdc1", - "width": 210, - "x": 5670, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6771f524-4b6d-4e43-8500-85bdb178c643", - "width": 210, - "x": 5950, - "y": 23870, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "c7b4895e-4ab3-486b-9b7a-a92d75abfdd7", - "width": 70, - "x": 5600, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "4a561fba-ee16-40aa-b86b-a28258948256", - "width": 70, - "x": 6160, - "y": 23940, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "be04183c-ace9-43f7-879b-b772ac7d95a2", - "width": 70, - "x": 6160, - "y": 25970, - "zOrder": 12643509, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "236f15ed-edf6-43c1-9d52-e06f943ef3c0", - "width": 70, - "x": 5880, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8fcadf3b-10cc-4b89-a15f-7e8af3ca9cf0", - "width": 2870, - "x": 3290, - "y": 25760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b61c5fcc-7ca6-46a7-b700-c52ac4d1fa73", - "width": 2730, - "x": 3150, - "y": 25480, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ba8a5b7d-6dcb-4982-9af1-4ac1b148f34f", - "width": 70, - "x": 5880, - "y": 25550, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "570a80b9-05c1-4cdd-b8dd-6597ff75f326", - "width": 70, - "x": 5740, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "9b70438d-7f14-47da-9bc8-30d02a880e05", - "width": 2450, - "x": 3290, - "y": 25690, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "4b20b0e4-3a1d-4bad-8fb7-b90fd556239f", - "width": 2240, - "x": 3360, - "y": 25410, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "633e7dc2-4c44-4f8c-8f68-4df5c31b5662", - "width": 70, - "x": 3290, - "y": 26040, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "80eaa856-7513-4d3e-a6b9-1dabdc3059d5", - "width": 70, - "x": 3080, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "77f911f4-ae4d-4583-b718-59ef7b0a64b5", - "width": 2800, - "x": 3360, - "y": 25970, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a3125ec4-fd6c-45ed-a6ee-6a1b6f4a2743", - "width": 140, - "x": 3150, - "y": 25760, - "zOrder": 12643494, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0c540e86-d488-4e3d-9f43-f97bfe065714", - "width": 70, - "x": 3080, - "y": 25550, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5e871efe-014d-431a-b97f-f67ceeca4805", - "width": 70, - "x": 3080, - "y": 25830, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "eced79e2-4a23-4a51-b602-217d7bcfec1c", - "width": 70, - "x": 3080, - "y": 25900, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8522bac6-206d-471f-8d81-039a1f37eb0c", - "width": 70, - "x": 3220, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "26989467-8f4e-41ff-a3c1-ca9053174cfd", - "width": 70, - "x": 3290, - "y": 27020, - "zOrder": 12643509, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b4ca7b9c-35bb-4c96-9832-eac7b75dcb3a", - "width": 70, - "x": 3080, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5e10212f-c3fa-4d04-a591-8521d98ff5c7", - "width": 70, - "x": 3080, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "09e15789-1608-40cb-8ea3-c424cfa7b9e8", - "width": 70, - "x": 2940, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "c92c082c-66b9-496e-9140-ce1dd0cbea77", - "width": 2450, - "x": 490, - "y": 26810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6d9eef7e-5459-4559-8ee7-c2e43e0eb0fd", - "width": 210, - "x": -910, - "y": 23940, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2660, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "af3abdc3-87a0-43b5-8cfb-0256e0ec7f92", - "width": 70, - "x": -700, - "y": 23940, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "916161df-5ab8-4bb4-85f5-86725b44ae66", - "width": 70, - "x": -980, - "y": 23730, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "984d0cb7-e3d6-48a3-9122-68462627a64b", - "width": 70, - "x": -980, - "y": 23800, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0075ca37-5c72-44fe-b20c-b9e3057ef0ce", - "width": 140, - "x": -910, - "y": 23380, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b98e1d3a-8400-40c4-98dd-663d01115d65", - "width": 140, - "x": -910, - "y": 23660, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "89333ccf-6a14-44b1-98f8-bf21c68a736e", - "width": 70, - "x": -770, - "y": 23870, - "zOrder": 12643510, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5e54b4e1-35dc-4968-b568-1e1b941531f7", - "width": 2030, - "x": 1050, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fb95be39-b38d-49e3-935b-36a29a6ce9df", - "width": 1890, - "x": 1260, - "y": 26880, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "823794b2-2b1b-4c80-8cab-e9e717ea02b1", - "width": 2800, - "x": 490, - "y": 27020, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "6dc0beab-a06e-4242-949a-0e1db829cc6b", - "width": 3500, - "x": -630, - "y": 26600, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "547e2e74-c32e-48e3-bce4-cdaed0878161", - "width": 1750, - "x": -700, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e84e1171-fc5a-408b-b613-e8fb20863bcb", - "width": 2240, - "x": -980, - "y": 26880, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5ba5c11b-5af2-42ba-858b-df8836e5f755", - "width": 70, - "x": -980, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fea729cd-3e5d-4668-87d5-7ea64787000d", - "width": 70, - "x": -980, - "y": 26670, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "19acdfa2-1c9e-46f4-bcd6-c86d328ec75e", - "width": 70, - "x": -840, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "3e6e76b6-7e5e-4852-bebd-0f016881b38c", - "width": 1260, - "x": -770, - "y": 26810, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 6230, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3376c395-e769-4d71-af8e-6eaeb686b273", - "width": 210, - "x": -5810, - "y": 17640, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "55295248-21b6-4d06-a962-10d49f3bc115", - "width": 1680, - "x": -1190, - "y": 27020, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c4fc6471-be51-4cc8-9f2b-aea088580182", - "width": 70, - "x": 1190, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a714169e-eae2-4fd6-a8e4-2d1d33f1124c", - "width": 70, - "x": 1330, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e759c2ab-a28b-47a1-a0e5-dc294d8db8b1", - "width": 70, - "x": 3080, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ebfef3e3-4300-4986-80cc-a1f996277899", - "width": 70, - "x": 3010, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "fe56a723-5f20-482a-a372-ea9e04e3520f", - "width": 70, - "x": 3150, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8a363f95-c28e-4d62-ac57-de2d835308d3", - "width": 70, - "x": 5880, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8fc604be-6a2f-4816-af68-6bb0634318e1", - "width": 70, - "x": 5810, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0389aca3-1e20-4305-9773-7b6280dcfe7f", - "width": 70, - "x": 5880, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0d8c49f6-3b05-4c90-8842-41daa7eae600", - "width": 70, - "x": 3150, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "89daab6d-4221-43fe-b68a-a8d398759b3c", - "width": 70, - "x": 3010, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d9aa60d1-1789-44bd-a6a3-344df344eeee", - "width": 70, - "x": 3080, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "59bbc31f-0c33-4b6c-81df-1e987141e859", - "width": 70, - "x": 3080, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2e2abde0-d405-4722-9f9b-def51fc73818", - "width": 70, - "x": 5950, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d6e6a5ca-b907-4de2-8201-fd94c7504aec", - "width": 70, - "x": 5880, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cb41657c-de9b-40b5-aa58-e9ee17f0538f", - "width": 70, - "x": 5880, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ca247b24-c8a1-40c0-b9ff-01e65335259a", - "width": 70, - "x": 5810, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ecf9e2e0-9690-4863-8131-6fa8fcd65031", - "width": 70, - "x": 5880, - "y": 25620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "39933a0d-9f6a-47ac-9266-0eb9ee2625e8", - "width": 70, - "x": 5810, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "944fbc74-54a3-430a-ba0f-09eb85553aa9", - "width": 70, - "x": 3150, - "y": 25690, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "36b14ec3-d5c0-445c-b23c-66eef0e39718", - "width": 70, - "x": 3080, - "y": 25760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a5a8fbad-c697-418d-80d2-c832df473229", - "width": 70, - "x": 3080, - "y": 25620, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "49e5f9f0-9eac-4140-b02e-7a7e10b38761", - "width": 70, - "x": 3010, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "32a8b44a-9362-4276-b698-5b4b38c6b09a", - "width": 70, - "x": 3080, - "y": 26740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ec57d7be-0ad4-456c-91b6-3667cbcddcfe", - "width": 70, - "x": -980, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "28bc9548-87ea-4956-91a8-80a188bbb946", - "width": 70, - "x": -910, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6cf35728-a548-49a4-bd84-cef02ad093ac", - "width": 70, - "x": -980, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6ed7ef19-3b2e-49e8-9514-f3e6e6f770c0", - "width": 70, - "x": -910, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cc757865-bb98-4684-bb99-d436b420db1b", - "width": 70, - "x": -980, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd357626-8756-4747-a3e5-0aa9decfb4ff", - "width": 70, - "x": -980, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dee279ec-5ff7-42c0-95b1-8931f093e0a9", - "width": 70, - "x": 3290, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0a689286-526c-435c-93f7-877bdd6b8faa", - "width": 70, - "x": 3220, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "66a885b6-bfc3-451c-bd90-6575ae009c88", - "width": 70, - "x": 2940, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "96865ba8-2f80-4413-9597-b4f49db0a144", - "width": 70, - "x": 2870, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4bfe5a3f-159e-41be-bc72-454143df9bd1", - "width": 70, - "x": 5600, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1e93b15f-0419-4917-bc02-24ef97dc5eaa", - "width": 70, - "x": 5600, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3570da2f-dc04-413d-8284-5678e21b28e9", - "width": 70, - "x": 5600, - "y": 21560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "18abe69b-1fc3-4c06-80e4-ccbb932646d3", - "width": 70, - "x": 5600, - "y": 21840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0fa84797-4813-400b-a6a6-cb63a561fe73", - "width": 70, - "x": 3290, - "y": 21560, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "480e5f75-eead-4dc4-bafb-b95f2b24e09c", - "width": 70, - "x": 3290, - "y": 21840, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "679d7c54-e0d1-4ac9-a046-06bc5fe2961b", - "width": 70, - "x": 2870, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9a8944dc-9918-400e-a852-4530821e0fe2", - "width": 70, - "x": 3290, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd4f1a3a-1862-453f-a560-db787003177d", - "width": 70, - "x": 3290, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c1d61cee-615d-423c-8d86-e0adc88123c2", - "width": 70, - "x": 2870, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b111038c-87de-4f71-bf59-2126548fa4ef", - "width": 70, - "x": 5600, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "875f062d-0782-4029-be02-184ef143c824", - "width": 70, - "x": 5600, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1cac85b3-85b0-4cda-b051-49f97b0722b1", - "width": 70, - "x": 6160, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4d0933a9-9fa2-4a09-acff-98be1de5288b", - "width": 70, - "x": 6160, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7a4cc886-1d27-455e-a3fd-0f7fd45fd77f", - "width": 70, - "x": 5600, - "y": 25410, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4cbdfc33-29a5-49d8-9af5-06941091f9c0", - "width": 70, - "x": 3290, - "y": 25970, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0b4e5c2e-dcc9-4e85-bc1c-1775272b9766", - "width": 70, - "x": 3290, - "y": 25410, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0c6cb425-41df-4348-877f-adc5ea41a240", - "width": 70, - "x": 2870, - "y": 26600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4a753335-c797-453d-91ad-7d26fde0183c", - "width": 70, - "x": -700, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4ce3b8f7-0e27-4505-918d-131695191d5b", - "width": 70, - "x": -700, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "4b9b83c6-1c97-4328-8229-5e180c2cfcfc", - "width": 70, - "x": 1400, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ce324e04-f582-4b2b-a4d6-e34603054247", - "width": 70, - "x": 1120, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0491bc18-14ab-44c2-94f8-87fe10a58ea0", - "width": 70, - "x": -700, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3f7931f9-91dd-4ab3-9a5d-7a4b0d714090", - "width": 70, - "x": -700, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "6f50b8d1-4ba4-49c6-9026-4d340ca96791", - "width": 2240, - "x": 3360, - "y": 21560, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "66935797-bb50-49fa-b090-dc3c917a4673", - "width": 2240, - "x": 3360, - "y": 21840, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8820, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "fdcf3bba-acc4-4981-ad71-e14b11f74e75", - "width": 3640, - "x": -700, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 7630, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "9d2ac214-8f8d-4d31-8fb4-c226af57e8b0", - "width": 2380, - "x": 3290, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "mouse_point", - "persistentUuid": "022047c8-b187-4408-b53e-1b2ace0405d1", - "width": 0, - "x": 5110, - "y": 24710, - "zOrder": 12643511, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "ac68d0de-734c-446a-a6c8-4b3dc0080d1f", - "width": 350, - "x": 7420, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "43baf9b5-1c1f-430b-911b-c9e777c2402f", - "width": 350, - "x": 7420, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "739fe610-a8e0-49af-a032-ded5032c0fd5", - "width": 350, - "x": 7770, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "2543b559-ed25-4415-9371-6fb8fc80470e", - "width": 350, - "x": 7770, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "d8961153-cacf-4b67-bb2a-5a1255519e1c", - "width": 350, - "x": 8470, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "cb06cbe0-1762-490a-813a-5426185db3ce", - "width": 350, - "x": 8120, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "62df7308-798a-4702-a151-b6610fc40545", - "width": 350, - "x": 8120, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "06aaaac2-776d-47b2-8181-290c3b2fdd10", - "width": 350, - "x": 8470, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "c16a9aae-19cf-4ba8-a9f9-491e31f4bd17", - "width": 350, - "x": 9870, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "2e7fd3d7-894d-43bc-8116-3d270f129021", - "width": 350, - "x": 8820, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "2ed624cd-3099-4953-b5a6-c87104fa5238", - "width": 350, - "x": 10570, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "2352f1a1-20e5-4d60-803c-d4c233630f16", - "width": 350, - "x": 9170, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "736bb1a8-fa79-4dda-9177-ec8af0304d75", - "width": 350, - "x": 9520, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "c77b7d25-2c35-4789-8848-e637a493a68c", - "width": 350, - "x": 9520, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "4fff97ee-5a70-478d-8aab-d21ca59fcbf3", - "width": 350, - "x": 10220, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "05d9247a-e487-4948-a77f-443595828b0d", - "width": 350, - "x": 8820, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "45d8e08d-b46e-440f-bb7e-beb2ac29fedf", - "width": 350, - "x": 9170, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "d2936501-13ff-45bf-8f2d-9f2e0243a9ab", - "width": 350, - "x": 9870, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "f8f74975-89f4-4a28-9538-c71841e880a9", - "width": 350, - "x": 10570, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "6e5d62dc-d947-48ab-a631-4e9d3b39d15a", - "width": 350, - "x": 10220, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "5c1df6f1-02e9-4f90-b367-a5734c3f1a57", - "width": 350, - "x": 11270, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "3a63c4ad-6733-4d8a-afc9-a211cb1fbe7e", - "width": 350, - "x": 10920, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "4b59c42c-1e58-4965-8b00-359a5ec7d3b0", - "width": 350, - "x": 10920, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "6902b9c7-1089-4d7f-819e-d262055aaf87", - "width": 350, - "x": 11270, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "462a0a37-7c26-4645-a05c-23b1e2aed7eb", - "width": 350, - "x": 11970, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "947b85e9-46e1-4e84-be94-1b834e799ff5", - "width": 350, - "x": 11620, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "cf65b54e-b209-43f6-bc0b-000c83a21f50", - "width": 350, - "x": 11620, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "6043fa90-8a8e-4653-9ca1-546fb4637659", - "width": 350, - "x": 11970, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "5a13239d-883b-42d3-a211-a4a9c99a016e", - "width": 350, - "x": 12670, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "9ee4d907-b8ab-4737-8e5a-85d1892a9c4e", - "width": 350, - "x": 12320, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "bb2d98d9-2eef-466b-a238-c5cb621cfc39", - "width": 350, - "x": 12320, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "076b787f-180f-4d09-8ee1-21b357d375f1", - "width": 350, - "x": 12670, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "94a2d62b-d932-4aab-b083-69219f69f1e4", - "width": 350, - "x": 13370, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "42a18f60-2fb3-40d1-a4fa-849dd8f9fd73", - "width": 350, - "x": 13020, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "110076a5-7cec-415f-8470-445e0c686c98", - "width": 350, - "x": 13020, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "4dff5779-7149-411f-81ea-872832d0808b", - "width": 350, - "x": 13370, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "38946fa8-d405-479e-abfb-6c035364755e", - "width": 350, - "x": 14070, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "061dac88-ff27-40be-b949-04205106e62a", - "width": 350, - "x": 13720, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "70e5bf77-b763-4ada-92e2-5d961eb7b59b", - "width": 350, - "x": 13720, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "39823d0f-0b4a-462c-8e53-9a16bfad7716", - "width": 350, - "x": 14070, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "d94d6df6-a8ee-4a2c-bb0c-8278ba008ce0", - "width": 350, - "x": 14770, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "58963f7c-9839-4f6f-8edd-9ae2b1bc5671", - "width": 350, - "x": 14420, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "efcf8067-a3e4-41f2-a1c8-e4a7f81e3bf9", - "width": 350, - "x": 14420, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "313dac02-4344-40cc-9fe4-feae24f71841", - "width": 350, - "x": 14770, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "047ac6b7-f703-41d2-a5eb-3d7fb05d3e8e", - "width": 350, - "x": 15470, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "ee2c4c06-32c7-4ef2-9b27-c7ca4d8aefce", - "width": 350, - "x": 15120, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "16ee4450-52fa-47e9-9fd8-659e00c646c8", - "width": 350, - "x": 15120, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "e94d3cf4-b531-4777-a457-d6f6c8d1db1e", - "width": 350, - "x": 15470, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 8750, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "adb561a9-08ed-450a-91a4-8eaba8b92a9e", - "width": 1330, - "x": 6160, - "y": 17290, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "97829a79-4303-4255-82a7-db1c499432d8", - "width": 1470, - "x": 6020, - "y": 16100, - "zOrder": 12643512, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "b8bdfe38-a421-43a5-bf26-6270e246c987", - "width": 4130, - "x": 3360, - "y": 26040, - "zOrder": 12643513, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1190, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "8ad81f6f-792f-4255-9819-6eca5335ba1f", - "width": 5670, - "x": -1260, - "y": 27090, - "zOrder": 12643514, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "fcf8d501-f1e6-4303-a0c8-446cead5ddb3", - "width": 350, - "x": 16170, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "b644b9f9-b411-4311-a358-cafc2cb1bcee", - "width": 350, - "x": 15820, - "y": 23660, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "48eb89a9-5efa-46bd-880c-196f12c0f215", - "width": 350, - "x": 15820, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "locked": false, - "name": "bridge", - "persistentUuid": "bb7824dc-7508-4a50-ac5e-96c3ccadfa31", - "width": 350, - "x": 16170, - "y": 23240, - "zOrder": 12609, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 4200, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "67085a45-105b-4092-a0b0-2950782b51a3", - "width": 8890, - "x": 7560, - "y": 24010, - "zOrder": 12643515, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2800, - "layer": "", - "locked": false, - "name": "Water", - "persistentUuid": "30f55ea7-cfc9-4a91-ad2f-8bf44c9a4daa", - "width": 8890, - "x": 7560, - "y": 20440, - "zOrder": 12643516, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "Health", - "persistentUuid": "51c740a3-2016-4425-8029-6911b124bb8b", - "width": 0, - "x": 0, - "y": 70, - "zOrder": 12643517, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1597d8aa-519a-4a90-b5f5-d79c0f65aa99", - "width": 70, - "x": -1120, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "b07ba268-47f9-4eec-affc-19e4741989f8", - "width": 70, - "x": -5600, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9b1af817-12d7-4ad5-9b60-f4a081e08992", - "width": 70, - "x": -5460, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3290, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cbcf16c6-43bd-47cd-b055-3077fa54c258", - "width": 210, - "x": -5530, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3010, - "layer": "", - "locked": false, - "name": "road_2", - "persistentUuid": "63561e49-821b-41d5-9b95-ce215003aa66", - "width": 70, - "x": -5600, - "y": 20440, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_4", - "persistentUuid": "298e41cd-ca92-41a0-8912-4200cd7ec77c", - "width": 4270, - "x": -5390, - "y": 20230, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "9e8d2910-b4be-49cc-84f9-8d78204c4c0a", - "width": 70, - "x": -1120, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0f326e38-5d58-4e49-b8c8-864a8afc8381", - "width": 4340, - "x": -5530, - "y": 20020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "07c382fa-2d4e-4db5-8914-0fc0cc22fd45", - "width": 70, - "x": -5600, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "3b989393-18ae-460f-ac54-e539ecaf54c2", - "width": 70, - "x": -5600, - "y": 20370, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "2b4d2929-d173-44c8-98b0-d776aec5629a", - "width": 70, - "x": -5600, - "y": 20090, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c7132451-123c-4d51-9888-aa6ff1c5d546", - "width": 70, - "x": -5460, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "dd69c66b-b54a-42d9-a984-75fcca462397", - "width": 4340, - "x": -5320, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "d2dcf62e-eca2-468e-8275-7af94ec9a089", - "width": 70, - "x": -1260, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "18621a8a-eed1-423e-a75b-90c2fc25488e", - "width": 3990, - "x": -5250, - "y": 19950, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "b269aba8-6276-4fd0-aee1-6359c4022a6c", - "width": 70, - "x": -5320, - "y": 17920, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8aba3efd-e13c-436f-bd6f-049173afbd35", - "width": 70, - "x": -5320, - "y": 19950, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2870, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "ab2894fc-946a-4cff-bc8e-d5a828fbcec3", - "width": 210, - "x": -1190, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2730, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "fcdd1ccf-2e9e-41d5-9aea-b7ffa552af6d", - "width": 70, - "x": -1260, - "y": 20580, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "77c761a7-075f-4335-ad77-bdd36b366a21", - "width": 70, - "x": -1260, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "13adfa86-5a9a-41e7-bb31-5a2867deafcb", - "width": 3990, - "x": -5250, - "y": 20510, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "f2a1c0cb-5a5e-4efd-b395-48ba2bb6b1be", - "width": 70, - "x": -5320, - "y": 20510, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 2730, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "aa50b30d-e0b5-4870-a955-0e5bfc0b7eb5", - "width": 70, - "x": -5320, - "y": 20580, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "7ba668ea-b9c4-4188-9a17-2448585501da", - "width": 4340, - "x": -5320, - "y": 23380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "15ed8016-9aa6-4f9c-bae0-23c6e2853a92", - "width": 4620, - "x": -5600, - "y": 23660, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0379158d-de9f-4780-9550-03a9b50d5234", - "width": 70, - "x": -5880, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "d7eeeea9-a4b6-43a4-8916-40168ee808cb", - "width": 3990, - "x": -5250, - "y": 23310, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road_3", - "persistentUuid": "64794b87-3106-4e01-8f23-576fa461be0a", - "width": 4550, - "x": -5810, - "y": 23870, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "1059e8ab-5f12-4dad-b596-c4202a2101f8", - "width": 70, - "x": -5320, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3150, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "a8c58325-c6a7-4b8e-babf-d259fc2e12b5", - "width": 210, - "x": -1190, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 3080, - "layer": "", - "locked": false, - "name": "road_1", - "persistentUuid": "d9429d04-2754-41f7-b580-8c93ecfbf636", - "width": 70, - "x": -1260, - "y": 23940, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "00b7c1c4-3ac8-48af-b035-93b26916df0a", - "width": 70, - "x": -1260, - "y": 23310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 270, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "cdbb123b-1118-49ba-8a66-5e55e44a7bbd", - "width": 70, - "x": -1260, - "y": 23870, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "871d15f2-4ef1-4c9f-9907-bbe5ed9a40fc", - "width": 70, - "x": -5600, - "y": 23450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "acd8ba68-606c-4f77-a5de-ffe455d2c0bc", - "width": 70, - "x": -1050, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "77f2b853-015d-4fa3-9875-e782f8c650ba", - "width": 70, - "x": -5600, - "y": 20300, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "6dff04b4-8639-4318-a1b0-f38c88b7ba0a", - "width": 70, - "x": -5530, - "y": 20230, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "c1c0179a-a312-496e-909c-c302304cffb0", - "width": 70, - "x": -5600, - "y": 20160, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8f1cc467-f134-4b4d-a0f0-94dbeff457ff", - "width": 70, - "x": -5530, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "e0349584-59fd-4e58-a9d2-c6fbd1035707", - "width": 70, - "x": -5600, - "y": 23520, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "26720435-ce1a-4edf-a663-b268a0be89c7", - "width": 70, - "x": -1050, - "y": 23590, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 5530, - "layer": "", - "locked": false, - "name": "grass_tiled", - "persistentUuid": "8e479e2c-626d-446e-92bb-77dfc188242f", - "width": 4130, - "x": -5320, - "y": 17850, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "0ac75d8e-a40d-409c-a496-dbd1d180854a", - "width": 70, - "x": -1260, - "y": 27020, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "5274dcbe-f55a-441f-9fa6-d117eb61c465", - "width": 70, - "x": -700, - "y": 26600, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "41436357-0e7d-4fe2-b783-ce4319f3c2a8", - "width": 70, - "x": -980, - "y": 26740, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "locked": false, - "name": "road", - "persistentUuid": "8fa7c3ad-131b-49af-a8ce-af8d8cea07a9", - "width": 70, - "x": -910, - "y": 26810, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "2d3f8e61-76f6-48d3-8dc8-f4a6e8ce221b", - "width": 0, - "x": 13790, - "y": 23351, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "61860341-74b1-4ecc-8981-8679c94fb532", - "width": 0, - "x": 13790, - "y": 23650, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "fdcffdfd-92c5-4729-b1ad-2d8c81d11724", - "width": 0, - "x": 13790, - "y": 23549, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "a7dc483c-d01c-494d-a243-d3c3aafd2d63", - "width": 0, - "x": 13790, - "y": 23450, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "29e5bc44-30a2-4dd6-b6ca-f3d8e311cfaa", - "width": 0, - "x": 13790, - "y": 23749, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "road_block", - "persistentUuid": "fab7d286-6789-43ab-9ac5-b4f65589baef", - "width": 0, - "x": 13790, - "y": 23847, - "zOrder": 1264, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "AmmoText", - "persistentUuid": "c4aa480c-5f33-44be-bff1-b7581f5de51f", - "width": 0, - "x": 0, - "y": 490, - "zOrder": 12643519, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "e38e9d4a-005b-4783-94cf-df132737369e", - "width": 140, - "x": -5250, - "y": 17920, - "zOrder": 12643520, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "cdbf6154-439e-4562-8086-6536191d3c47", - "width": 140, - "x": -1400, - "y": 17920, - "zOrder": 12643520, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "4951c0c7-e63c-4352-b259-bc4a52f2e3c6", - "width": 3710, - "x": -5110, - "y": 17920, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "3d6a6ad5-910e-46a8-ac37-272b760e7d54", - "width": 3710, - "x": -5110, - "y": 19810, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "1dbf8c21-b95f-4b25-b5ae-b1b9002dceda", - "width": 3990, - "x": -5250, - "y": 20580, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "10e40f8b-4d84-4818-925d-4c7fec70ac96", - "width": 3990, - "x": -5250, - "y": 23170, - "zOrder": 12643521, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "f78938e6-4b0c-4cbd-9d7e-e9490a81caef", - "width": 140, - "x": -5250, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "ecb7c297-bc45-4b99-80eb-e70eef857b08", - "width": 140, - "x": -1400, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "2d19757c-7902-4560-be5b-4bd25b4e3de5", - "width": 140, - "x": 2730, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2450, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "62bb49a1-4e07-4a0a-be28-2dd82f0e7661", - "width": 140, - "x": -630, - "y": 20720, - "zOrder": 12643522, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "54401507-6137-4d0f-8394-d1ec5240c08d", - "width": 3500, - "x": -630, - "y": 20580, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "34fef25a-acb0-44ec-ac0b-821da32874a5", - "width": 3500, - "x": -630, - "y": 23170, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8ffcf775-964a-455c-98bb-17f6c1318b6b", - "width": 3500, - "x": -630, - "y": 23940, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "ecc9eb11-55a4-479c-8637-8da2700f57de", - "width": 3500, - "x": -630, - "y": 26460, - "zOrder": 12643523, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "2d792cfb-9aba-481a-9339-16eb9a91b25b", - "width": 140, - "x": 2730, - "y": 24080, - "zOrder": 12643524, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2380, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b75db4e8-633d-4934-aa5c-31b20a1e8066", - "width": 140, - "x": -630, - "y": 24080, - "zOrder": 12643525, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "412fbbb1-5170-4e13-80a7-263b441952c2", - "width": 1470, - "x": 1470, - "y": 17920, - "zOrder": 12643526, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "d151a30c-7196-44b5-bcbd-f816aef3bedc", - "width": 140, - "x": 1470, - "y": 18060, - "zOrder": 12643527, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "7421704b-b842-4c44-865f-8cdf16d0c0b9", - "width": 140, - "x": 2800, - "y": 18060, - "zOrder": 12643528, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "21d0ea71-8d09-42a9-af69-62dc9f19c8c3", - "width": 1190, - "x": 1610, - "y": 19810, - "zOrder": 12643529, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "14be3c5c-a6da-4965-8724-b126e61dbdde", - "width": 140, - "x": 3360, - "y": 23940, - "zOrder": 12643530, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1470, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "420c5f15-6a05-4451-a375-d94591e158ff", - "width": 140, - "x": 5460, - "y": 23940, - "zOrder": 12643531, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "a40fc982-2871-4f2c-b5d4-55047d001ad7", - "width": 1960, - "x": 3500, - "y": 23940, - "zOrder": 12643532, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5cbfe985-e686-49f6-b85c-f45c462d06d8", - "width": 1960, - "x": 3500, - "y": 25270, - "zOrder": 12643533, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5bcc1592-085b-4536-acac-41b3b8b64a5f", - "width": 2240, - "x": 3360, - "y": 21910, - "zOrder": 12643534, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "a63c90b1-db37-44c6-a664-31b8deb2b7f5", - "width": 140, - "x": 5460, - "y": 22050, - "zOrder": 12643535, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1260, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "caf7a4a2-5a91-41d1-b850-517761975df4", - "width": 140, - "x": 3360, - "y": 22050, - "zOrder": 12643536, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "6b619fea-cc7b-4ca7-8657-415d3a853acf", - "width": 1960, - "x": 3500, - "y": 23170, - "zOrder": 12643537, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "64ad246f-f46a-444e-aadd-af17e95b4546", - "width": 2240, - "x": 3360, - "y": 20580, - "zOrder": 12643538, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "67cca899-f306-4a81-8e12-bd6688ad04d0", - "width": 2240, - "x": 3360, - "y": 21420, - "zOrder": 12643539, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "1ab67060-3a11-4b7c-8138-e013c1a2943a", - "width": 140, - "x": 5460, - "y": 20720, - "zOrder": 12643540, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 700, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "211e410e-451b-4297-9449-ef90336938cb", - "width": 140, - "x": 3360, - "y": 20720, - "zOrder": 12643541, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "6c945cde-9f5b-41f4-b3fc-8489ab60ab83", - "width": 140, - "x": 3290, - "y": 17920, - "zOrder": 12643542, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "9c9485ea-21db-4f89-ad79-80a35f04fa18", - "width": 140, - "x": 5460, - "y": 17920, - "zOrder": 12643542, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "8a99633d-05ac-4ebe-b988-220919f2275c", - "width": 2030, - "x": 3430, - "y": 17920, - "zOrder": 12643543, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "5961cbba-46e4-44e2-8f23-4ccaa23720be", - "width": 2030, - "x": 3430, - "y": 19810, - "zOrder": 12643544, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "c85c1a29-c6c1-4e83-8f02-dfb7e5ffac39", - "width": 140, - "x": 980, - "y": 17920, - "zOrder": 12643545, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 2030, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b69b3f2c-6805-49eb-ad8e-306e27b2aeab", - "width": 140, - "x": -630, - "y": 17920, - "zOrder": 12643546, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "0fb51466-61e5-4e60-bebb-fee5be683805", - "width": 1470, - "x": -490, - "y": 17920, - "zOrder": 12643547, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "3c1d7e05-ad55-4797-b1fa-2885ebbab892", - "width": 1470, - "x": -490, - "y": 19810, - "zOrder": 12643548, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "weaponholding", - "persistentUuid": "13d249b9-06b6-4f5a-b593-79789f2fe2f6", - "width": 0, - "x": 0, - "y": 420, - "zOrder": 12643549, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "mele2", - "persistentUuid": "09afe30b-b74c-417f-a4d0-68548d755fec", - "width": 0, - "x": 70, - "y": 1330, - "zOrder": 12643551, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "locked": false, - "name": "You_lose", - "persistentUuid": "f744036a-8f49-422b-a95e-88395ebaf4df", - "width": 0, - "x": 375, - "y": 280, - "zOrder": 12643552, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "5e1892e5-4d7c-43d9-b40c-16e53d4125e3", - "width": 0, - "x": -3780, - "y": 12880, - "zOrder": 12643553, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "9003b74c-eafb-484e-8309-746323071dfe", - "width": 0, - "x": -4410, - "y": 18410, - "zOrder": 12643554, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "sand_1", - "persistentUuid": "b0df6117-2c96-4859-84f9-d173b53c23ca", - "width": 420, - "x": -3500, - "y": 18060, - "zOrder": 1264355, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "f33dcc53-5bb3-4f5d-ab50-8a17e6da228c", - "width": 700, - "x": 1540, - "y": 11900, - "zOrder": 12643555, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "23fa64cb-272b-42a2-ad0e-52c7401aa2d2", - "width": 0, - "x": 3080, - "y": 10430, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "c2cac24f-0eed-4068-aae6-6224142c33c9", - "width": 0, - "x": 3080, - "y": 9520, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "22ca8ce7-ef49-4bc0-9eb3-7e46e828312f", - "width": 0, - "x": 3080, - "y": 11830, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "1b7eb4c2-a0e7-46c9-8b88-e9cfa61e96be", - "width": 0, - "x": 3080, - "y": 13580, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "e7db47f8-58b4-4359-a67d-63d14a48fa43", - "width": 0, - "x": 3080, - "y": 12690, - "zOrder": 12643556, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "036dcc5a-7549-4109-bf66-286e1af7fa46", - "width": 1190, - "x": 1330, - "y": 15400, - "zOrder": 12643557, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 630, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "891ed0d8-f246-4ce4-87be-6055b8cbaf0d", - "width": 1190, - "x": 2590, - "y": 15400, - "zOrder": 12643557, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "4a665405-f563-4b6b-b35d-8d889eb271eb", - "width": 980, - "x": 1400, - "y": 16520, - "zOrder": 12643558, - "numberProperties": [ - { - "name": "animation", - "value": 15 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "5f44745a-3bf4-4cd0-93f3-16bf7220347d", - "width": 980, - "x": 2660, - "y": 16520, - "zOrder": 12643558, - "numberProperties": [ - { - "name": "animation", - "value": 15 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "d1cc791d-b1fb-40aa-b7e0-697f0d090eac", - "width": 1050, - "x": 1680, - "y": 18130, - "zOrder": 12643559, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "4c4ccc12-654a-4d4e-8e65-2f521bcde1ba", - "width": 0, - "x": 1750, - "y": 19110, - "zOrder": 12643560, - "numberProperties": [ - { - "name": "animation", - "value": 17 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "23644083-799b-4d85-9d3b-567f4c6d1e13", - "width": 1680, - "x": 3640, - "y": 22120, - "zOrder": 12643560, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "95b3bc67-8b66-4760-abee-730b11e60fe5", - "width": 560, - "x": 3570, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "77780327-24f8-4729-9b04-3796a0889d57", - "width": 560, - "x": 4830, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 560, - "layer": "", - "locked": false, - "name": "roof_tops", - "persistentUuid": "7fdf90c5-4ff2-44a8-991a-7ddc0e424811", - "width": 560, - "x": 4200, - "y": 20790, - "zOrder": 12643561, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "name": "grass", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\foliage\\grass\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "grass_tiled", - "tags": "", - "texture": "assets\\foliage\\grass\\tile_01.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "Placeholder", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "rotateObject": false, - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 500, - "deceleration": 800, - "ignoreDefaultControls": true, - "maxSpeed": 200 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\placeholder.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "Niko", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_stand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_walk_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Single_pistol.png", - "points": [ - { - "name": "shoot", - "x": 58, - "y": 42 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Machine_gun_hold.png", - "points": [ - { - "name": "shoot", - "x": 56, - "y": 27 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_flametrhower.png", - "points": [ - { - "name": "f_t_collision", - "x": 47.5, - "y": 31 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_sniper.png", - "points": [ - { - "name": "shoot", - "x": 61, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 22 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun5-loaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 100, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 25, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_tazer.png", - "points": [ - { - "name": "hitbox", - "x": 45, - "y": 33 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 24, - "y": 27 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim1", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim2", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "gun5 unloaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", - "points": [ - { - "name": "shoot", - "x": 101, - "y": 45 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 22, - "y": 27 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a1.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a2.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 19, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a3.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a4.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a5.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 18, - "y": 26 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "road", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "roof_tops", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\rooftop\\roof_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 4.505209922790527, - "y": 1.6666699647903442 - }, - { - "x": 189.5050048828125, - "y": 0 - }, - { - "x": 184.5050048828125, - "y": 378.3330078125 - }, - { - "x": -0.49479201436042786, - "y": 375 - } - ], - [ - { - "x": 194.5050048828125, - "y": 100 - }, - { - "x": 464.5050048828125, - "y": 108.33300018310547 - }, - { - "x": 467.8389892578125, - "y": 271.6669921875 - }, - { - "x": 187.83900451660156, - "y": 276.6669921875 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_10.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "roof_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14_horizontal.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_16.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_21.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_22.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_23.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_24.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\rooftop\\roof_25.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "sand", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_06.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\tile_05.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\side_walk\\sand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\sand\\dirt.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_14.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_18.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_17.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_19.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\map_edge\\tile_20.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "d", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door6", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door5", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door4", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door3", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door2", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "door1", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "flame_thrower_fire_collision", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [ - { - "name": "CenterBurning", - "x": 50, - "y": 16 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "crossair", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair010", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair_3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair060", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair008", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 16 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "gun1", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "gun3", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "gun4", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "gun2", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "tazer_hitbox", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "gun5", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "mele1", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "mele2", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": -15, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": -15, - "y": 4.852940082550049 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "name": "Slash1", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "name": "ammo", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "energy", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "Fences", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "Id", - "type": "string", - "value": "0" - } - ], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (21).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26.121299743652344, - "y": 26.470600128173828 - }, - { - "x": 63.474300384521484, - "y": 26.470600128173828 - }, - { - "x": 63.76839828491211, - "y": 37.058799743652344 - }, - { - "x": 26.7096004486084, - "y": 37.647098541259766 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (2).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0.23897099494934082, - "y": 26 - }, - { - "x": 63.76839828491211, - "y": 26 - }, - { - "x": 63.474300384521484, - "y": 37 - }, - { - "x": 0.23897099494934082, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (27).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 26, - "y": 26 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (1).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (9).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ], - [ - { - "x": 0, - "y": 26 - }, - { - "x": 26, - "y": 26 - }, - { - "x": 26, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (5).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 26, - "y": 40 - }, - { - "x": 37, - "y": 40 - }, - { - "x": 37, - "y": 64 - }, - { - "x": 26, - "y": 64 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (23).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 26, - "y": 0 - }, - { - "x": 37, - "y": 0 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 26, - "y": 37 - } - ], - [ - { - "x": 37, - "y": 26 - }, - { - "x": 64, - "y": 26 - }, - { - "x": 64, - "y": 37 - }, - { - "x": 37, - "y": 37 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\fence\\element (22).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 26 - }, - { - "x": 37, - "y": 26 - }, - { - "x": 37, - "y": 37 - }, - { - "x": 0, - "y": 37 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "name": "road_block", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceRed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road_block\\fenceYellow.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "bullet", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [ - { - "name": "effects_bullet", - "x": 18.113399505615234, - "y": 2.9629600048065186 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", - "points": [ - { - "name": "effects_bullet", - "x": 31.95669937133789, - "y": 3.863640069961548 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "bold": false, - "italic": false, - "name": "AmmoText", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "Ammo: [number]", - "font": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - } - }, - { - "bold": false, - "italic": false, - "name": "weaponholding", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "weapon: [weapon]", - "font": "", - "characterSize": 20, - "color": { - "b": 156, - "g": 156, - "r": 156 - } - }, - { - "name": "foliage", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeLarge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 48, - "y": 52.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 10, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\treeSmall.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 43.5, - "y": 43.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 33, - "y": 37.5 - }, - { - "x": 65, - "y": 37.5 - }, - { - "x": 65, - "y": 69.5 - }, - { - "x": 33, - "y": 69.5 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_183.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 33.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 32, - "y": 32.5 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\tree\\tile_186.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31, - "y": 32.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 20, - "y": 20 - }, - { - "x": 44, - "y": 20 - }, - { - "x": 44, - "y": 44 - }, - { - "x": 20, - "y": 44 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "name": "house_enter", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "Water_cover", - "tags": "", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "height": 32, - "name": "Water", - "tags": "", - "texture": "assets\\water\\water_1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "sports_equipments_movable", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.2, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - }, - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\ball\\ball_basket4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 8.78396987915039, - "y": 9.021739959716797 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 17.428600311279297, - "y": 12.857099533081055 - }, - { - "x": 14.571399688720703, - "y": 16.71430015563965 - }, - { - "x": 9.571430206298828, - "y": 17.857099533081055 - }, - { - "x": 3.714289903640747, - "y": 16.428600311279297 - }, - { - "x": 0.5714290142059326, - "y": 12 - }, - { - "x": 0.5714290142059326, - "y": 6.857140064239502 - }, - { - "x": 2.285710096359253, - "y": 2.571429967880249 - }, - { - "x": 6.714290142059326, - "y": 0.7142860293388367 - }, - { - "x": 11, - "y": 0.2857140004634857 - }, - { - "x": 15.285699844360352, - "y": 2.857140064239502 - }, - { - "x": 17.857099533081055, - "y": 6.142859935760498 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - } - ] - }, - { - "name": "sports_equipments", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (77).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 30, - "y": 14 - }, - { - "x": 64, - "y": 25 - }, - { - "x": 64, - "y": 40 - }, - { - "x": 31, - "y": 49 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\sport\\post\\element (65).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "ground_1", - "tags": "", - "texture": "assets\\sport\\ground\\ground_beige.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "ground_elements", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sport\\ground_elements\\element_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": false, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": 12, - "friction": 2, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "sizeParam": "Mutable", - "tags": "", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "behaviors": [] - }, - { - "additive": true, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": false, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": 120, - "friction": 2, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "sizeParam": "Mutable", - "tags": "", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "behaviors": [] - }, - { - "bold": false, - "italic": false, - "name": "reloading", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "reloading", - "font": "", - "characterSize": 50, - "color": { - "b": 112, - "g": 112, - "r": 112 - } - }, - { - "name": "Phone", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 1, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_off.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.0625, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_app.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "bold": false, - "italic": false, - "name": "Wheel_info", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - } - }, - { - "name": "deco", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\deco\\deco_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "trash_movable", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "Bounce", - "type": "Bounce::Bounce", - "OldX": 0, - "OldY": 0, - "OldForceAngle": 0, - "OldForceLength": 0, - "NormalAngle": 0 - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGreen_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelGrey_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_side.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\barrelRed_up.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\oil.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBeige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\multipurpose\\sandbagBrown.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": 41, - "friction": 2, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 5, - "name": "brown_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "sizeParam": "Mutable", - "tags": "", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 85, - "emitterForceMin": 45, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": 41, - "friction": 2, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 5, - "name": "green_leaves_particle", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 45, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 51, - "particleBlue2": 0, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 51, - "particleGreen2": 255, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 1.5, - "particleRed1": 255, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "sizeParam": "Mutable", - "tags": "", - "tank": 5, - "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 3, - "variables": [], - "behaviors": [] - }, - { - "name": "bridge", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\bridge\\bridge.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "road_1", - "tags": "", - "texture": "assets\\Road\\road\\tile_35-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "road_2", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Road\\road\\tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "concrete_1", - "tags": "", - "texture": "assets\\Road\\concrete\\concrete.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "hidden_separate", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "hidden_separate", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\hidden_separate-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "height": 32, - "name": "road_3", - "tags": "", - "texture": "assets\\Road\\road\\tile_37-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "phone_wifi", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "phone_battery", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "bold": true, - "italic": false, - "name": "phone_time", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "characterSize": 14, - "color": { - "b": 255, - "g": 255, - "r": 255 - } - }, - { - "height": 32, - "name": "road_4", - "tags": "", - "texture": "assets\\Road\\road\\tile_63-1.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "height": 32, - "name": "beach_sand_1", - "tags": "", - "texture": "assets\\Road\\map_edge\\tile_15.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "height": 32, - "name": "beach_sand_2", - "tags": "", - "texture": "assets\\Road\\map_edge\\tile_19.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "height": 32, - "name": "sand_1", - "tags": "", - "texture": "assets\\Road\\side_walk\\sand.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "height": 32, - "name": "sand_2", - "tags": "", - "texture": "assets\\Road\\map_edge\\tile_16.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "Pointer", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.0714, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 25, - "y": 23.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "weapon_icons", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\tazer_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\sniper_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 73, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 73, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "NewObject", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [] - }, - { - "name": "mouse_point", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "mouse_point", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\mouse_point-1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 360, - "emitterForceMax": 300, - "emitterForceMin": 35, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 1000, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 8000, - "name": "bullet_destroy_rocket", - "particleAlpha1": 255, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 5, - "particleAngle2": 100, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 1, - "particleBlue2": 0, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 58, - "particleGreen2": 235, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 83, - "particleRed2": 255, - "particleSize1": 100, - "particleSize2": 125, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 200, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 75, - "emitterForceMax": 120, - "emitterForceMin": 35, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 150, - "name": "bullet_destroy_machine", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 110, - "name": "bullet_destroy_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 0.800000011920929, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 25, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 45, - "emitterForceMax": 120, - "emitterForceMin": 35, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 135, - "name": "bullet_destroy_pistol", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 35, - "particleBlue2": 3, - "particleEditionSimpleMode": true, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGravityZ": 0, - "particleGreen1": 166, - "particleGreen2": 159, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 245, - "particleRed2": 173, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 40, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 35, - "emitterForceMax": 300, - "emitterForceMin": 45, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 80, - "name": "shooting_effect_rocket", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleEditionSimpleMode": true, - "particleGravityX": 50, - "particleGravityY": 50, - "particleGravityZ": 0, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 2, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 0, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 18, - "emitterForceMax": 200, - "emitterForceMin": 45, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 80, - "name": "shooting_effect_sniper", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleEditionSimpleMode": true, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGravityZ": 0, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "behaviors": [] - }, - { - "additive": false, - "alphaParam": "Mutable", - "angleParam": "Mutable", - "blueParam": "Random", - "destroyWhenNoParticles": true, - "emissionEditionSimpleMode": true, - "emitterAngleA": 0, - "emitterAngleB": 22, - "emitterForceMax": 200, - "emitterForceMin": 45, - "emitterXDirection": 0, - "emitterYDirection": 1, - "emitterZDirection": 0, - "flow": -1, - "friction": 10, - "gravityEditionSimpleMode": true, - "greenParam": "Random", - "maxParticleNb": 80, - "name": "shooting_effect", - "particleAlpha1": 204, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 97, - "particleBlue2": 167, - "particleEditionSimpleMode": true, - "particleGravityX": 100, - "particleGravityY": 100, - "particleGravityZ": 0, - "particleGreen1": 97, - "particleGreen2": 167, - "particleLifeTimeMax": 1, - "particleLifeTimeMin": 0.5, - "particleRed1": 99, - "particleRed2": 167, - "particleSize1": 100, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "redParam": "Enabled", - "rendererParam1": 1, - "rendererParam2": 1, - "rendererType": "Point", - "sizeParam": "Mutable", - "tags": "", - "tank": 45, - "textureParticleName": "", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 1, - "variables": [], - "behaviors": [] - }, - { - "bold": false, - "italic": false, - "name": "Health", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [], - "string": "100", - "font": "", - "characterSize": 64, - "color": { - "b": 0, - "g": 0, - "r": 255 - } - }, - { - "bold": true, - "italic": false, - "name": "You_lose", - "smoothed": true, - "tags": "", - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 2, - "leftEdgeAnchor": 1, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 2, - "topEdgeAnchor": 1 - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "WASTED", - "font": "assets\\fonts\\Kenney Rocket Square.ttf", - "characterSize": 95, - "color": { - "b": 0, - "g": 0, - "r": 0 - } - }, - { - "name": "Thumb", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\thumb_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 15.5, - "y": 129.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 15.5, - "y": 129.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0", - "comment2": "" - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Godmod" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "phone" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Niko" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "doors" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Global" - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "Roof_tops", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "DepartScene" - }, - "parameters": [ - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_north", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_west", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_south", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_east", - "=", - "2" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Or" - }, - "parameters": [], - "subInstructions": [ - { - "type": { - "inverted": false, - "value": "SceneJustResumed" - }, - "parameters": [ - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "DepartScene" - }, - "parameters": [ - "" - ], - "subInstructions": [] - } - ] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "niko_movement", - "=", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "separate", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "SeparateFromObjects" - }, - "parameters": [ - "Placeholder", - "roof_tops", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_north", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_south", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_east", - "=", - "2" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_west", - "=", - "2" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "separate", - "=", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "DepartScene" - }, - "parameters": [ - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "roof_tops", - "+", - "Niko.ZOrder()" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "grass", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "grass_tiled", - "=", - "-50" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "sand", - "=", - "-10" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "Water", - "=", - "-100" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "sand_2", - "=", - "-11" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "sand_1", - "=", - "-11" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_2", - "=", - "-11" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "beach_sand_1", - "=", - "-11" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "Water_cover", - "=", - "-100" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "roads", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "ChangePlan" - }, - "parameters": [ - "road", - "=", - "-10" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "DepartScene" - }, - "parameters": [ - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "DebugMessages::popup" - }, - "parameters": [ - "", - "\"GAME CONTROLS\nw = move up\na = move left\ns = move down\nd = move right\n\npageup = phone out\npagedown = phone in \nreturn = unlock phone & enter houses\n\ne = pick gun\nq = drop gun\n\nv = add to weapon wheel\nb = hold weapon on wheel\n\np = show controls\n\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "KeyReleased" - }, - "parameters": [ - "", - "p" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "DebugMessages::popup" - }, - "parameters": [ - "", - "\"GAME CONTROLS\nw = move up\na = move left\ns = move down\nd = move right\n\npageup = phone out\npagedown = phone in \nreturn = unlock phone & enter houses\n\ne = pick gun\nq = drop gun\n\nv = add to weapon wheel\nb = hold weapon on wheel\n\np = show controls\n\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "fade", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Or" - }, - "parameters": [], - "subInstructions": [ - { - "type": { - "inverted": false, - "value": "SceneJustResumed" - }, - "parameters": [ - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "DepartScene" - }, - "parameters": [ - "" - ], - "subInstructions": [] - } - ] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "fade", - "=", - "1" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ShowLayer" - }, - "parameters": [ - "", - "\"fade\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "fade", - "=", - "0" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "fade::Fadeout" - }, - "parameters": [ - "", - "fade_tiled_sprite", - "\"New scene\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "fade", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "fade::Fadein" - }, - "parameters": [ - "", - "fade_tiled_sprite", - "\"New scene\"" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "Teleportation", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "TiledSpriteObject::Opacity" - }, - "parameters": [ - "fade_tiled_sprite", - ">", - "240" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "niko_movement", - "=", - "0" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "North_doors", - "", - "", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_north", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_north", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door1", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "1", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door2", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "2", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door3", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "3", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door4", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "5", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door5", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "4", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "South_doors", - "", - "", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_south", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_south", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door1", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "1", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door2", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "2", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door3", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "3", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door4", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "5", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door5", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "4", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "East_doors", - "", - "", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_east", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_east", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door1", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "1", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door2", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "2", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door3", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "3", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door4", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "5", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door5", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "4", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "West_doors", - "", - "", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "walk_in_west", - "=", - "1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "walk_in_west", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door1", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "1", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door2", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "2", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door3", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "3", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door4", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "5", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "door5", - "", - "", - "" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "4", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ] - } - ] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": false, - "name": "sports_equipments_movable", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "inverted": false, - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "Placeholder", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "Fences", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "Bounce::Bounce::BounceOff" - }, - "parameters": [ - "sports_equipments_movable", - "Bounce", - "roof_tops", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "sports_equipments_movable", - "", - "", - "" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "ResetTimer" - }, - "parameters": [ - "", - "\"basketball\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "basketball", - "=", - "1" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "Timer" - }, - "parameters": [ - "", - "3", - "\"basketball\"" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "VarScene" - }, - "parameters": [ - "basketball", - "=", - "1" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "AddForceAL" - }, - "parameters": [ - "sports_equipments_movable", - "Placeholder.Angle()", - "70", - "1" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "PlayAnimation" - }, - "parameters": [ - "sports_equipments_movable" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "DebugMessages::popup" - }, - "parameters": [ - "", - "\"the basetball is still under development\"", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "Timer" - }, - "parameters": [ - "", - "3", - "\"basketball\"" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "Arreter" - }, - "parameters": [ - "sports_equipments_movable" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "PauseAnimation" - }, - "parameters": [ - "sports_equipments_movable" - ], - "subInstructions": [] - }, - { - "type": { - "inverted": false, - "value": "ModVarScene" - }, - "parameters": [ - "basketball", - "=", - "0" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [], - "events": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "followBaseLayerCamera": false, - "isLightingLayer": false, - "name": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "BlackAndWhite", - "name": "Effect", - "doubleParameters": { - "opacity": 1 - }, - "stringParameters": {}, - "booleanParameters": {} - }, - { - "effectType": "ZoomBlur", - "name": "Effect2", - "doubleParameters": { - "centerX": 0.5, - "centerY": 0.5, - "innerRadius": 0, - "strength": 0.3 - }, - "stringParameters": {}, - "booleanParameters": {} - } - ] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "followBaseLayerCamera": false, - "isLightingLayer": false, - "name": "GUI", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "followBaseLayerCamera": false, - "isLightingLayer": false, - "name": "fade", - "visibility": false, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Bounce", - "type": "Bounce::Bounce" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/overworldww.json b/src/layouts/overworldww.json deleted file mode 100644 index d2c10e22f..000000000 --- a/src/layouts/overworldww.json +++ /dev/null @@ -1,719 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Overworldww", - "name": "Overworldww", - "oglFOV": 90, - "oglZFar": 500, - "oglZNear": 1, - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridB": 255, - "gridG": 180, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridR": 158, - "gridWidth": 32, - "snap": true, - "windowMask": false, - "zoomFactor": 1 - }, - "objectsGroups": [], - "variables": [], - "instances": [], - "objects": [ - { - "height": 32, - "name": "grass_tiled", - "tags": "", - "texture": "tiles\\tile_01.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "behaviors": [] - }, - { - "name": "road", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_40.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_37.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_41.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_91.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_62.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_36.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_35.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_93.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_66.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_63.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_64.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_95.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_38.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tile_68.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "grass", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tiles\\tile_01.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tiles\\tile_02.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tiles\\tile_03.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "tiles\\tile_04.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "name": "NewObject", - "tags": "", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "behaviors": [], - "animations": [] - } - ], - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Comment", - "color": { - "b": 109, - "g": 230, - "r": 255, - "textB": 0, - "textG": 0, - "textR": 0 - }, - "comment": "TODO: Make overworld", - "comment2": "" - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Global" - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "disabled": false, - "folded": true, - "name": "To Remove: Tests for teleporting to room", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "KeyPressed" - }, - "parameters": [ - "", - "Num1" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "1", - "" - ], - "subInstructions": [] - } - ], - "events": [] - }, - { - "disabled": false, - "folded": false, - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": false, - "value": "KeyPressed" - }, - "parameters": [ - "", - "Num2" - ], - "subInstructions": [] - } - ], - "actions": [ - { - "type": { - "inverted": false, - "value": "RoomManager::goToRoom" - }, - "parameters": [ - "", - "2", - "" - ], - "subInstructions": [] - } - ], - "events": [] - } - ], - "parameters": [] - } - ], - "layers": [ - { - "name": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - } - ], - "behaviorsSharedData": [] -} \ No newline at end of file diff --git a/src/layouts/player.json b/src/layouts/player.json deleted file mode 100644 index 7aa342a9a..000000000 --- a/src/layouts/player.json +++ /dev/null @@ -1,904 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Player", - "name": "Player", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 4.450560373891893, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Body", - "persistentUuid": "01d7a4c9-1cfb-4e03-8357-7f4723b68f8f", - "width": 0, - "x": 365, - "y": 287, - "zOrder": 7, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 10, - "customSize": false, - "height": 0, - "layer": "", - "name": "Leg", - "persistentUuid": "ed0c54c8-fb42-41cb-9763-be3dc9682bc4", - "width": 0, - "x": 394, - "y": 309, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Hand", - "persistentUuid": "7669219d-a81b-41bd-9ceb-e5ea7505c70a", - "width": 0, - "x": 376, - "y": 326, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Hand", - "persistentUuid": "5eaaad51-0429-40fb-8c8d-f0c81c9d7db7", - "width": 0, - "x": 376, - "y": 278, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 350, - "customSize": false, - "height": 0, - "layer": "", - "name": "Leg", - "persistentUuid": "183c990e-409b-4774-bcf2-ab2adfab8691", - "width": 0, - "x": 394, - "y": 292, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Body", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "name": "Movement", - "type": "structure", - "children": [ - { - "folded": true, - "name": "handTweenDuration", - "type": "number", - "value": 0.5 - }, - { - "folded": true, - "name": "legTweenDuration", - "type": "number", - "value": 0.5 - } - ] - }, - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ], - "effects": [], - "behaviors": [ - { - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 400, - "customIsometryAngle": 30, - "deceleration": 800, - "ignoreDefaultControls": false, - "maxSpeed": 200, - "movementAngleOffset": 0, - "name": "TopDownMovement", - "rotateObject": true, - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (1).png", - "points": [ - { - "name": "pointR", - "x": 11, - "y": 24.5 - }, - { - "name": "pointL", - "x": 11, - "y": 6.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 21, - "y": 0 - }, - { - "x": 21, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (13).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 18, - "y": 0 - }, - { - "x": 18, - "y": 13 - }, - { - "x": 0, - "y": 13 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "NewTiledSprite", - "texture": "", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (11).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 18, - "y": 0 - }, - { - "x": 18, - "y": 13 - }, - { - "x": 0, - "y": 13 - } - ] - ] - } - ] - } - ] - } - ] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "Body" - }, - { - "objectName": "Leg" - }, - { - "objectName": "NewTiledSprite" - }, - { - "objectName": "Hand" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "MettreXY" - }, - "parameters": [ - "Hand", - "=", - "Body.PointX(\"point\" + Hand.type)", - "=", - "Body.PointY(\"point\" + Hand.type)" - ] - }, - { - "type": { - "value": "MettreXY" - }, - "parameters": [ - "Leg", - "=", - "Body.PointX(\"point\" + Leg.type)", - "=", - "Body.PointY(\"point\" + Leg.type)" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "SetAngle" - }, - "parameters": [ - "Hand", - "=", - "Hand.angle + Body.Angle()" - ] - }, - { - "type": { - "value": "SetAngle" - }, - "parameters": [ - "Leg", - "=", - "Leg.angle + Body.Angle()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "TopDownMovementBehavior::IsMoving" - }, - "parameters": [ - "Body", - "TopDownMovement" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjetTxt" - }, - "parameters": [ - "Body", - "Animation", - "=", - "\"walk\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "TopDownMovementBehavior::IsMoving" - }, - "parameters": [ - "Body", - "TopDownMovement" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjetTxt" - }, - "parameters": [ - "Body", - "Animation", - "=", - "\"idle\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ResetObjectTimer" - }, - "parameters": [ - "Body", - "\"switchWalkAngle\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjetTxt" - }, - "parameters": [ - "Body", - "Animation", - "=", - "\"walk\"" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "CompareObjectTimer" - }, - "parameters": [ - "Body", - "\"switchWalkAngle\"", - ">=", - "Body.TopDownMovement::Speed() / 400" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Hand", - "Tween", - "\"hand\"", - "0", - "\"easeInQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Leg", - "Tween", - "\"leg\"", - "0", - "\"easeInQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "0.4" - ] - }, - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Hand", - "angle", - "+", - "180" - ] - }, - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "Leg", - "angle", - "+", - "180" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Hand", - "Tween", - "\"hand\"", - "19", - "\"easeOutQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Leg", - "Tween", - "\"leg\"", - "19", - "\"easeOutQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "ResetObjectTimer" - }, - "parameters": [ - "Body", - "\"switchWalkAngle\"" - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjetTxt" - }, - "parameters": [ - "Body", - "Animation", - "=", - "\"idle\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Leg", - "Tween", - "\"leg\" + Body.Animation", - "0", - "\"easeOutQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "Hand", - "Tween", - "\"hand\" + Body.Animation", - "0", - "\"easeOutQuad\"", - "Body.Movement.handTweenDuration", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/rooms.json b/src/layouts/rooms.json deleted file mode 100644 index b5e31e2a0..000000000 --- a/src/layouts/rooms.json +++ /dev/null @@ -1,30550 +0,0 @@ -{ - "b": 0, - "disableInputWhenNotFocused": true, - "mangledName": "Rooms", - "name": "Rooms", - "r": 0, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 0, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 70, - "gridHeight": 70, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.13151440270276143, - "windowMask": false - }, - "objectsGroups": [ - { - "name": "bullet_obstacles", - "objects": [ - { - "name": "walls" - }, - { - "name": "flower" - }, - { - "name": "furniture" - }, - { - "name": "kitchen" - } - ] - }, - { - "name": "exit_rooms", - "objects": [ - { - "name": "room2out" - }, - { - "name": "room1out" - }, - { - "name": "room3out" - }, - { - "name": "room4out" - }, - { - "name": "room5out" - } - ] - } - ], - "variables": [ - { - "name": "swimming", - "type": "string", - "value": "" - } - ], - "instances": [ - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1aa81970-467e-4186-a084-19c91dc504d9", - "width": 70, - "x": 490, - "y": 280, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "72551a8e-5590-4d81-9de2-af5ede2940d5", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 15, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fd0cc635-912a-4346-87fd-611950da4fc3", - "width": 70, - "x": 490, - "y": 210, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e4e45405-1114-4b6a-a23d-a73c5a1e99b7", - "width": 70, - "x": 560, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "af8b8e77-1451-498e-a4b7-03fa328497a6", - "width": 70, - "x": 490, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4419fe97-b879-4912-b28a-595b6422866a", - "width": 70, - "x": 490, - "y": 560, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b03b42ba-09b9-45fd-be4c-a17daf892b3c", - "width": 70, - "x": 630, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "990a8bcb-e830-4c10-b469-1b4e536c448d", - "width": 70, - "x": 700, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "16481b2d-72ae-46c9-8e11-89330fc5a804", - "width": 70, - "x": 770, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "403f55c9-d4e8-42c1-a334-9a60241e6bee", - "width": 70, - "x": 840, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5de69103-7c35-42f5-a054-db93fb9067fb", - "width": 70, - "x": 910, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "12fb782f-bc6a-47d2-9c1c-a31f5e1004ce", - "width": 70, - "x": 980, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5d3f76ec-1eeb-49ab-a382-351353acd2a2", - "width": 70, - "x": 980, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5544cc1f-a444-45e0-bd55-8a2a6df5e9ad", - "width": 70, - "x": 980, - "y": 420, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5433cf5a-63f1-4a59-81d5-eac7b807af73", - "width": 70, - "x": 980, - "y": 350, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "15b458a4-c460-4662-be6b-675740a5a597", - "width": 70, - "x": 560, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e536ab3e-675b-4caf-80f1-4ff300ef920a", - "width": 70, - "x": 630, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2164a770-a233-45da-b9bc-5abeb404c66c", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3a4e521c-d039-4241-bbfb-4adb786dc241", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 200, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ba9ad428-0bac-4724-8058-65fd8a8e3327", - "width": 70, - "x": 980, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1fd82dbb-3d02-42ab-a553-256cc2f2e15a", - "width": 70, - "x": 1050, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9e7e0251-4d1a-428f-af7c-dc325a8e2c0c", - "width": 70, - "x": 1120, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ca9af60-fe5e-4fe7-ad97-11bde84dc1be", - "width": 70, - "x": 1260, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "907d13ad-3019-4ef3-b164-19c1b16514cd", - "width": 70, - "x": 1190, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "096ae94d-f733-4a50-aa2e-44b0ef9c7b3c", - "width": 70, - "x": 1050, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4b7d82a7-934e-4702-89e1-e3a27a09ddf5", - "width": 70, - "x": 1120, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1adeef55-fc53-4cd3-a17f-dc5c3dfab3a8", - "width": 70, - "x": 1190, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6367d019-3d7c-4539-bf0c-e33cfc186d6d", - "width": 70, - "x": 1260, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b6d361bc-d9a0-481e-802a-821da02ac797", - "width": 70, - "x": 1260, - "y": 280, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d827416c-8d3b-4306-aa75-79fb140af6a4", - "width": 70, - "x": 1260, - "y": 350, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "31a4e7d4-9663-46dd-9b1a-97670c3aba13", - "width": 70, - "x": 1260, - "y": 420, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "877830f7-50e3-4add-9b9b-13ceec806c0b", - "width": 70, - "x": 1260, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "4641f775-6bff-44a9-96fd-fad224b53a17", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": 45, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "a18a8756-3994-4b33-a7de-b8af8cbfd78f", - "width": 70, - "x": 1050, - "y": 493, - "zOrder": 45, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "89f192e7-7561-454e-8a2c-8eec1dbec4d8", - "width": 70, - "x": 1120, - "y": 493, - "zOrder": 45, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "6bfb46bf-f754-46bd-8fc4-690fe7b1da65", - "width": 70, - "x": 1190, - "y": 493, - "zOrder": 45, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c08eba5d-08f7-4fc6-b964-9c29a029042f", - "width": 70, - "x": 1120, - "y": 280, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c42978e8-369d-49f5-850a-3affda0a1d04", - "width": 70, - "x": 1190, - "y": 280, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f4ca1499-4098-4a82-9b1f-593d958049ab", - "width": 70, - "x": 1050, - "y": 350, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "05878a27-b61b-4a58-904f-f7977821ca5b", - "width": 70, - "x": 1120, - "y": 350, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fd7b0549-c757-416e-a2a9-db0b0c262c28", - "width": 70, - "x": 1190, - "y": 350, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "85bfad2e-f59b-4c04-a35c-6d2b93cb34fa", - "width": 70, - "x": 1050, - "y": 420, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "151f47f8-b5fd-4e24-a64b-4a3b99e6a8ea", - "width": 70, - "x": 1190, - "y": 420, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7d0e9154-63bd-45a7-872b-da6371e1649a", - "width": 70, - "x": 1120, - "y": 420, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "028bf9c6-b612-4636-8e97-fa06787eaa84", - "width": 70, - "x": 980, - "y": 280, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "771fa9df-62fc-4944-b0ed-00f30868901a", - "width": 70, - "x": 980, - "y": 350, - "zOrder": 5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cfde3f63-687c-4f56-a9d7-2c2e03bad4b0", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "77b86222-d743-4c0c-9e2e-d4a7242d94af", - "width": 70, - "x": 700, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a855f461-0280-4304-919c-47b121e90620", - "width": 70, - "x": 770, - "y": 210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "72189d71-c0bd-4aca-91c0-77bb88e9c61a", - "width": 70, - "x": 630, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "88c7a333-3cbe-4c1e-a597-c9bf11aa0c93", - "width": 70, - "x": 770, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3cd89c3e-4bd6-472b-a786-81af9d9eca50", - "width": 70, - "x": 910, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "abd704ff-0189-45fb-a00e-1aa4ebf030e9", - "width": 70, - "x": 840, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "82cb2f58-94e7-4b71-9537-ba1520f157b4", - "width": 70, - "x": 770, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "07012040-e163-444b-b6c0-a77b867825db", - "width": 70, - "x": 560, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "131451e4-ee9e-4d93-91b5-941ede22ec31", - "width": 70, - "x": 700, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5d7d991f-e4d0-4478-91a9-3b015a6ba5d4", - "width": 70, - "x": 910, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "de34d16f-b285-4794-ac11-03363e5258b4", - "width": 70, - "x": 630, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c19f693b-06de-4871-9c66-53a474bdc8c8", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "42fa7497-c8e6-480a-aa7f-96acc95d448b", - "width": 70, - "x": 840, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a1b9340b-6a4e-446c-83a3-19f4c3c94ce2", - "width": 70, - "x": 560, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0bbc441a-b36f-4ede-a03f-346a90f39df3", - "width": 70, - "x": 700, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b157704d-b475-476b-891f-f0db71345613", - "width": 70, - "x": 770, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "06bba5de-3ad9-41d8-8f72-ef891c5e3472", - "width": 70, - "x": 840, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "47524365-8296-4c80-be8a-2818f81113dc", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d43b7078-8736-4dac-ac30-948c7d35a70f", - "width": 70, - "x": 560, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b447fdb4-04f2-42df-9f42-b54397ef8674", - "width": 70, - "x": 980, - "y": 280, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3d0576c5-c042-4f9a-af95-1f7252561f94", - "width": 70, - "x": 770, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "018f9a42-a329-400b-ad6a-30434f0dbb23", - "width": 70, - "x": 700, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "962c990e-d991-4a07-8fd1-e024f2ec23f0", - "width": 70, - "x": 630, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "57092647-bd70-4332-a7cb-b877ea014d20", - "width": 70, - "x": 770, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0a273654-fc19-4e3d-b731-a022cb728f38", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "53efce83-d58d-4133-92dc-d2d44378ea9c", - "width": 70, - "x": 630, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "769f7002-7f92-4607-88b0-64ddd7493a60", - "width": 70, - "x": 700, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "49dabf96-fa33-4776-af63-9f2b61c5a1ea", - "width": 70, - "x": 910, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bb3e6865-3702-40aa-b6da-4e0565f26952", - "width": 70, - "x": 490, - "y": 280, - "zOrder": -7, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4848381c-6f42-4cf4-8442-69b514a31773", - "width": 70, - "x": 770, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1a24179a-53eb-4483-95e2-1866b4d0a92c", - "width": 70, - "x": 910, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4964a790-e412-4da3-b20f-e7549f3df137", - "width": 70, - "x": 840, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b3f96351-8f7d-4dd7-a312-bb9047026b97", - "width": 70, - "x": 840, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "39334a0e-6148-4142-a563-be671d95650a", - "width": 70, - "x": 700, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "33138f60-10d3-49de-9bbf-c4843726d957", - "width": 70, - "x": 700, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "13e869cd-8ff2-4cdf-a09c-d51cd9561446", - "width": 70, - "x": 840, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b83b013b-db9e-40a3-b6d7-d14bff09cf05", - "width": 70, - "x": 630, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7ccad07f-2325-42e7-a7e5-20a4ee73231d", - "width": 70, - "x": 700, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0bd33980-3fcf-47e9-a52e-2f8300f850d8", - "width": 70, - "x": 560, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "31a34b1b-b436-4461-8ae5-edb14eefb9ba", - "width": 70, - "x": 840, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "48d0f939-d4e3-41e6-9940-95680c007430", - "width": 70, - "x": 980, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9b467c8c-c48a-4316-95b4-b949a1d22d50", - "width": 70, - "x": 630, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c3fd9e82-b272-4326-8ba2-a3c5c0fb9ba2", - "width": 70, - "x": 560, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "334e1317-3ce7-49b4-9b84-a6b3d6f0c5b1", - "width": 70, - "x": 840, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "267780e0-6bac-44e1-b02f-8bab99bee6d4", - "width": 70, - "x": 770, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7fcf1028-21ac-4da2-b717-d7d9fb5eea62", - "width": 70, - "x": 770, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4bcefb52-b57b-434c-acea-9379fc57e0bb", - "width": 70, - "x": 630, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "64a39a75-2305-42df-8123-3396109e39c4", - "width": 70, - "x": 1190, - "y": 490, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "395c8acc-08eb-4b6e-912f-69ec3339d327", - "width": 70, - "x": 1120, - "y": 490, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9001e983-26d2-4d64-b261-388e2a1af5f0", - "width": 70, - "x": 1050, - "y": 490, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a75fd84f-5ee1-4f98-b001-374cbd37a7e6", - "width": 70, - "x": 560, - "y": 70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "3f954991-9952-4aae-a089-1ab57db62042", - "width": 70, - "x": 560, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "fed3a855-ce14-49bd-bd17-9a83e3eea85f", - "width": 70, - "x": 630, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a4136305-d42b-4174-b1cc-9ce7e16003d4", - "width": 70, - "x": 700, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "b86e62cb-bc4d-42b3-a7e8-e57ea8dd8c22", - "width": 70, - "x": 630, - "y": 70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "61e60d0c-87d2-40ec-b326-ae6c96857c58", - "width": 70, - "x": 700, - "y": 70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "67f439f5-f3ae-49fa-b4ab-0da28ee962c6", - "width": 70, - "x": 490, - "y": 140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4c2add2f-9a8a-4ae7-b372-7019370e1544", - "width": 70, - "x": 490, - "y": 70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2880ed68-7e53-4c2a-84d9-2aa4d4f464d5", - "width": 70, - "x": 490, - "y": 0, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "70dfa280-53c3-4950-bff4-4de3ed6d9136", - "width": 70, - "x": 490, - "y": -70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "22b61dd4-8316-463a-a936-c882a8acc992", - "width": 70, - "x": 490, - "y": -140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e0a7a832-208a-453b-b40d-a16c7b3bf80f", - "width": 70, - "x": 560, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "268d2069-c329-4617-a49c-becb2cdf60bb", - "width": 70, - "x": 560, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1b24b0a7-0342-44ec-953c-31d20eb3f587", - "width": 70, - "x": 630, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "66055667-a69b-433c-87c2-cc4c3975488e", - "width": 70, - "x": 560, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8606993f-17c6-4e73-af76-81d468135bdd", - "width": 70, - "x": 910, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1d2dc400-b8e9-4882-baa7-6821d90d2c45", - "width": 70, - "x": 910, - "y": 140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "22efa1a5-f567-4674-a6cb-d1467da31312", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "46832260-c3df-4acc-8c8e-764d2a2c3e02", - "width": 70, - "x": 560, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "71d9c0fb-85d2-4493-984b-917f2d0d760e", - "width": 70, - "x": 630, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c9b2a5ea-2d9c-4158-a04d-d6169f20983a", - "width": 70, - "x": 700, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "79329879-df4f-425c-a22a-2992050fabb2", - "width": 70, - "x": 770, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "135f636e-4934-4eec-8f8c-e13cd5c602b2", - "width": 70, - "x": 840, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a8cba765-fa5e-4be8-bc78-513d9efd3007", - "width": 70, - "x": 910, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fb14f20d-d196-4e06-a262-1ece149e3b7a", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "00bc0f37-053d-4034-9fb4-cf3e6302eb6e", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1618af07-8ca7-468a-b689-a86dbe13e2aa", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "380e1527-e8fd-4d54-8bf4-9625ee9cf239", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1cec2e32-20e4-4c47-b066-3af1af7dcda7", - "width": 70, - "x": 1050, - "y": 280, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d05a1bb4-6aed-423d-88c5-51292f8c50b7", - "width": 70, - "x": 1050, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "95edafc0-4bf6-40b6-99c8-2c5fd91dbaac", - "width": 70, - "x": 1050, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7d652598-0020-43e7-86ec-81d86633570c", - "width": 70, - "x": 980, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2a8105dc-5125-40e8-94d6-dbbb11768f1e", - "width": 70, - "x": 980, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6a9f351-5931-4fd8-9fca-9072832180eb", - "width": 70, - "x": 980, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "29f2f692-3581-4434-a96d-383375c230f9", - "width": 70, - "x": 980, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3f7bc0a9-1296-4b11-b067-65de3cefe041", - "width": 70, - "x": 1120, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5a9e3e26-93e3-48c4-959c-33d81f824b27", - "width": 70, - "x": 1120, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "475033b8-14e5-475a-928f-135975267bc6", - "width": 70, - "x": 1120, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "df1d8f17-5513-4400-a66f-17ce4388a899", - "width": 70, - "x": 1120, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c56c5b30-ba66-4032-b959-6173678f93ca", - "width": 70, - "x": 1190, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c39dcd27-71a5-418b-ab46-c3237c8050ed", - "width": 70, - "x": 1190, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fd4f93f7-17d6-4a26-87d2-07b5208d0048", - "width": 70, - "x": 1190, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "80a2b639-00ce-4511-a244-40bb626399c9", - "width": 70, - "x": 1190, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8e3b3458-dc0f-45be-a146-4918397236b7", - "width": 70, - "x": 1050, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7afc2825-ee38-4646-bb42-2733c03a0a60", - "width": 70, - "x": 1050, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8abe7278-4449-45f8-b531-b209d3c11139", - "width": 70, - "x": 980, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9e782d7f-c7b9-42d9-b62c-e8ca388f24bd", - "width": 70, - "x": 1050, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a0b093af-52c7-4d8d-8438-45b36becfb7b", - "width": 70, - "x": 1120, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4f5e040c-53c5-4d8d-a0cd-7c8f985fbb4f", - "width": 70, - "x": 1190, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fe0afbe2-5de3-43b9-8af1-4fd94f729e3a", - "width": 70, - "x": 1260, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "29919c52-352c-4371-9cff-4ec8bf915f14", - "width": 70, - "x": 1260, - "y": -70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b0abd154-401a-4cf1-9c6f-407fb0d90e28", - "width": 70, - "x": 1260, - "y": 0, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "37b09484-46ac-4d4b-948b-572386ea8e77", - "width": 70, - "x": 1260, - "y": 70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9406c823-a2b9-4b00-9fd1-3360ae872431", - "width": 70, - "x": 1260, - "y": 140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "81ef6350-e682-489a-8f3e-f98a1db8ce9c", - "width": 70, - "x": 910, - "y": -70, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "212e5882-3ac8-485a-8754-9a3a25950a24", - "width": 70, - "x": 910, - "y": 0, - "zOrder": 11, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a63add9b-4431-4478-a5e8-ea0d103f3655", - "width": 70, - "x": 910, - "y": 70, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "50674f7d-0cc4-49bf-bfcb-a716442059a9", - "width": 70, - "x": 700, - "y": 210, - "zOrder": 7, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2777e6bf-6c7a-4467-a8de-13f7f566b8f1", - "width": 70, - "x": 770, - "y": 210, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1583f5ba-536e-4a48-afa2-9103425f1343", - "width": 70, - "x": 840, - "y": 210, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 230, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "60f41bbc-4bff-49d0-b4f5-9e4cf3832d0d", - "width": 70, - "x": 804, - "y": 453, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 230, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "cd2456c0-2f0f-4fe4-bff8-fcd200449cad", - "width": 70, - "x": 760, - "y": 400, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 230, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "488ce3bc-207b-48d0-b755-b154b8a1744d", - "width": 70, - "x": 716, - "y": 348, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 403, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "b7f4b8f7-03e7-48e4-9890-0fc57963913d", - "width": 70, - "x": 560, - "y": 490, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "05b54f10-8c48-4744-a84b-60ff847e7ce8", - "width": 70, - "x": 840, - "y": 501, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 230, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "3e54bb85-7611-415b-a8af-d737183c6a07", - "width": 70, - "x": 674, - "y": 474, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Placeholder", - "persistentUuid": "a30a58a5-ccd8-49ab-b536-cdf1fe3ff02a", - "width": 0, - "x": 420, - "y": 140, - "zOrder": 18, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 138, - "layer": "", - "name": "room1out", - "persistentUuid": "3d2ca0ae-a7e9-4e1e-ba72-26306ec66b41", - "width": 20, - "x": 490, - "y": 315, - "zOrder": 19, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3c8f4816-404a-4739-98ce-7c475d3c8a96", - "width": 70, - "x": 490, - "y": 280, - "zOrder": -4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f838dffc-1715-42db-b682-00e5b5f9cbe9", - "width": 70, - "x": 490, - "y": 350, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1633f186-0135-4f6f-901a-bb88baf2a05b", - "width": 70, - "x": 490, - "y": 420, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "gun1", - "persistentUuid": "990c5bf1-fd49-4966-8274-03b83d5f638f", - "width": 0, - "x": 770, - "y": 140, - "zOrder": 22, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a67beefd-60aa-492c-b989-130a03e03d10", - "width": 70, - "x": 2101, - "y": 350, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "574c88c4-2b92-4b16-929d-18d808cf1bb7", - "width": 70, - "x": 2101, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "216dad58-0947-48b9-9490-4463c7c958ca", - "width": 70, - "x": 2171, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "328ff414-2eb7-496f-b2ec-3b137b9d4871", - "width": 70, - "x": 2101, - "y": 560, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7a6b1ada-7119-4e50-8d94-b2a5029d2c64", - "width": 70, - "x": 2241, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "794693dc-8991-492e-ad88-d15686938287", - "width": 70, - "x": 2311, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c96f8835-c8d2-4cb4-af6b-5b9eb7edb023", - "width": 70, - "x": 2381, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "baca2f9e-5ecd-4212-8006-54bd93862159", - "width": 70, - "x": 2451, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8929e882-e8ef-429d-9ac8-548be2e8cb65", - "width": 70, - "x": 2521, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d29a0f87-64e9-49cb-8fa4-1073b8cc14db", - "width": 70, - "x": 2661, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "45c7c391-ac51-4520-bbb6-a0d405e908d9", - "width": 70, - "x": 2661, - "y": 350, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "0077dc7f-e417-42dd-abbd-3e40d2890d8d", - "width": 70, - "x": 2731, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f219d402-cdc9-4e2e-b862-f4b71e254157", - "width": 70, - "x": 2801, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8674afdc-0d56-42c0-8953-440274be1ec4", - "width": 70, - "x": 2591, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cca034c1-191b-45d7-b47d-88eea36e3447", - "width": 70, - "x": 2731, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e9df8680-f498-4d7f-a637-f9422c65f8d1", - "width": 70, - "x": 2801, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f855b643-97e6-4c05-85fb-e4949309e3e9", - "width": 70, - "x": 2871, - "y": 560, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fff3cfb3-5a9c-4ae8-a55a-fc053997281a", - "width": 70, - "x": 2871, - "y": 280, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3dfb2ac2-48f1-44ae-87ff-44e5efdd8ab3", - "width": 70, - "x": 2871, - "y": 350, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "65cffdfc-495c-47ad-b5a7-c3b54a6d0787", - "width": 70, - "x": 2871, - "y": 420, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b3533b98-2b88-4b49-8995-d7110f4d5f84", - "width": 70, - "x": 2871, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "92894b2d-4359-416e-83f8-60c500923107", - "width": 70, - "x": 2801, - "y": 490, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "04766363-6062-4dd7-b453-a0bb788f63fa", - "width": 70, - "x": 2801, - "y": 420, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "41c78d54-efc4-49be-8274-bc44d650baa0", - "width": 70, - "x": 2731, - "y": 280, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6367e121-1c2a-4a81-bb6e-ce987c086f37", - "width": 70, - "x": 2801, - "y": 280, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "dd165296-d401-47d8-b436-5948beaa1779", - "width": 70, - "x": 2731, - "y": 350, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "79ae1cf0-7228-4494-8f27-cb87e9f8031e", - "width": 70, - "x": 2801, - "y": 350, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3dd7629e-1db8-4efa-87c2-bd8dd3f11ff1", - "width": 70, - "x": 2801, - "y": 420, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "32452557-3dde-4d52-9237-2cc2ab679f96", - "width": 70, - "x": 2731, - "y": 420, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "17892b2c-635e-406e-8e92-bd3cb1587724", - "width": 70, - "x": 2661, - "y": 280, - "zOrder": 3, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d349539d-523c-45d5-98b9-1403af7590a2", - "width": 70, - "x": 2661, - "y": 350, - "zOrder": -1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f1a19dab-e994-44f5-92ff-7acd1d44e6b8", - "width": 70, - "x": 2311, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0759fd8f-6e07-46c1-b018-5e0b0fa45c2d", - "width": 70, - "x": 2381, - "y": 210, - "zOrder": -8, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "79dfd043-5d5c-4509-afe6-199fea9d9998", - "width": 70, - "x": 2241, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "72bb6fe1-1e55-4396-9911-fe55c3e4f8ed", - "width": 70, - "x": 2381, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8334ce60-2b3c-4833-acf3-f5228090114f", - "width": 70, - "x": 2521, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2b9dcff1-84d6-4c09-b115-778a9c6bac64", - "width": 70, - "x": 2451, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a5084ea3-18c6-4f1d-b5f3-bd5063e17722", - "width": 70, - "x": 2381, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9339cf46-ccb2-4956-96c9-8c1691ab6bc6", - "width": 70, - "x": 2171, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "240a6f01-5836-4e47-aae7-370d27f9b122", - "width": 70, - "x": 2311, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "39441fee-45dc-4806-a80b-b893a2700732", - "width": 70, - "x": 2521, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5b602816-4f61-4bea-a2ef-4478c998cc99", - "width": 70, - "x": 2241, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b5849a9d-0d2e-4b23-99b5-4972bcb2d77b", - "width": 70, - "x": 2311, - "y": 210, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "02505d09-e123-4467-92ee-5a552ccb4aba", - "width": 70, - "x": 2451, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a7a9922c-b48d-4ea8-bb4b-07849b32d896", - "width": 70, - "x": 2171, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "57947b94-db20-4e95-85eb-87a2ca4bedc3", - "width": 70, - "x": 2311, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "155cae01-c1ec-4787-bb8e-9270d2114655", - "width": 70, - "x": 2381, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8df9d717-2f23-46c8-9409-5032480247f8", - "width": 70, - "x": 2451, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b2539759-2b68-4043-90f6-77cdba001e90", - "width": 70, - "x": 2101, - "y": 350, - "zOrder": -6, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9a5e9c17-05e0-4899-96c3-8f7194a5bdcd", - "width": 70, - "x": 2591, - "y": 280, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8fba4415-2c66-4e78-bc5b-2acd247748c4", - "width": 70, - "x": 2381, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b85c577e-a857-4f4b-838b-8fa74e123065", - "width": 70, - "x": 2311, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3432694d-a874-4416-82fc-d71d6af86db7", - "width": 70, - "x": 2241, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a57bb393-6736-4c89-afa4-a59e38dbef7d", - "width": 70, - "x": 2381, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "241795b2-47da-4454-b0bd-dd2c0171fa21", - "width": 70, - "x": 2451, - "y": 210, - "zOrder": -7, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2a64601e-2ee2-4056-850f-3a8c6f32ce26", - "width": 70, - "x": 2311, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fba38825-e911-40a4-b0c4-ad5def114f8c", - "width": 70, - "x": 2521, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "deae5d14-2277-4b10-afef-aeaa7c1278a9", - "width": 70, - "x": 2381, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ea0c14bc-8fe7-4798-8276-37070aa3e913", - "width": 70, - "x": 2521, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "74724541-0319-43ae-89f0-af40b4eaf622", - "width": 70, - "x": 2451, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "012b1e06-5b1f-4d05-aa90-581e1c3374ae", - "width": 70, - "x": 2451, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e84a3b2d-276d-41dc-8497-83b10e1f5562", - "width": 70, - "x": 2311, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a6428d6c-71ad-428c-830b-b39bcac9d12b", - "width": 70, - "x": 2311, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8a078151-5197-4cfa-8ae4-22b79988c607", - "width": 70, - "x": 2451, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "01b30d15-4106-4b78-9597-2d4049475299", - "width": 70, - "x": 2311, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e46541c6-5b01-4ced-b6e4-3e5594b41b1f", - "width": 70, - "x": 2171, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bd9b26bf-f7dc-46be-9ea4-3b2825a7f377", - "width": 70, - "x": 2451, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "871b89c3-b5e0-4a5f-8933-6bba8b89fb6e", - "width": 70, - "x": 2591, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cf1f1ae6-4327-431a-a204-ffb90ac0f132", - "width": 70, - "x": 2241, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c7e38552-1934-4169-be50-cf23b1641eb3", - "width": 70, - "x": 2171, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d4bf4173-3425-4af2-a777-c05033701e0a", - "width": 70, - "x": 2451, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cb2f564f-50e5-4e86-bd4d-76822a92c5c3", - "width": 70, - "x": 2381, - "y": 280, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "29dc9121-60f2-4f11-8f88-2048cc4959e7", - "width": 70, - "x": 2381, - "y": 350, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "de24d838-ab01-4d38-b528-758413258d2c", - "width": 70, - "x": 2801, - "y": 490, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d549e490-5380-4e89-9925-f8f4eb22c58a", - "width": 70, - "x": 2731, - "y": 490, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "47831770-f5eb-4a24-80a5-fcfb8fab5ac3", - "width": 70, - "x": 2591, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a64c3cd7-c6f6-4e0c-86fa-caa2ffbf5eb8", - "width": 70, - "x": 2591, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "253b41af-1826-4598-adb5-0c56fe78a140", - "width": 70, - "x": 2521, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "0c5f1239-93db-4963-9968-34aaa9156b7f", - "width": 70, - "x": 2451, - "y": 0, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "660a7a9d-83c9-453f-ac3e-e16fb1daddc7", - "width": 70, - "x": 2521, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "fec15928-bcf5-4ace-8d19-2316aef45cf0", - "width": 70, - "x": 2451, - "y": -70, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "43d66dbc-a892-4f67-a95c-4a6e8c7cb209", - "width": 70, - "x": 2241, - "y": 140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9750360a-ebec-4ed6-950e-fef7c722d44b", - "width": 70, - "x": 2241, - "y": 70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "74178c7a-4fc1-400e-9365-d56961083c8b", - "width": 70, - "x": 2101, - "y": 210, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "96a82289-2904-4677-80d9-de3e0adfabd2", - "width": 70, - "x": 2311, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "76892998-40fd-4af2-abfd-764ccb54b5f1", - "width": 70, - "x": 2381, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cba87dc2-15ac-42bc-a23d-b10c61a8ce86", - "width": 70, - "x": 2451, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "324aa852-468e-4d45-bd72-e9d22ef52c70", - "width": 70, - "x": 2521, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e87e1f05-b13c-4da8-8af9-c68644cb5073", - "width": 70, - "x": 2521, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "db7e792f-1a88-4110-bef5-58362458eedb", - "width": 70, - "x": 2521, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cb58e1da-4599-4eff-a15e-97d3c3485b7c", - "width": 70, - "x": 2521, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3f1d1ba8-c160-49db-af99-34aa28ef7077", - "width": 70, - "x": 2591, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e3b88aea-7acf-4b2b-a36c-0a6421f4cb63", - "width": 70, - "x": 2661, - "y": 70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "81d72c1a-daa8-43a6-b1b0-0f708b97c33c", - "width": 70, - "x": 2661, - "y": 140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0e42143c-3115-48dd-a584-cfadd88ddada", - "width": 70, - "x": 2311, - "y": 210, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d4f643b1-c90e-4d55-8717-724017f0a2a1", - "width": 70, - "x": 2381, - "y": 210, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "f43da386-3cd8-4ae5-96e9-7ad893b94bcb", - "width": 70, - "x": 2381, - "y": 490, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "20bc17b5-b430-4165-8502-6d8447f365a2", - "width": 70, - "x": 2521, - "y": 490, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "e9d3d348-20dc-45f3-b89d-757316cf1018", - "width": 70, - "x": 2591, - "y": 490, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 40, - "layer": "", - "name": "furniture", - "persistentUuid": "5d31ac81-b326-40c2-aa1d-edf35a425ce4", - "width": 40, - "x": 2316, - "y": 496, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "108b9f0f-5406-4644-ba4d-4e8159b40489", - "width": 70, - "x": 2101, - "y": 350, - "zOrder": -5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "39ccef98-5e7a-4e12-9ecf-457a82002579", - "width": 70, - "x": 2101, - "y": 420, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ed1d8ee9-8378-41a3-bebd-4c31c22c1afa", - "width": 70, - "x": 2101, - "y": 280, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b067c54f-af62-4eb3-9d63-6944e02f30ac", - "width": 70, - "x": 2171, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "aed958b5-6563-446c-86b6-c21f549c208a", - "width": 70, - "x": 2871, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9ae2e19b-5d43-4b4e-9b3d-6b15eb85ae5b", - "width": 70, - "x": 2241, - "y": 0, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8b59ba75-fc6b-4a00-867e-1b756afff0c6", - "width": 70, - "x": 2241, - "y": -140, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "db8da8bb-41e7-4e76-a1c9-812eb369c578", - "width": 70, - "x": 2241, - "y": -70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5857033e-1fb6-4976-ad0e-5c3f57dc8c2a", - "width": 70, - "x": 2661, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f3438ace-a6bc-4297-8768-8c4915a37bcf", - "width": 70, - "x": 2661, - "y": -70, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3ab04b68-c383-4423-b4db-696202b3de65", - "width": 70, - "x": 2661, - "y": 0, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9cf4a744-ddf1-4d11-99e3-8fbd25683791", - "width": 70, - "x": 2381, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b957ba06-f013-4cab-a8f7-3a7d58762fce", - "width": 70, - "x": 2241, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "22432071-f380-4534-aeca-38b9f71764b8", - "width": 70, - "x": 2451, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "870c2e30-4663-4a70-80d8-5d8456c10820", - "width": 70, - "x": 2521, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c15e4403-66cb-4fe7-8248-fcb672d460e7", - "width": 70, - "x": 2591, - "y": -70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "af484a1f-337e-41ad-9fdb-a0ad52464c3c", - "width": 70, - "x": 2591, - "y": 0, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4d50948d-d722-4d0b-883a-5de35b9ea13e", - "width": 70, - "x": 2591, - "y": 70, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1fd5d6ac-e83f-4897-bbe6-8812aee60b5f", - "width": 70, - "x": 2521, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0b0d44f6-dcbb-4e1b-81ed-5a5e36f9fd49", - "width": 70, - "x": 2661, - "y": 140, - "zOrder": -11, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9ae3997e-4983-4a6e-b333-f7bb75769964", - "width": 70, - "x": 2661, - "y": 70, - "zOrder": -11, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f370a583-c8e7-423f-abea-e4be7a4e2aa2", - "width": 70, - "x": 2591, - "y": 140, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "39f71beb-284c-4b10-b06b-58c75c777982", - "width": 70, - "x": 2381, - "y": -70, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1e592b29-2d37-4d66-be1c-8a4c26475116", - "width": 70, - "x": 2591, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cd6b0da0-7fc4-4ee9-b74b-25108ab854ed", - "width": 70, - "x": 2661, - "y": 490, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e7a04ae9-6920-4442-80a1-56c1e67065e8", - "width": 70, - "x": 2661, - "y": 420, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "86778686-99cc-4d43-8cba-b90e7a33745f", - "width": 70, - "x": 2661, - "y": 280, - "zOrder": -3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "74df6a91-5a25-472d-92da-14b13603c481", - "width": 70, - "x": 2661, - "y": 350, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4037b41f-3fa3-4a85-882b-a50d655794cf", - "width": 70, - "x": 2591, - "y": 490, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ca764c02-4ef4-475e-9d90-e5f502e73d52", - "width": 70, - "x": 2591, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1a792474-e6cd-4730-8348-51dbc33914e9", - "width": 70, - "x": 2661, - "y": -140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "c0512fb2-b8d2-4b6f-b782-ea5f4df5ec30", - "width": 70, - "x": 2801, - "y": 350, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "10dbe519-0cc0-4224-a81e-3856dc835835", - "width": 70, - "x": 2451, - "y": 280, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "e22e0d94-8df5-49e1-8e1f-7809051809c0", - "width": 70, - "x": 2451, - "y": 490, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4a559747-f009-402f-9121-0676a92b81ae", - "width": 70, - "x": 2101, - "y": 490, - "zOrder": -1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1e917927-5bd1-4085-84b0-ed4456951d54", - "width": 70, - "x": 2101, - "y": 420, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f549d2dd-409d-4ffa-8fb7-dd6d9323f96f", - "width": 70, - "x": 2101, - "y": 490, - "zOrder": -14, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 40, - "layer": "", - "name": "furniture", - "persistentUuid": "36eb65da-1d7a-4693-bffc-bd423506e61e", - "width": 40, - "x": 2606, - "y": 507, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "41eaec91-3341-4985-ad43-29732349e591", - "width": 70, - "x": 2302, - "y": 481, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 50, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "32c4d00f-5f1b-4d19-b3f2-8d926499c17a", - "width": 70, - "x": 2241, - "y": 420, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "a8bdca94-ce68-4cab-963a-bc23ea006f58", - "width": 0, - "x": 770, - "y": 280, - "zOrder": 32, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "ammo", - "persistentUuid": "2f15504b-7810-4c07-a484-78d55024f574", - "width": 0, - "x": 840, - "y": 350, - "zOrder": 33, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "AmmoText", - "persistentUuid": "36822822-c4f5-41c8-8413-b1cc33283c20", - "width": 0, - "x": 0, - "y": 630, - "zOrder": 34, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "crossair", - "persistentUuid": "17eb0375-5132-4694-b344-c489559dd83f", - "width": 0, - "x": 560, - "y": 350, - "zOrder": 202, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire", - "persistentUuid": "a81690d2-101a-4442-9ccd-a902aad83fe9", - "width": 0, - "x": 560, - "y": 420, - "zOrder": 203, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flame_thrower_fire_collision", - "persistentUuid": "3a466f49-34ea-4274-8981-2e8f77eae5a7", - "width": 0, - "x": 140, - "y": 280, - "zOrder": 204, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "73e55424-fce7-4b26-a92b-b01c7c7194fc", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "33ec63dd-a01d-4dfc-9716-6c8e1b446b28", - "width": 70, - "x": 210, - "y": 1680, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "df0bbc06-83bc-43c8-8146-98c6957f0664", - "width": 70, - "x": 560, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "242b6d2e-3d14-492a-9315-b5f89bda94b9", - "width": 70, - "x": 490, - "y": 2030, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ffbd7b40-a086-470e-bd1d-fd49ef5cc09b", - "width": 70, - "x": 630, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "38092550-4456-485c-9fa6-191e72940e40", - "width": 70, - "x": 700, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fc56d41e-365a-4c51-b778-77c0ba7335f0", - "width": 70, - "x": 770, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ed674b11-ee23-4c79-8bbb-9d82b8f9cdac", - "width": 70, - "x": 840, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fbe0a9f8-1c04-4aa7-b008-7c34f495e331", - "width": 70, - "x": 910, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ddb98d08-f70c-4d9c-bd57-3d28a1994a22", - "width": 70, - "x": 1120, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e9030163-9da2-4b1b-a0a2-621e8d02815c", - "width": 70, - "x": 1190, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d98b9036-8823-4cc7-8d2a-695fd5487885", - "width": 70, - "x": 980, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b0b48201-c4a1-4d80-a31f-c36f839f11e9", - "width": 70, - "x": 1120, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5678fefd-f892-420b-8803-43d8975fb912", - "width": 70, - "x": 1190, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f5a719c9-9839-4eac-95ff-6d93566c063d", - "width": 70, - "x": 1260, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d2591b69-5eee-41e7-8d9f-76d7af88afcd", - "width": 70, - "x": 1260, - "y": 1750, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4be1b432-0ec9-40f2-a83a-45af10df25ef", - "width": 70, - "x": 1260, - "y": 1890, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "0fd57db5-52cc-459d-9361-af0d856660b9", - "width": 70, - "x": 1260, - "y": 1960, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "aac2cdeb-3047-447e-9ac3-87940812258c", - "width": 70, - "x": 1120, - "y": 1750, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "620650ed-d290-4a23-b7e2-5665a5b63df9", - "width": 70, - "x": 1120, - "y": 1680, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "786062d2-435a-4351-9205-aaddd64aa267", - "width": 70, - "x": 1190, - "y": 1750, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e54d56a8-7c93-4335-a40b-d2152e0aaafb", - "width": 70, - "x": 1120, - "y": 1750, - "zOrder": -12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "91600b5f-1c24-4a73-acbe-f009b2c18e70", - "width": 70, - "x": 1120, - "y": 1890, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a65c8de8-d5dd-4bb9-98ce-4c3452203f23", - "width": 70, - "x": 1190, - "y": 1890, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "122ddbef-9a34-4651-985a-32d8b3ee5c87", - "width": 70, - "x": 700, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b937a527-da67-47e7-8670-b5deb49d082b", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7de5361a-2664-4626-924e-260417b5732e", - "width": 70, - "x": 910, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "dd599e3b-f90d-4d4c-81ec-9719752aa6c2", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "84593a35-33bc-41e0-ae46-497922045901", - "width": 70, - "x": 280, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2442cbe0-3258-4aa2-8a88-25d916c63ab7", - "width": 70, - "x": 910, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e7a9aeec-24d4-41c8-86e7-d00c4cabee14", - "width": 70, - "x": 350, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d4eb895e-5d8c-4334-90a0-aa8b76ab6719", - "width": 70, - "x": 420, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "863f55a4-d7ef-4f42-a3f6-26bf8c973a51", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "49c644af-cea1-4bb6-8ae9-293639d903d4", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "35cdc659-4e0a-42b7-8c68-dbf7b536bd88", - "width": 70, - "x": 210, - "y": 1610, - "zOrder": -11, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1c8afc9c-4d2f-4e6f-9336-d45ec862d45a", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8ff5fd7d-8abc-45be-bb95-cc4e7eeda8e8", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b5aae3c3-d561-44dd-8c8c-071781eee38f", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": -7, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5d887085-7cf7-43f7-9d19-57d860f61af9", - "width": 70, - "x": 700, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d599bd53-ddf4-43b3-875b-3a7a32b30ff1", - "width": 70, - "x": 630, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8e331be4-5d43-46c8-8b3d-03322137a896", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5fd9f5da-1ef8-405b-bed8-30877acff7f9", - "width": 70, - "x": 280, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6f0ad9b8-1ebd-44fb-951d-b4a9e3a8be58", - "width": 70, - "x": 910, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "67c05911-86e2-47d2-8aed-ffddb8944e6a", - "width": 70, - "x": 210, - "y": 1680, - "zOrder": -8, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4db74bcd-161e-495a-b5e9-a76e0b1925cc", - "width": 70, - "x": 700, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "31c6116a-8738-4e3c-8e62-9e7977d09c6e", - "width": 70, - "x": 350, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2705b1eb-4856-4ad5-ab82-83f93bf34fb8", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d68111f0-ce9f-4a75-88b1-aedfb88569f6", - "width": 70, - "x": 280, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bdf57f18-0856-4b78-b82b-330304cc276d", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "395aa9b1-3558-493a-9286-bf381528f995", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b827b285-352a-4ea6-8833-c7541da251a6", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "29c59928-e9f2-41d2-a305-69d94192a8b4", - "width": 70, - "x": 420, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ebbdeb02-65f7-48f4-a265-9c42095bc320", - "width": 70, - "x": 1050, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0dbd9763-1ad3-4b07-92c5-bf3034f347ee", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0eff2e85-9c6a-4bf4-aaf6-36ac82074833", - "width": 70, - "x": 420, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "353886f5-06e0-44a9-a6b2-6dacb5d00bbe", - "width": 70, - "x": 1190, - "y": 1960, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "60c52358-b835-46e0-b1cb-867e3d9f8dfe", - "width": 70, - "x": 1120, - "y": 1960, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "255d9f87-6f88-448d-b242-02b445cd79e2", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 25 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "69ec8f4b-108f-4aa6-9f21-12276bb42cac", - "width": 70, - "x": 560, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 24 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2634e704-0f14-4dc3-8b05-6ee15186ef90", - "width": 70, - "x": 560, - "y": 1890, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 26 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "25a42206-0af5-4035-aa08-a3d0335ef480", - "width": 70, - "x": 630, - "y": 1890, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 27 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "7c03050b-bff7-4555-b509-979d59c48b7b", - "width": 70, - "x": 560, - "y": 1960, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 28 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "e74dbf66-dcb1-444d-8584-2743b53343c0", - "width": 70, - "x": 630, - "y": 1960, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 29 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f8e527ef-88d2-4ea7-a7ca-53ce880b3429", - "width": 70, - "x": 210, - "y": 1470, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d0af732e-2080-4e8f-8ee4-6297de56a23a", - "width": 70, - "x": 560, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "641468c0-11e5-4894-aded-83f963e311c3", - "width": 70, - "x": 630, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7b708160-5f68-4f7c-87d5-d5bcf76ee1a1", - "width": 70, - "x": 700, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d3ebbb9a-9ea8-49b8-bf47-2511ca84084b", - "width": 70, - "x": 770, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "624a789e-904a-463c-a3ab-e4ede8365415", - "width": 70, - "x": 840, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9a69134e-7a7b-4e0d-8129-5a214566faba", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "b749ca20-a9e1-49a3-9d53-d4b87ce02db5", - "width": 70, - "x": 630, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ba6b91d7-3ea3-405f-9873-a787ec313421", - "width": 70, - "x": 770, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "338b0cae-f523-4c02-b892-782ad5151794", - "width": 70, - "x": 630, - "y": 1330, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4247e287-18bb-4c58-9938-87327ff036fb", - "width": 70, - "x": 210, - "y": 1540, - "zOrder": -5, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c528aa7c-9824-4c0a-a025-33ade78754c5", - "width": 70, - "x": 210, - "y": 1680, - "zOrder": -4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "06c0aac9-8bb3-4b18-9406-6596f9357c0e", - "width": 70, - "x": 490, - "y": 1960, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "113a5477-4106-4635-bdfa-8ca6bc3cae98", - "width": 70, - "x": 560, - "y": 1610, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5451d084-e8fe-444c-ac66-c6b6311d0bae", - "width": 70, - "x": 490, - "y": 1190, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ca31a19d-8017-4444-92f2-5f220f849e64", - "width": 70, - "x": 980, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "947a626f-4e40-42d9-a31f-cbed72e1c540", - "width": 70, - "x": 630, - "y": 1330, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "98b09890-4628-4019-862b-00f017d3d58e", - "width": 70, - "x": 1050, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "770fc433-f6d0-43fe-baf5-20ce9ba1fff6", - "width": 70, - "x": 1050, - "y": 1750, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "02571552-f0f5-4a39-803d-bf884f320fac", - "width": 70, - "x": 1050, - "y": 1750, - "zOrder": -3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "155ee6b1-b51a-4d20-a364-2d25c2d4e0d5", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "87b894e1-7920-4483-aa35-b5fb98db031d", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2e0bcd9c-6831-4dc6-be6a-8b947f67e0e8", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "43166889-e2b8-4397-baf2-f93058b10e52", - "width": 70, - "x": 1260, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "909ece64-796d-4ad2-89d6-5ff28027c23d", - "width": 70, - "x": 1120, - "y": 1610, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "furniture", - "persistentUuid": "90bf3067-ab2a-42a5-a7e3-ee60f03cdf15", - "width": 140, - "x": 1050, - "y": 1330, - "zOrder": 35, - "numberProperties": [ - { - "name": "animation", - "value": 21 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 140, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "cdca65f6-1f06-4280-8640-c2220619a697", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "89c7cb0b-3d2a-4cb2-84f8-45f4f80cf207", - "width": 70, - "x": 700, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 17 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8eb0661b-883a-43cc-9bfd-4b8a37336a32", - "width": 70, - "x": 210, - "y": 1610, - "zOrder": -1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "98f09269-d1c1-48f1-9e8e-6ec32922ec55", - "width": 70, - "x": 910, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3406ec6b-1e31-4b13-9541-dfbbc66499e0", - "width": 70, - "x": 1260, - "y": 1400, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "59bcbabc-b3a7-416d-9af8-f1feb8f8cef1", - "width": 70, - "x": 1260, - "y": 1260, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3f0ec870-8343-4704-88c8-e3aa15e847db", - "width": 70, - "x": 1260, - "y": 1540, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "78f44afa-31e1-4532-a89a-3af6cb76f3c6", - "width": 70, - "x": 1260, - "y": 1470, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ba6c90d0-e6b6-476e-982c-f5dffe569410", - "width": 70, - "x": 1260, - "y": 1610, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1458aaf4-a78a-410f-90b9-0fd8b4c1178d", - "width": 70, - "x": 1260, - "y": 1680, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "306a1c68-53cc-4e33-81af-2b76f72763cf", - "width": 70, - "x": 490, - "y": 1890, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "83791744-baef-4582-9d08-392e613f65a6", - "width": 70, - "x": 490, - "y": 1400, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "acbdf8fa-cd75-4ba2-94f9-d1bc1b39aa2f", - "width": 70, - "x": 490, - "y": 1330, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4c42ad67-bf90-442e-aef6-df7aace504b9", - "width": 70, - "x": 490, - "y": 1260, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "95fe8a30-e7c2-4a11-a83c-689390ad4d85", - "width": 70, - "x": 490, - "y": 1820, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "da9b9b38-cdad-4e43-9803-bfcd1184ffbe", - "width": 70, - "x": 490, - "y": 1470, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ef84af2-6642-4d98-9a42-5de9fca52b05", - "width": 70, - "x": 420, - "y": 1750, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "07216006-6920-4e59-aeeb-ff596e40d81b", - "width": 70, - "x": 420, - "y": 1470, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c7fe1c34-9271-4bb8-85bc-fbfe87816c3f", - "width": 70, - "x": 350, - "y": 1470, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "df1328ae-0e1a-4f43-b465-0e8c818f5a11", - "width": 70, - "x": 350, - "y": 1750, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d17db00d-2878-407a-83ec-20d00e0505d4", - "width": 70, - "x": 280, - "y": 1470, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "50c96e8e-2cbe-4cae-8ee9-321d8a11a5dc", - "width": 70, - "x": 280, - "y": 1750, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "dc25644c-b28d-47df-8c51-564abbf9172d", - "width": 70, - "x": 210, - "y": 1750, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "476bc91e-f03f-4966-80fd-ad1785b89dd0", - "width": 70, - "x": 350, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "75a5e47d-06f7-4908-821e-f674f790f233", - "width": 70, - "x": 490, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6f5fbf16-678c-4f0b-82b5-5e16e7e9d6a2", - "width": 70, - "x": 630, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f5b3cae2-c98d-45b1-8308-7762902ccebf", - "width": 70, - "x": 770, - "y": 1260, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f3e22f2f-bc76-41bc-b9f3-1900f502a074", - "width": 70, - "x": 700, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a4662d28-a752-4715-867d-6717f1d0f813", - "width": 70, - "x": 560, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fba7f1f8-6b44-4514-b07f-8003d3296684", - "width": 70, - "x": 630, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1468d0b2-9b60-4d47-99d7-76c3c1171da7", - "width": 70, - "x": 770, - "y": 1330, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "610b361f-4e98-4598-be87-413d00c08d94", - "width": 70, - "x": 700, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cbfe908f-7006-4ace-8c39-f677c3e528b9", - "width": 70, - "x": 560, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a8b2498b-7ae9-4828-85a0-647490d1214d", - "width": 70, - "x": 630, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "990caf59-37e7-4fd0-b430-c3ae7c687f51", - "width": 70, - "x": 770, - "y": 1400, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6843ef52-5cfe-4b3f-9182-827075a57925", - "width": 70, - "x": 700, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "06314ff4-a436-4a7d-b544-63f5ec58d0f7", - "width": 70, - "x": 560, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "033e81e0-101b-42dd-aca6-9c2d37dbfd81", - "width": 70, - "x": 630, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9b154577-11c4-4ccb-a6b6-c3617198ba25", - "width": 70, - "x": 770, - "y": 1470, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f5019a65-3ea0-4471-b85c-76ba99bcbabc", - "width": 70, - "x": 700, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7bce78c3-889f-4db6-95f4-03985d22672d", - "width": 70, - "x": 560, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d038b049-3a9b-40c3-beb5-6cf335e5b6b5", - "width": 70, - "x": 630, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "dfacd2d0-a10d-48eb-aa56-72c085aac0b7", - "width": 70, - "x": 770, - "y": 1540, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a535b35d-1638-4656-9f9e-ec6d7fbb8267", - "width": 70, - "x": 700, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "03c2e0ce-b991-4b76-871c-9cdef19b0ce3", - "width": 70, - "x": 560, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "576befd7-7811-491c-8e68-8ee39c059c4a", - "width": 70, - "x": 770, - "y": 1610, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ef1c900b-25b8-4604-bc07-bdecbfd78d40", - "width": 70, - "x": 630, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "998f0e87-f36f-4f64-8bb9-b1725fba65b2", - "width": 70, - "x": 770, - "y": 1680, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "41be0d2e-a9c4-4e64-abe7-2b14c085342a", - "width": 70, - "x": 700, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "892832d6-8272-49df-928a-96a3fda64ec3", - "width": 70, - "x": 560, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "742b1327-f7e2-4993-8462-945298ad164b", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0f965818-16a3-4978-a050-baf41c017003", - "width": 70, - "x": 1050, - "y": 1260, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "83284553-2576-434e-8faf-6e064954df12", - "width": 70, - "x": 980, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a08cb8c8-83c8-48ac-ab15-5e7f7f0f0be7", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5bea898e-952b-435f-ac3c-3618ddd405d7", - "width": 70, - "x": 910, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "12593b88-8561-4d00-8ba5-fe2fb67b0239", - "width": 70, - "x": 1050, - "y": 1330, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bb47b35c-d122-4663-96bf-3acb8614ae00", - "width": 70, - "x": 980, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "96aeae5f-ed04-4386-94ae-e687a40b81a4", - "width": 70, - "x": 840, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ff310d7f-d168-4783-837e-4d876b335279", - "width": 70, - "x": 910, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3d14edca-a890-4618-9243-83360f731081", - "width": 70, - "x": 1050, - "y": 1400, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2b8f3272-244e-4b25-b605-557745fd2676", - "width": 70, - "x": 980, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "45917c3b-b594-46f9-8900-7002ec93e312", - "width": 70, - "x": 840, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "92fe6c31-a94d-4cda-87c2-6b5b8e1e6db8", - "width": 70, - "x": 910, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "01c09720-116c-4e34-a708-ad8620d5d79b", - "width": 70, - "x": 1050, - "y": 1470, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a67dad7e-ccc4-4910-a8c0-ed489c8d7b1d", - "width": 70, - "x": 980, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cecbc784-5e57-4526-a293-8958e6d4764b", - "width": 70, - "x": 840, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ddb84789-bfac-42b3-909f-085849c55268", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "676374d6-422b-4641-80d6-b30774971292", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "26a565a9-4d09-4fcf-8423-463c89d3ef8f", - "width": 70, - "x": 980, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "265ed226-0a27-4dfd-b969-7f89248b8d1a", - "width": 70, - "x": 840, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "280d94bb-0450-44ed-8173-482b9e379870", - "width": 70, - "x": 910, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6fa78b3e-c040-4c17-98b2-1142795a3fba", - "width": 70, - "x": 1050, - "y": 1610, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e01a7943-7bd7-4559-8236-1cdf8cb06306", - "width": 70, - "x": 980, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6212e8ed-358b-483e-ae51-7ba3adc5d1a7", - "width": 70, - "x": 840, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8b0d684a-1754-4753-8e5c-dff2c073339e", - "width": 70, - "x": 910, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "be0b3cd4-c58e-432a-8da9-32505fbb421b", - "width": 70, - "x": 1050, - "y": 1680, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ebd01afa-88d1-4985-a5b9-0da252a535af", - "width": 70, - "x": 980, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "890b9656-cc42-4dab-b882-a6fe0b906dc6", - "width": 70, - "x": 840, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8f7fd593-dcea-4645-ad15-958197fa8aa1", - "width": 70, - "x": 1190, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "43902114-eabc-4105-8add-b52d2a22e277", - "width": 70, - "x": 1190, - "y": 1680, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2431630a-1d72-4ea2-a665-9ab8b8fea9bd", - "width": 70, - "x": 1120, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "175eb8ae-6035-418b-9518-b844276a14e1", - "width": 70, - "x": 1120, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "86e12a7b-90a9-4924-bc0c-40df2b6141ba", - "width": 70, - "x": 1190, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "79bc6ffe-ec99-4c43-a167-94e8e94237f8", - "width": 70, - "x": 1190, - "y": 1540, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4cdcd40b-b179-42e0-8c09-befdceb22438", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "09ac54f1-9fdb-48e3-ac70-b26867a51d1a", - "width": 70, - "x": 1120, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c4eba6bb-ebda-420d-a54e-6bcb67338db2", - "width": 70, - "x": 1190, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cc16e818-168b-4a54-9860-199d47a32fe9", - "width": 70, - "x": 1190, - "y": 1400, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "882b00ff-21b6-4ab5-9375-df1630fecd76", - "width": 70, - "x": 1120, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7d809503-c5ff-417a-ab66-0c4553841323", - "width": 70, - "x": 1120, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2553596a-b990-4cdd-a6f9-72f6a97cb531", - "width": 70, - "x": 1190, - "y": 1260, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b934a298-97c4-44de-b1a5-30a8b56801de", - "width": 70, - "x": 1120, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "256c8fa7-a86b-42a9-bfc5-73f7a6a40d82", - "width": 70, - "x": 840, - "y": 1260, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "8ca202a4-9aff-4f35-816b-342b6ffe27e7", - "width": 70, - "x": 840, - "y": 1330, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3e3d810f-e509-4d1b-a023-1fd45c40fab4", - "width": 70, - "x": 910, - "y": 1470, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "35a0a7c2-7e43-4f0c-bcee-888f8c47bfcf", - "width": 70, - "x": 910, - "y": 1260, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "60f0ca35-c6cc-48e4-b222-1baaf371fe87", - "width": 70, - "x": 1260, - "y": 1330, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ee8479a-d89a-473f-8deb-174f1e77bc76", - "width": 70, - "x": 1050, - "y": 1610, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a2a3cf02-cd27-408f-a0da-085dbc0298a5", - "width": 70, - "x": 910, - "y": 1400, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "bc3b26fc-6eb2-499b-8507-380a17fd5c7c", - "width": 70, - "x": 910, - "y": 1330, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "bd3a63be-5692-4e62-a268-3df297ab180a", - "width": 70, - "x": 910, - "y": 1540, - "zOrder": 14, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "511159a4-01c6-48a2-8054-cce05d6b268a", - "width": 70, - "x": 1013, - "y": 1400, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "092949bb-515f-4514-9c58-cb37f6c04a0f", - "width": 70, - "x": 1013, - "y": 1330, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ee05231f-ed8c-4aeb-8202-35142ced365a", - "width": 70, - "x": 1158, - "y": 1400, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2228e167-4147-41b4-9d85-9816d3065808", - "width": 70, - "x": 1158, - "y": 1330, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "20d9b6d7-0fd8-4a34-8533-fb6baecd5eb8", - "width": 70, - "x": 1087, - "y": 1272, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ac527305-ff36-451e-aedd-77facff950ff", - "width": 70, - "x": 1050, - "y": 1540, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4afbc036-cffa-4f4f-b13e-2c2432842e44", - "width": 70, - "x": 1050, - "y": 1680, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5aba5e42-e626-4597-bf65-4b97e41d4bab", - "width": 70, - "x": 1120, - "y": 1820, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c3c8f25a-e964-424f-a1ff-f673d8475b48", - "width": 70, - "x": 1190, - "y": 1820, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "689dd0b0-3511-4a28-b1c1-f238c612cb02", - "width": 70, - "x": 1120, - "y": 1540, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "29fce29b-ccb6-4f39-bc09-8ac11289568a", - "width": 70, - "x": 490, - "y": 1750, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f3eaba6f-9ea6-4e8a-8299-434e8fff2b26", - "width": 70, - "x": 490, - "y": 1610, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "923cb203-2769-4853-9fd1-f0e063f97a5d", - "width": 70, - "x": 490, - "y": 1680, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b966fe8a-7dbc-46d6-9647-e66b5b1422e0", - "width": 70, - "x": 630, - "y": 1610, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a4eb2622-6ab2-468f-8a9b-bd4e9fe24fa6", - "width": 70, - "x": 700, - "y": 1610, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "63a1d7bc-3e9e-41fc-abe2-34bec14dfdf3", - "width": 70, - "x": 840, - "y": 1680, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7a2a4acf-7664-471e-8c12-c52fd62da29f", - "width": 70, - "x": 770, - "y": 1610, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ff71cf28-118e-49ef-9e90-d3264fb8bd77", - "width": 70, - "x": 770, - "y": 1680, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "3c42dcb2-2408-424f-8de3-f9336f794b00", - "width": 70, - "x": 770, - "y": 1960, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 28 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "03c17528-e0fa-4fd4-a6b2-5d0ab8b55ce0", - "width": 70, - "x": 840, - "y": 1960, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 29 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "573c4b31-2899-436b-9a6a-6c04de5d7a15", - "width": 70, - "x": 840, - "y": 1890, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 27 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c35274cf-116e-400c-8f6f-87db5c81a2a8", - "width": 70, - "x": 770, - "y": 1890, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 26 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "9536e6fe-de19-4cd4-9b72-cac63289b27c", - "width": 70, - "x": 840, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 25 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "0d0ebd7a-e709-4685-b5f9-d2024217c279", - "width": 70, - "x": 770, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 24 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9e382e61-d9f9-4be5-a15f-6e9fe16e1062", - "width": 70, - "x": 980, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bb0d9ac8-a863-4f26-add2-856f7af6af46", - "width": 70, - "x": 910, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "87043795-91e2-45ce-9652-3d79c5890b4a", - "width": 70, - "x": 840, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "65e08d16-d6cc-48c6-b10f-f0e9364dc3e7", - "width": 70, - "x": 770, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9077267f-2466-4d4e-af35-6bad40ac09ac", - "width": 70, - "x": 700, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "753b4342-f440-4558-8871-f6eb02787924", - "width": 70, - "x": 560, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c4193899-19e1-436b-9ec0-b4b3bd5b26f5", - "width": 70, - "x": 630, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ed862978-22ce-445b-a4e4-fda12e18ae38", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "544c36e0-bedc-4bec-813b-f52d0b496832", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c65d4bf8-56fb-40e5-94ee-0eecf3b82361", - "width": 70, - "x": 1050, - "y": 1820, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6d155956-bda6-440f-90ed-258bf3df8538", - "width": 70, - "x": 1050, - "y": 2030, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e2273005-ecd5-4676-8573-8c0c134246d7", - "width": 70, - "x": 1050, - "y": 1960, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "23ddd54a-81e1-4dbe-8b4f-6d1cb9835e24", - "width": 70, - "x": 980, - "y": 1820, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e5a1022b-d445-4b89-bb55-2d84ac76fd60", - "width": 70, - "x": 910, - "y": 1680, - "zOrder": 14, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "83f42b84-9fd7-4fd7-956c-19239f4aadef", - "width": 70, - "x": 980, - "y": 1890, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7af4c84d-14e4-48e8-821b-5d1a64013be1", - "width": 70, - "x": 980, - "y": 1960, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e773b1b2-14ae-428d-a48b-57289c410658", - "width": 70, - "x": 1260, - "y": 1820, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "07ac21e6-d2c2-4e61-b95d-941cb0ec5f37", - "width": 70, - "x": 980, - "y": 1260, - "zOrder": 45, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 900, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "3b6e39d6-e3d7-4386-ac5e-c3494bd1bd14", - "width": 70, - "x": 560, - "y": 1680, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "fac2a4dc-d889-408f-a0f1-a5ee3a54bc37", - "width": 70, - "x": 700, - "y": 1680, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 40, - "layer": "", - "name": "furniture", - "persistentUuid": "0bb6c84e-cfa5-4976-8c3a-22be328cd7e4", - "width": 40, - "x": 643, - "y": 1684, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 201, - "layer": "", - "name": "room3out", - "persistentUuid": "3cecd3fc-e99f-40e9-b21d-2285af6894b6", - "width": 28, - "x": 210, - "y": 1540, - "zOrder": 206, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "reloading", - "persistentUuid": "cab0a4f6-4270-4ab6-b3b5-8cff14d7e79e", - "width": 0, - "x": 0, - "y": 0, - "zOrder": 207, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "aab366f3-2021-421d-9146-161d88ca5f31", - "width": 70, - "x": 2170, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e31add8e-b174-4055-a6c0-39bc4c8775f6", - "width": 70, - "x": 2100, - "y": 1890, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f9f11a8e-865b-44e6-a7b3-2b2548818508", - "width": 70, - "x": 2240, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b8e0fb92-475c-426a-84df-27f5f627b1d1", - "width": 70, - "x": 2380, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1e4565e7-e5d7-4fa7-a785-bd96b154da72", - "width": 70, - "x": 2450, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "123a30f7-d59c-49b9-9ff9-c2de7043ef4e", - "width": 70, - "x": 2520, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "25177625-51a1-4577-8066-44ea6db93323", - "width": 70, - "x": 2660, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "64df1ff5-7d8f-4da0-8770-24673752c79f", - "width": 70, - "x": 2730, - "y": 1540, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8a7ee021-aa91-4c59-ba0d-edf0f386e9ee", - "width": 70, - "x": 2590, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3071309b-6c3c-412e-a012-05ac1e481051", - "width": 70, - "x": 2730, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8cf3079e-369b-49c1-b7c1-83d15c0451a6", - "width": 70, - "x": 2800, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "de978352-a930-4b85-958c-5e77f36543a7", - "width": 70, - "x": 2870, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "15de1f03-da1e-4bc3-97a2-efa668863f59", - "width": 70, - "x": 2870, - "y": 1610, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3a400615-d141-4c99-8ae2-a31e58b757fc", - "width": 70, - "x": 2870, - "y": 1680, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5b424efd-950e-4270-b3b4-98c3aafa1197", - "width": 70, - "x": 2870, - "y": 1750, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "22aac0ea-0bf5-4586-a145-1008815b4d3f", - "width": 70, - "x": 2870, - "y": 1820, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "b733ec6a-f1f1-401e-ba8d-c427e4cb71b9", - "width": 70, - "x": 2170, - "y": 1820, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "500f9ee1-a75f-4815-8dd4-5fa3e4e215bf", - "width": 70, - "x": 2170, - "y": 1610, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "75979eeb-21f1-4b1e-b036-bc6d0464104f", - "width": 70, - "x": 2730, - "y": 1610, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9b34ecca-019d-4b3f-8f5c-a8e818ef0561", - "width": 70, - "x": 2800, - "y": 1610, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e10a6c82-af12-4b69-aad4-d7ea9d582445", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "37b51f72-769e-4e41-b5c9-4db839ce3851", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fbe37399-e9e4-4fc5-910e-ecbdfd688aed", - "width": 70, - "x": 2800, - "y": 1750, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6116c9ec-02a0-4e29-a62e-c151036778fa", - "width": 70, - "x": 2730, - "y": 1750, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "488ff908-a030-40c4-8b04-db024851d5a6", - "width": 70, - "x": 2310, - "y": 1610, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a1a2c4e0-1f4a-4809-93bd-dee0498c26c3", - "width": 70, - "x": 2310, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0ddc6483-d821-4ee3-aaec-4a4f4f5d35a4", - "width": 70, - "x": 2380, - "y": 1540, - "zOrder": -8, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8c55fd3b-240d-4188-8893-c3b4a33aeca0", - "width": 70, - "x": 2240, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b1780727-c2df-4e6b-8d6a-ca08926e4eea", - "width": 70, - "x": 2380, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6f134d63-e573-4992-b115-79583a7b4f5e", - "width": 70, - "x": 2520, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6178c478-8b8e-4e4a-981e-6e4e4e910594", - "width": 70, - "x": 2450, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "da1b0626-04c0-4142-abff-dc0884b7aa8a", - "width": 70, - "x": 2380, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5faad21f-35c7-40f8-8d87-b9e8a51c97ed", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7194f672-1c16-4fa3-9fd2-f3a3b645430b", - "width": 70, - "x": 2310, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "45f53a4b-7dd6-4439-9cf4-64f462568fdf", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b12b0cc2-c422-43a0-bdf7-cecb2799ec78", - "width": 70, - "x": 2240, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "880f5ca4-dfd0-4643-9a89-ba298cb0a292", - "width": 70, - "x": 2310, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5ec9ddab-5823-4c00-90e7-b2d184cbf390", - "width": 70, - "x": 2450, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "67349ed8-d331-4353-9bca-197234a349d2", - "width": 70, - "x": 2170, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f8276024-5bb8-4d65-a35d-50c72057f2d6", - "width": 70, - "x": 2380, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6adbe10-4db2-4fe4-9a40-232ccff618ab", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "79cc0acb-57d9-40a8-b99b-908128bdef31", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": -6, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8068b47d-5450-49b8-8fa7-7933736e8c51", - "width": 70, - "x": 2590, - "y": 1610, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "febbeffa-f6ac-4c77-9be6-3c48e3a43d8b", - "width": 70, - "x": 2380, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "65357814-16a8-4e6c-8062-eb7a5b18cffc", - "width": 70, - "x": 2310, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "05ebe4f6-d2cc-469b-b791-6069e974edc9", - "width": 70, - "x": 2240, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6c7cf0b-a213-473e-b845-b596a53b4fa9", - "width": 70, - "x": 2380, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9178b850-1d4e-443b-9c57-dafeb025351b", - "width": 70, - "x": 2450, - "y": 1540, - "zOrder": -7, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4ce86282-58a5-42c6-9f25-9c798829456e", - "width": 70, - "x": 2520, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f5da01a2-595a-419e-ae35-4d7b664466c3", - "width": 70, - "x": 2380, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2bf7434c-998a-4d94-8cf7-e9ffcc2b0b7d", - "width": 70, - "x": 2520, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bf9a5820-a000-4510-b501-5da7bfeece53", - "width": 70, - "x": 2660, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9998d4d5-e754-4885-92de-a012f0dec73e", - "width": 70, - "x": 2660, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5220ea91-c56f-4975-a5f1-de219e83e120", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4a8740c9-9298-4ccf-9b19-68ccfe6b141c", - "width": 70, - "x": 2310, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "34f387ea-150b-437c-b6ab-425666e9d54d", - "width": 70, - "x": 2450, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "514e4081-8659-4c6b-a6cd-e914cff80075", - "width": 70, - "x": 2170, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6096de79-70f0-43f8-b68e-2d9a8fa1b080", - "width": 70, - "x": 2450, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4f735036-5868-40bd-8e28-6e48929081ee", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "135100df-146b-4973-8b4d-a57eabcbe6e1", - "width": 70, - "x": 2240, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "eeef671d-f749-48bf-b5f8-cb8a3b9e8d77", - "width": 70, - "x": 2170, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3310d4e7-f41a-4da4-8994-cee4396a9e22", - "width": 70, - "x": 2450, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e0d647cc-8acd-42cd-a416-941adbc4c643", - "width": 70, - "x": 2380, - "y": 1610, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3ef49be1-a68a-47a9-8acf-d7f8c8200d18", - "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "661128d6-a35e-4f03-a684-8a625f4a6085", - "width": 70, - "x": 2800, - "y": 1820, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7c826a54-a874-461f-b9c5-0d3b5a0ad795", - "width": 70, - "x": 2730, - "y": 1820, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1c476c9b-0441-47b2-98b3-1b520737a8d3", - "width": 70, - "x": 2380, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c1a04ee8-ccf2-48a3-b7f2-882d4abfa4d8", - "width": 70, - "x": 2380, - "y": 1750, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "e2b8e4cb-0d33-4b24-9fad-34e5ea368107", - "width": 70, - "x": 2450, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "32521cfb-57d0-4f1b-9a85-315e0dbb8e70", - "width": 70, - "x": 2520, - "y": 1750, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ce0fd288-ea0f-4c41-9215-8eee7a9959c9", - "width": 70, - "x": 2450, - "y": 1750, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "02f026bd-e4af-446c-85f9-d914c2643a10", - "width": 70, - "x": 2520, - "y": 1820, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9fb6e042-35d3-4981-8877-fe89fffb6a4b", - "width": 70, - "x": 2100, - "y": 1400, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ddc727ba-8eda-4c5c-b9b0-f81a2d6eb40a", - "width": 70, - "x": 2450, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1a56b1d6-58a7-4567-b47c-1ef9aec9cf55", - "width": 70, - "x": 2730, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3a0543d5-62a0-4446-90e8-c561349d9a64", - "width": 70, - "x": 2730, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a75cb75d-d836-459b-a768-2b79d7c7ea5a", - "width": 70, - "x": 2520, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "52aa08be-8d8f-4a7d-b1cc-09b945ed6656", - "width": 70, - "x": 2520, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7de8f219-e0fd-47e3-9aa8-3d02c82401ac", - "width": 70, - "x": 2590, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "252c857b-ff66-4f6b-b80b-ec948b4de5e1", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8b254513-a1a6-48a3-8996-de3985ee37e8", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "76bcfb67-523f-4a72-b789-b64f1d93dded", - "width": 70, - "x": 2520, - "y": 1400, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "98d39457-cbea-4749-980c-529b3fa09c41", - "width": 70, - "x": 2520, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "68d23dc5-5799-4de5-aacc-833aa812d523", - "width": 70, - "x": 2590, - "y": 1260, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4adc8d73-606a-4ca6-89c2-659076497ef5", - "width": 70, - "x": 2380, - "y": 1190, - "zOrder": -2, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "04222032-a59e-481f-ab63-3bd19ae6cfb4", - "width": 70, - "x": 2100, - "y": 1610, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "087e75b2-37c9-43dd-af43-09d7ba317fbc", - "width": 70, - "x": 2170, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d69daa8c-bdf6-4c9b-b851-5702d40c692a", - "width": 70, - "x": 2870, - "y": 1540, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f0f1502e-606f-4d1c-b094-00b3177c9518", - "width": 70, - "x": 2100, - "y": 1330, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "31c22e80-4c9a-4ed7-ab83-43947bd95ab0", - "width": 70, - "x": 2100, - "y": 1190, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "54891d5f-0aa1-4cdf-b198-6d9d549f8353", - "width": 70, - "x": 2100, - "y": 1260, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3d6a2116-1c99-491f-8692-966a1d473fba", - "width": 70, - "x": 2870, - "y": 1260, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "65be7c0d-7868-4426-8fe0-cf4e28b51953", - "width": 70, - "x": 2870, - "y": 1330, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e786e343-dcd0-4ef9-8c81-04b1e1d41a0d", - "width": 70, - "x": 2450, - "y": 1680, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ab6dbba1-86a6-4df8-99c0-778d624ea45f", - "width": 70, - "x": 2800, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "631089ed-796f-4102-8651-b819b6d78ffc", - "width": 70, - "x": 2800, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "71218ac2-88c1-4548-96c2-b2cc3eb56d7f", - "width": 70, - "x": 2590, - "y": 1400, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f45d31da-920f-4be6-8fe2-8aaf00ede10a", - "width": 70, - "x": 2520, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ec483380-2a19-4eac-af9e-3ff7cd68faa5", - "width": 70, - "x": 2870, - "y": 1470, - "zOrder": -11, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "908066ed-26d3-4a04-8467-0f5b57bc69bd", - "width": 70, - "x": 2870, - "y": 1400, - "zOrder": -11, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4adbec2c-3197-4a2d-9909-785a7194e7c9", - "width": 70, - "x": 2590, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5701d6e1-30f3-4309-bd53-9403b2f384e1", - "width": 70, - "x": 2800, - "y": 1540, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ab680878-f658-4069-b3aa-28cbcc1c13e9", - "width": 70, - "x": 2660, - "y": 1610, - "zOrder": -3, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4293c365-0d52-45d2-8989-6de41b467801", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "453409c7-2717-4bb2-8664-b418cfc7ce2d", - "width": 70, - "x": 2590, - "y": 1820, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c06b1221-6908-4ef4-ae65-bf47ab97b948", - "width": 70, - "x": 2590, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "17a8d879-0a2b-4734-8ed5-3eed70425706", - "width": 70, - "x": 2870, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "e6c494da-dd77-446d-8807-3e43120da3fd", - "width": 70, - "x": 2660, - "y": 1260, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "b3d177ea-6c69-48e7-85f0-0109af8c3cea", - "width": 70, - "x": 2730, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "bd7c2e0c-3e90-4b42-ad0c-82a3bfea4cc4", - "width": 70, - "x": 2100, - "y": 1750, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b37261bd-a3a7-4352-937b-49298a4d5071", - "width": 70, - "x": 2100, - "y": 1820, - "zOrder": -14, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "83ce78e8-a688-4805-a482-15ee7fbb4f71", - "width": 70, - "x": 2730, - "y": 1260, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d6323781-da0c-44cf-a98c-52419f755339", - "width": 70, - "x": 2240, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cc8b8ae5-f5b2-4e05-8c44-075fe9422e32", - "width": 70, - "x": 2380, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ec958ce7-3b44-476b-b750-05566f7c7cef", - "width": 70, - "x": 2310, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "77112d00-198a-47c8-b1de-3a4f69bb5a35", - "width": 70, - "x": 2240, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5ea5b1f6-2e99-4200-ac30-36a0bc0e43ff", - "width": 70, - "x": 2240, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4483482a-9722-4d3a-a57a-8da1fd0425db", - "width": 70, - "x": 2660, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f5473e11-ac59-4307-8b92-78f69976aab6", - "width": 70, - "x": 2800, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "db44f645-0be7-4b06-9381-5476d393b873", - "width": 70, - "x": 2730, - "y": 1190, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "36edade0-8a2b-4a47-8e60-c7f684b67f34", - "width": 70, - "x": 2660, - "y": 1540, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5ba353c5-e03f-4d22-aefd-b9cec1923e2a", - "width": 70, - "x": 2450, - "y": 1330, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5d1f3a5d-514a-4768-bbb3-53ff065650cd", - "width": 70, - "x": 2450, - "y": 1470, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "725802b6-b070-4763-9385-c758c0e41393", - "width": 70, - "x": 2450, - "y": 1400, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "27ef0045-098c-4c77-8d93-d46a9026f0e3", - "width": 70, - "x": 2450, - "y": 1540, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3bc81036-fe65-4a54-a572-d651995b7266", - "width": 70, - "x": 2520, - "y": 1540, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ac5d0dda-3a47-4678-9c72-3d47320f7798", - "width": 70, - "x": 2170, - "y": 1400, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c2cb5a45-89e7-447b-a434-91ca2be261ea", - "width": 70, - "x": 2240, - "y": 1400, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5ef65448-0b78-40e0-926c-48b91d0adf6b", - "width": 70, - "x": 2310, - "y": 1540, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3a761a56-8db2-4224-81b7-2b484debe43a", - "width": 70, - "x": 2100, - "y": 1750, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "33d20b76-7876-4fbd-bace-85d01b9cbe03", - "width": 70, - "x": 2100, - "y": 1680, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "147dfa88-b023-40b7-9312-61e28eba2c0b", - "width": 70, - "x": 2100, - "y": 1820, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "80f96dea-3836-430d-a762-56bfd9f21cf3", - "width": 70, - "x": 2310, - "y": 1680, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a83cbc78-1eaa-4c13-944c-9671909068fc", - "width": 70, - "x": 2380, - "y": 1680, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b09a9314-af62-4000-86dc-5c4144050320", - "width": 70, - "x": 2660, - "y": 1680, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4cd5d518-8dda-4ee0-8c27-675ba0e311a0", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1e55a316-d05d-47b0-8c86-953efe657bfc", - "width": 70, - "x": 2310, - "y": 1890, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a1535719-a796-49ee-85ac-14948886b0b5", - "width": 70, - "x": 2310, - "y": 1820, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "90e20eed-633b-47e2-901a-8185ae4c258f", - "width": 70, - "x": 2310, - "y": 1750, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "49e13bb4-f5c5-4a4c-aa38-6815bb1d6d9f", - "width": 70, - "x": 2660, - "y": 1820, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "027f83fe-c079-4423-bc98-1865f955c290", - "width": 70, - "x": 2660, - "y": 1750, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9fd20680-b295-4b2c-87b4-155488281baa", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "42d0ed40-d757-4c4b-bb82-78ba1cf375bd", - "width": 70, - "x": 2660, - "y": 1750, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c7dd68d2-729e-494d-b192-64aebd5ca434", - "width": 70, - "x": 2660, - "y": 1820, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a03bbf33-ba36-48c3-91c2-f0eaf8ac8328", - "width": 70, - "x": 2800, - "y": 1680, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b10c8021-e65e-400d-ab98-af984e87a331", - "width": 70, - "x": 2730, - "y": 1680, - "zOrder": -4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1b210d0c-1d1f-48a5-8e29-cf88c4108797", - "width": 70, - "x": 2520, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "62f34d36-e042-4ce5-9ae2-d45fd98983ea", - "width": 70, - "x": 2590, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "021a468e-a5ef-4598-9204-7561edb7e54d", - "width": 70, - "x": 2660, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ef5e3ecf-e3bb-48ca-9af5-0ea5c3d50b7f", - "width": 70, - "x": 2730, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7b255536-54a5-4f9e-9db5-2d8c6b6a2fa7", - "width": 70, - "x": 2800, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f6a6c889-d65e-4497-ad9d-727e2d26ff6d", - "width": 70, - "x": 2520, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f1c26c01-62bc-41f2-a34a-84a91618186f", - "width": 70, - "x": 2590, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "10465d9c-8ad5-495a-aaa8-ee818cb19ccf", - "width": 70, - "x": 2660, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cebeb4cb-a254-41cb-a594-e83d0dc0a87d", - "width": 70, - "x": 2730, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a51381ad-4769-4add-9398-bb9173c5ecf8", - "width": 70, - "x": 2800, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "39ad487d-4c99-4f50-bd72-20f172e34f2a", - "width": 70, - "x": 2520, - "y": 1540, - "zOrder": -5, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b0a8e415-7091-4259-8720-293c3d4712aa", - "width": 70, - "x": 2590, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7b4d75b7-b240-46bc-906b-6cd13b7ba892", - "width": 70, - "x": 2660, - "y": 1540, - "zOrder": -5, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5e4d3cd1-c5ee-405e-8f01-2cb561bc3efa", - "width": 70, - "x": 2450, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "49a631fc-8374-461d-a0cc-4f049b86eabf", - "width": 70, - "x": 2450, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f71d8741-b9bd-44dc-887d-b6061426759f", - "width": 70, - "x": 2380, - "y": 1190, - "zOrder": -5, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "027e15dc-158e-413c-8a31-936960e903f2", - "width": 70, - "x": 2240, - "y": 1190, - "zOrder": -21, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6acbe5ea-105e-48f9-9f7e-72e3d05e92ff", - "width": 70, - "x": 2170, - "y": 1260, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "56d8ff22-d61e-4612-a410-bf6ad45b3e4e", - "width": 70, - "x": 2310, - "y": 1190, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "215d2465-c2f8-4284-af20-387a00203e84", - "width": 70, - "x": 2170, - "y": 1330, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "85d3c160-385a-4295-b5a6-ba74687431b0", - "width": 70, - "x": 2800, - "y": 1470, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "88a88b2e-ddbb-4b12-924c-2fe5ad44208a", - "width": 70, - "x": 2660, - "y": 1260, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "7bcd5e9a-4935-4702-9c80-840becceb134", - "width": 70, - "x": 2170, - "y": 1680, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "73ab4163-952a-41c8-823a-4e9926d5a66b", - "width": 70, - "x": 2170, - "y": 1750, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "b4921e4a-0980-4a65-be4d-20737a3c5c77", - "width": 70, - "x": 2170, - "y": 1820, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3f5e4b6b-2582-4ce5-a3f6-9524bc7b0a8f", - "width": 70, - "x": 2310, - "y": 1400, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "df2e16b2-e385-4c4d-9d4a-7fdbc0a8ab76", - "width": 70, - "x": 2310, - "y": 1470, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "beccf55b-fea9-4600-8e77-64056ad6ad6f", - "width": 70, - "x": 2170, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7dd510bb-f21e-48a6-8b43-cf9d0292134e", - "width": 70, - "x": 2170, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1d8ae853-1e83-4fdb-99a7-c3ddc6827fb6", - "width": 70, - "x": 2240, - "y": 1540, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f148a06a-84a5-4fe5-95da-4858a760ffe5", - "width": 70, - "x": 2240, - "y": 1470, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "26d13332-8450-466c-9cfa-840467117d58", - "width": 70, - "x": 2100, - "y": 1540, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "13f38da4-7900-4b31-ae9d-893ec8444d22", - "width": 70, - "x": 2100, - "y": 1470, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "81acfe14-2d41-4ed9-8227-f1aae1ba0425", - "width": 70, - "x": 2170, - "y": 1470, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "3a22ba79-4e79-4d36-8b66-b898bf8bbe8a", - "width": 70, - "x": 2170, - "y": 1540, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9041f7a1-6a3e-4012-b80a-9d65af440dce", - "width": 70, - "x": 2310, - "y": 1540, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c146b280-9710-4cdf-84e4-1d4bd749ae90", - "width": 70, - "x": 2520, - "y": 1680, - "zOrder": 10, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fcc77936-0d5e-4036-aced-1f85b2a70cc3", - "width": 70, - "x": 2590, - "y": 1680, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "59b647e6-ce0f-42eb-bab0-f5eebffdafbf", - "width": 70, - "x": 2240, - "y": 1190, - "zOrder": -4, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3f1af93b-314e-4569-af35-e1f824e59fde", - "width": 70, - "x": 2310, - "y": 1190, - "zOrder": 8, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 34, - "layer": "", - "name": "room4out", - "persistentUuid": "dee53286-0307-4852-bc7a-48251fd72532", - "width": 210, - "x": 2240, - "y": 1190, - "zOrder": 208, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "GUI", - "name": "Wheel_info", - "persistentUuid": "cdfbe50d-4821-4557-a25c-492c521302f0", - "width": 0, - "x": 0, - "y": 560, - "zOrder": 209, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "08a9ab5e-d7a2-4a79-85a4-185e3a835614", - "width": 70, - "x": 3570, - "y": 210, - "zOrder": 210, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "59e50fde-8ede-4788-a65e-e7abfaf3c778", - "width": 70, - "x": 3570, - "y": 70, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "0f9ec355-aa68-42ac-9bb4-3fd1329712c6", - "width": 70, - "x": 3570, - "y": 0, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2f15dfb1-5a15-4dd4-ad88-57605bec436c", - "width": 70, - "x": 3570, - "y": 350, - "zOrder": 210, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "daec605e-81ba-4121-95f3-72f9d225fc82", - "width": 70, - "x": 3570, - "y": 490, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "57c4a8df-970e-486f-88d6-e120bc276121", - "width": 70, - "x": 3570, - "y": 420, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "267bffbd-5cbc-4f66-9e2c-c6c3d102b8ae", - "width": 70, - "x": 3570, - "y": -70, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9549ba2b-e590-465f-a6b5-15eff4e97ffe", - "width": 70, - "x": 3570, - "y": 560, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b5d65e2f-360f-4123-9245-858324af25a4", - "width": 70, - "x": 3640, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "30c875e4-3a8f-4eab-893e-62b14a844d89", - "width": 70, - "x": 3710, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9f956c1d-8752-46e6-b02d-1ce085d21ed0", - "width": 70, - "x": 3780, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "dd5c2640-e25a-491b-bfc9-012e971b0d64", - "width": 70, - "x": 3850, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "dda7f9d6-30a2-4329-b1cf-d10b7f084184", - "width": 70, - "x": 3920, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e80150db-bb6c-4c16-b487-ccd62b288ece", - "width": 70, - "x": 3920, - "y": 280, - "zOrder": 210, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ac0f1478-49bc-4c49-8c36-881a5e09d78c", - "width": 70, - "x": 3920, - "y": 420, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7d40d032-2833-452e-bed5-0f0b72df6466", - "width": 70, - "x": 3920, - "y": 490, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f58d551f-7b28-49a7-8e5a-f7bc881a200a", - "width": 70, - "x": 3990, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "43681b49-8075-4495-8f0b-fd1c4b78942e", - "width": 70, - "x": 4060, - "y": 560, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ae02ead-ee6b-47b6-9081-a0956340a1b6", - "width": 70, - "x": 4130, - "y": 490, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "48a38bfa-26f1-4a09-980c-09c9649e1f4c", - "width": 70, - "x": 4130, - "y": 420, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d467a934-28f9-43b1-a7dc-3ee065be3d3a", - "width": 70, - "x": 4130, - "y": 560, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "771081a4-f10a-40d5-935e-a4b805c8e008", - "width": 70, - "x": 3990, - "y": 490, - "zOrder": 214, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "8d5b4aed-ad0f-4f3b-b8c1-e52469c1b333", - "width": 70, - "x": 4060, - "y": 490, - "zOrder": 215, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c6ee6ed7-b2cf-486e-8370-dafab32f97b9", - "width": 70, - "x": 3990, - "y": 350, - "zOrder": 216, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ba1dcd43-3959-4fab-a910-ec0eb6da9911", - "width": 70, - "x": 4060, - "y": 350, - "zOrder": 217, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b57f9bc4-cacf-434a-be7a-00506b653bed", - "width": 70, - "x": 3710, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "264db9e8-c6a0-4dfb-8705-994dd9e1286e", - "width": 70, - "x": 3780, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "61326586-57e6-48f2-8f50-9501a7d0dcb6", - "width": 70, - "x": 3850, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f6b36b5b-9143-4635-b7aa-eacefc56fccf", - "width": 70, - "x": 3920, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cfe1ae31-19fe-4a2b-b0ea-cb1045b57a71", - "width": 70, - "x": 4060, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b90a5c3e-912f-4620-9362-f4a3aff7c5d6", - "width": 70, - "x": 4130, - "y": -70, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "49f7b522-4779-47cf-8c45-9cc9b99d3891", - "width": 70, - "x": 3640, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "44eb149d-a600-48b9-a296-6dcc1e8952e0", - "width": 70, - "x": 3990, - "y": -70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c539143c-801c-43fe-a26a-d044ab476659", - "width": 70, - "x": 4130, - "y": 0, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "374dc7e9-932c-4fc3-ae42-2044ac08dc75", - "width": 70, - "x": 4130, - "y": 70, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d46a0582-93bf-4209-aa02-35a9d19a4889", - "width": 70, - "x": 4340, - "y": 140, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ce360532-8916-4e8a-9699-5e43e9b3b250", - "width": 70, - "x": 4340, - "y": 210, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2fd06499-4933-4110-a32c-2854e67be1c3", - "width": 70, - "x": 4130, - "y": 350, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3f30191f-8d51-499f-bcb5-e16456a42f4b", - "width": 70, - "x": 4060, - "y": 70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a2db4db0-be17-4f0e-83e2-dcd7ba9929bd", - "width": 70, - "x": 3990, - "y": 70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1c19449c-ac0a-4538-8ea6-0e99dc27672e", - "width": 70, - "x": 3920, - "y": 70, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "149196bb-1a77-48bc-8f71-224caa39b39f", - "width": 70, - "x": 3920, - "y": 140, - "zOrder": 218, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "30a809a6-c29b-4262-adb7-1b0696369965", - "width": 70, - "x": 3640, - "y": 490, - "zOrder": 219, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7d0ba3c6-0ea5-4c75-aeda-59dedc638acc", - "width": 70, - "x": 3710, - "y": 490, - "zOrder": 220, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c9c11872-2926-489e-aa19-a8d935754a73", - "width": 70, - "x": 3780, - "y": 490, - "zOrder": 220, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "606bc2f5-50a2-40d0-8913-4a2e76546965", - "width": 70, - "x": 3850, - "y": 490, - "zOrder": 220, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "0adf3a5e-c981-4d7d-84f3-a8f1c75f321f", - "width": 70, - "x": 3640, - "y": 490, - "zOrder": 221, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "95b6f546-068a-44fe-a818-a8e1c08c3fb1", - "width": 70, - "x": 3710, - "y": 490, - "zOrder": 221, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "4e65ea07-148a-4b4d-bfec-1ca1af090020", - "width": 70, - "x": 3780, - "y": 490, - "zOrder": 221, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "8fa4e1e6-248e-488f-9639-b22bcfb64a9d", - "width": 70, - "x": 3850, - "y": 490, - "zOrder": 221, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "253cd4f1-68e5-4dc4-9e8a-98f93798000c", - "width": 70, - "x": 3640, - "y": 490, - "zOrder": 222, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "075d7ff8-b689-4779-8d51-813f4c906d16", - "width": 70, - "x": 3640, - "y": 420, - "zOrder": 219, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "51dc3274-89af-42a3-8476-3e8aeff52788", - "width": 70, - "x": 3710, - "y": 420, - "zOrder": 219, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cfb71a60-e1f3-4a8d-9b1f-33cc85e5d473", - "width": 70, - "x": 3780, - "y": 420, - "zOrder": 219, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "2e72441e-6c73-4f12-a558-4a7bd90303d1", - "width": 70, - "x": 3850, - "y": 420, - "zOrder": 219, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "742331e9-6481-44b5-8491-c151dc9de13e", - "width": 70, - "x": 3780, - "y": 181, - "zOrder": 223, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a91d88cc-a5fc-496a-b32d-97e2c7ecb997", - "width": 70, - "x": 3710, - "y": 181, - "zOrder": 224, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ebc65289-da53-4caa-beba-28bb5d665b07", - "width": 70, - "x": 3640, - "y": 181, - "zOrder": 225, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2d1436e0-be3f-40b0-86b2-790e61f377b4", - "width": 70, - "x": 4340, - "y": 280, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ce9443a0-8739-46ed-8dc8-978b50b5077d", - "width": 70, - "x": 3570, - "y": 140, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -47.6075, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "82bedb4a-be42-4e0b-b704-d8ef029a87ba", - "width": 70, - "x": 3850, - "y": 70, - "zOrder": 226, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "9d046aeb-f88e-49fd-8edc-2a688cd45f0a", - "width": 70, - "x": 3710, - "y": 0, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 15 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "249f8062-e95f-4016-a03a-5e8fa50c05e5", - "width": 0, - "x": 3640, - "y": 0, - "zOrder": 227, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "e311c3e8-94d3-4eba-bddc-1025b9b5edb8", - "width": 70, - "x": 3780, - "y": 0, - "zOrder": 227, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4b6135bb-a0dd-4ac1-8a5b-3497d95936e0", - "width": 70, - "x": 3640, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8c4b7e44-44de-4120-b96c-f697a78d9904", - "width": 70, - "x": 3710, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b7951c06-f1df-4ce1-8e2c-9ee1c9dbd59d", - "width": 70, - "x": 3780, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6d9bc24c-b953-49bf-a9f4-eeace79af628", - "width": 70, - "x": 3850, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e737cd4a-ca36-46a3-854a-4607fb7fdd98", - "width": 70, - "x": 3920, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "91f24613-a975-4b03-be89-09aa8634a368", - "width": 70, - "x": 3990, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "74d65b98-0cd6-4d94-8495-47ccc118785a", - "width": 70, - "x": 4060, - "y": 0, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d0cc4613-7aff-4df5-aef6-c3caccf52227", - "width": 70, - "x": 3640, - "y": 70, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "876c728d-bd29-44b6-af73-87e3c22c924b", - "width": 70, - "x": 3710, - "y": 70, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c03bca80-6aa8-4df8-b917-59b72630cf90", - "width": 70, - "x": 3780, - "y": 70, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a919c092-cf16-4bef-babd-ae1dd88b82d0", - "width": 70, - "x": 3850, - "y": 70, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1e4defcf-4cc2-43f4-bb41-6cbc996b0cf9", - "width": 70, - "x": 3850, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0879e3bc-663d-4ef8-a50f-0303b2ba4a25", - "width": 70, - "x": 3710, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4fd2911e-af41-4ead-9a8e-e05e988ea94e", - "width": 70, - "x": 3780, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "78004e2c-0ec5-4385-afaf-dd1e2c032fb5", - "width": 70, - "x": 3640, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a3ddf31c-feb2-4803-982e-f26cfb804806", - "width": 70, - "x": 3640, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "16574ece-26e6-4403-a2eb-c2b3a837be2b", - "width": 70, - "x": 3710, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "90c9f426-5572-44bf-b17d-ab6ca38f2d92", - "width": 70, - "x": 3780, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4e4c72f0-cbb2-464a-9c75-51720764a13e", - "width": 70, - "x": 3850, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "569c062b-989c-45f8-a4be-698f7bf8c26c", - "width": 70, - "x": 3990, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ebc38954-941e-40c8-8587-bde0c0fd4f7a", - "width": 70, - "x": 4060, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "76921989-f230-44ea-bd88-619437f06d46", - "width": 70, - "x": 4060, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8e87a348-8168-49ef-a2c1-37f0b5729975", - "width": 70, - "x": 3990, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9fac244b-551b-4890-b8ac-611ba510c44f", - "width": 70, - "x": 3920, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "12c0a28c-12a1-46b3-bcce-b1e9f54750b0", - "width": 70, - "x": 4060, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "ea288fa6-3695-4051-935e-8c50d598865a", - "width": 70, - "x": 3990, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fa205ea2-0fdb-4154-95cf-1a5f389f8dbf", - "width": 70, - "x": 3990, - "y": 420, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b2b9aadc-732b-4185-aa66-f54f560b92bc", - "width": 70, - "x": 4060, - "y": 420, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "977a98eb-2126-4f26-977e-e8661fd4bfe7", - "width": 70, - "x": 3990, - "y": 490, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b14ce596-f481-4cee-9094-96bd13181bd3", - "width": 70, - "x": 3990, - "y": 420, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3416ac81-34b2-40f7-a5f8-dc3c745d5ce4", - "width": 70, - "x": 4060, - "y": 490, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a6c07d90-bc05-484f-b1e9-d04bd09ad0ca", - "width": 70, - "x": 3920, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "869dfeb1-f5ac-4fac-8a1c-a0dc00a702a6", - "width": 70, - "x": 3920, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1a70666e-2f7a-4a0c-bdb1-f8cc38313b5f", - "width": 70, - "x": 3920, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e4908e17-517d-447d-97ce-228e9538e214", - "width": 70, - "x": 3780, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "97cd68c5-6e87-4ae7-a825-c3491223572d", - "width": 70, - "x": 3850, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "808da821-0c76-498f-8024-996c2ed48326", - "width": 70, - "x": 3710, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a3d1c577-fbaf-4b84-babc-0ad75cedd087", - "width": 70, - "x": 3640, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "71968fbb-61b1-4fd5-98db-209642e0b2ae", - "width": 70, - "x": 3570, - "y": 210, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5e1606a0-f0ec-4b21-ba46-4676e09a0955", - "width": 70, - "x": 3570, - "y": 280, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e1bceeb8-eff7-44de-976f-f14e5f603715", - "width": 70, - "x": 3570, - "y": 350, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "759b8dde-b063-4df6-96dc-fe12645572c2", - "width": 70, - "x": 3570, - "y": 210, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0b91f21a-6f32-461c-86b8-4f7b5ce318f2", - "width": 70, - "x": 3570, - "y": 280, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "989ce71b-5d8d-4811-b92d-0a80c7f020f0", - "width": 70, - "x": 3570, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6555f19-1d7f-4714-9765-ab87696ec0bb", - "width": 70, - "x": 3920, - "y": 210, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "29ad3d94-61e4-4390-8cdf-90228240ebf5", - "width": 70, - "x": 3920, - "y": 280, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "aa67446a-eb09-4cb1-be0f-097f9f551f67", - "width": 70, - "x": 3920, - "y": 140, - "zOrder": 20, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "936afc93-75bd-4a62-b24a-1d76b3eb6162", - "width": 70, - "x": 4200, - "y": 350, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9a9f8ab2-26e9-4658-9621-d8db494491f6", - "width": 70, - "x": 4270, - "y": 350, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6f6b914a-da6c-4da0-9475-bacf7b9056da", - "width": 70, - "x": 4340, - "y": 350, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c52303dd-c31f-4c2c-8b9d-4d1dec04b099", - "width": 70, - "x": 4270, - "y": 140, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c77dc993-0923-4c5a-a6ae-f90f8a174722", - "width": 70, - "x": 4200, - "y": 140, - "zOrder": 213, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "13d06dee-de98-417e-89c0-ab6f098429a1", - "width": 70, - "x": 4130, - "y": 140, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c0853927-977b-41f6-a2d2-2ec9afa8df94", - "width": 70, - "x": 4200, - "y": 210, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "eccf069f-f851-42a9-98dd-39e616341c14", - "width": 70, - "x": 4270, - "y": 210, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1670b282-9931-4d46-a298-3de66e619606", - "width": 70, - "x": 4200, - "y": 280, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "74fc5450-0745-48ef-a033-bf52a74a8cc6", - "width": 70, - "x": 4270, - "y": 280, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c5ce71aa-33f0-47d7-87d8-c4633f65d630", - "width": 70, - "x": 4130, - "y": 210, - "zOrder": 240, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a753dec1-87b3-471c-85c2-b53e1977d2e8", - "width": 70, - "x": 4130, - "y": 280, - "zOrder": 240, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f3cbb613-1e24-45d4-90d7-ff51e11552c3", - "width": 70, - "x": 4130, - "y": 210, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6aacae91-d0af-45f5-a381-efd90df9e771", - "width": 70, - "x": 4130, - "y": 280, - "zOrder": 230, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "747cd709-f0d5-45f4-8193-87be026759d3", - "width": 70, - "x": 3710, - "y": 0, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 1, - "layer": "", - "name": "furniture", - "persistentUuid": "00a953db-5815-4851-b067-29b194af43af", - "width": 1, - "x": 4060, - "y": 0, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "room2out", - "persistentUuid": "a4e80e49-c3ab-4f87-8151-87776bdbc91d", - "width": 20, - "x": 2100, - "y": 350, - "zOrder": 243, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "room5out", - "persistentUuid": "416648d8-e1ad-49df-bbb7-5aed2c5d107b", - "width": 20, - "x": 3570, - "y": 210, - "zOrder": 244, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6a07f366-01da-44e1-a208-4e7cdc2d2c57", - "width": 70, - "x": 3780, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b04b63f1-7021-41a3-930e-de89bed353c1", - "width": 70, - "x": 3640, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4900e5b3-7931-4418-8e92-f58c808e1a5b", - "width": 70, - "x": 3710, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "100b5203-e2bc-49bc-ac0e-11fa0d3a9956", - "width": 70, - "x": 3850, - "y": 350, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "bcc5087a-eea5-4f7a-ab0f-43cb90d466f7", - "width": 70, - "x": 3990, - "y": 420, - "zOrder": 216, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c59a056f-8a16-4c24-b744-5e04772f72db", - "width": 70, - "x": 4060, - "y": 420, - "zOrder": 217, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c5208a09-c379-4e41-8f6e-cdb82a9841e9", - "width": 70, - "x": 3920, - "y": 350, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "34347cdf-4099-4981-a2a2-a870dd799409", - "width": 70, - "x": 3920, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0c6b1437-127a-492e-aa36-8a2e48db1529", - "width": 70, - "x": 4060, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "946de098-e8e0-4587-a0e8-4f3ae46a2a62", - "width": 70, - "x": 3990, - "y": 140, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 50, - "layer": "", - "name": "furniture", - "persistentUuid": "764f0236-8d92-44b3-b264-41ded0bea5b6", - "width": 50, - "x": 4079, - "y": 140, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 50, - "layer": "", - "name": "furniture", - "persistentUuid": "28993132-ed0b-437d-aebc-c7d6e257e04a", - "width": 50, - "x": 3990, - "y": 140, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2fa69ea5-e25e-420b-9515-6b29631f6389", - "width": 70, - "x": 4200, - "y": 1680, - "zOrder": 212, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4068e717-3a93-4377-9b63-cfca624350c3", - "width": 70, - "x": 3430, - "y": 1120, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9e8fe9ba-34b5-4ab8-a85a-1daa5830e54b", - "width": 70, - "x": 3430, - "y": 1190, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "42d2395d-f444-444f-ab79-64522ed6f8e1", - "width": 70, - "x": 3430, - "y": 1260, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7b567f44-7aa2-407f-a3aa-184e176b7fce", - "width": 70, - "x": 3430, - "y": 1330, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3857d044-7e9b-4b45-94dd-62de4b576a57", - "width": 70, - "x": 3430, - "y": 1400, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f0f5d477-e4d6-434e-b8d2-0cbc620727d1", - "width": 70, - "x": 3430, - "y": 1470, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "64e97997-1f36-49de-b139-99360607ef93", - "width": 70, - "x": 3430, - "y": 1610, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cae3b3d6-8263-499d-af77-d7c596f96910", - "width": 70, - "x": 3430, - "y": 1540, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "500034fb-7be1-4476-b414-e6ec31c91f66", - "width": 70, - "x": 4200, - "y": 1610, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d9d9fcd6-e899-4185-99ea-cd8576c42c9a", - "width": 70, - "x": 3429.26, - "y": 1391.4, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7b9372b6-a639-4120-b836-840219245196", - "width": 70, - "x": 3430, - "y": 1680, - "zOrder": 246, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "83d1ff1c-97bc-4dc4-b4df-a760d9576286", - "width": 70, - "x": 3500, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "74ee1ed7-7b58-4431-9423-fb53bd99b893", - "width": 70, - "x": 3570, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "70a94d10-9d76-4138-93f8-d8fa9ee9d113", - "width": 70, - "x": 3640, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "196e35b9-0cc3-4c32-b3b8-58eafe74558d", - "width": 70, - "x": 3710, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "530d8a1d-621a-44fd-b495-16405763205e", - "width": 70, - "x": 3780, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a143cb39-604c-40cf-83fa-1dc489f63042", - "width": 70, - "x": 3850, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5c90a820-5f58-42de-a3f6-537616d7065f", - "width": 70, - "x": 3920, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "545bbc11-4ed3-42d0-8855-575e8ec62d0b", - "width": 70, - "x": 3990, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "51345d50-8721-400c-a5a0-6e161db1a2ba", - "width": 70, - "x": 4060, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "24db13ee-e56d-4d22-859a-37f9cafbdf10", - "width": 70, - "x": 4200, - "y": 1190, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ba02d746-5f45-429a-9b5f-36a1f98aec29", - "width": 70, - "x": 4200, - "y": 1260, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cbff55e7-1638-4491-b326-66507a20602f", - "width": 70, - "x": 4200, - "y": 1330, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4db040a0-3000-48cb-bddc-9c4e63eb4709", - "width": 70, - "x": 4200, - "y": 1470, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a5b2b9ec-5289-4e55-bbca-64387d8a7a55", - "width": 70, - "x": 4200, - "y": 1540, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "82d70a9c-4af2-4952-8bed-1bb79845ceb8", - "width": 70, - "x": 4200, - "y": 1400, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "84511b91-573f-4341-afca-e240a35d38f7", - "width": 70, - "x": 4200, - "y": 1120, - "zOrder": 248, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f74c070f-261f-4b8c-95b0-73532b842530", - "width": 70, - "x": 3500, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ae4011d-6952-4416-a7fd-6cb926fc5ee6", - "width": 70, - "x": 3570, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3fb42163-cdcd-4574-ba49-dac96405afc8", - "width": 70, - "x": 4060, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c57fb4ab-ec24-4211-aae6-638cbf1a3b6b", - "width": 70, - "x": 3990, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a720aa32-d669-41ca-a959-43837a9f26bf", - "width": 70, - "x": 3640, - "y": 1120, - "zOrder": 249, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cf5c58f7-e571-4e3a-9c06-280c4ab3083a", - "width": 70, - "x": 3850, - "y": 1120, - "zOrder": 250, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c3784abc-1a60-4970-a9a3-e6ac855faafa", - "width": 70, - "x": 3780, - "y": 1610, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "321d9340-b875-423a-818d-ba1f949d7042", - "width": 70, - "x": 3780, - "y": 1540, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3a4c75ad-374f-49ce-9b3f-234bbf05de82", - "width": 70, - "x": 3780, - "y": 1470, - "zOrder": 245, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "24e68ea2-331a-4aed-8b08-1d840d6f5eb9", - "width": 70, - "x": 3780, - "y": 1400, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7f851477-6dd1-4ecf-b246-028e7a5c0154", - "width": 70, - "x": 4060, - "y": 1400, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8aac92ab-4d5e-4b78-9147-9f7311fc52ce", - "width": 70, - "x": 3850, - "y": 1400, - "zOrder": 251, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ce5bcd48-51f7-4621-b353-fa44719975d4", - "width": 70, - "x": 3990, - "y": 1400, - "zOrder": 252, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7699ac39-7ee9-4c4f-9da2-4906eec786b9", - "width": 70, - "x": 3500, - "y": 1540, - "zOrder": 253, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5e8766e7-d17e-49c3-a5fe-c59598de4b4b", - "width": 70, - "x": 3570, - "y": 1540, - "zOrder": 254, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6152ef6b-642f-4edd-bc7a-50b19e3f8754", - "width": 70, - "x": 3640, - "y": 1540, - "zOrder": 255, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "515173eb-454d-4f73-b68c-32b5ccd0e6ee", - "width": 70, - "x": 3710, - "y": 1540, - "zOrder": 256, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "9349c51c-7a78-48aa-8b34-a3f170eeca78", - "width": 70, - "x": 3500, - "y": 1610, - "zOrder": 257, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "4de27a96-d4a1-437f-afd5-9a989de33c7a", - "width": 70, - "x": 3570, - "y": 1610, - "zOrder": 258, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "5e5757a9-5082-4cc4-84c0-3a5805cc3cde", - "width": 70, - "x": 3640, - "y": 1610, - "zOrder": 259, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "0a9e1aa7-079e-45c7-9df0-682b21512495", - "width": 70, - "x": 3710, - "y": 1610, - "zOrder": 260, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -72.5252, - "customSize": false, - "height": 0, - "layer": "", - "name": "kitchen", - "persistentUuid": "274b0433-35e7-4403-900f-22fad49245c6", - "width": 0, - "x": 3500, - "y": 1610, - "zOrder": 261, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c53e50e5-ba8f-47ea-afe6-8f961db966e8", - "width": 70, - "x": 3920, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "furniture", - "persistentUuid": "be2d6b79-435c-4300-8643-2012cde7478b", - "width": 0, - "x": 4130, - "y": 1260, - "zOrder": 262, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "62e63e59-4c75-42db-81fe-072aa1b10f9f", - "width": 70, - "x": 4130, - "y": 1260, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "baf2f76a-59ea-416a-b7aa-8c099a7e38c4", - "width": 70, - "x": 3850, - "y": 1610, - "zOrder": 263, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "0ae4420a-6ab2-4e1f-92f0-eea543074a25", - "width": 70, - "x": 3920, - "y": 1610, - "zOrder": 264, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1492d894-b851-4f16-a6a7-fd081802110a", - "width": 70, - "x": 3920, - "y": 1540, - "zOrder": 265, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a8e1bbe7-4632-41b9-8c75-f0ddd2da08c7", - "width": 70, - "x": 3850, - "y": 1540, - "zOrder": 266, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 234.713, - "customSize": true, - "height": 50, - "layer": "", - "name": "furniture", - "persistentUuid": "01253120-ee1a-466b-8cc6-026e40dc1038", - "width": 50, - "x": 4060, - "y": 1540, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "6ef95f26-5cca-4ed0-8f57-a0277e7439b0", - "width": 70, - "x": 3990, - "y": 1610, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 89.2461, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1d98f145-10d2-4a55-8424-b2db12dd12bf", - "width": 70, - "x": 3920, - "y": 1190, - "zOrder": 267, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 23.1986, - "customSize": false, - "height": 0, - "layer": "", - "name": "furniture", - "persistentUuid": "11c5ded7-f4bf-445d-a4be-4faf20ead94e", - "width": 0, - "x": 4060, - "y": 1330, - "zOrder": 269, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3fb92c52-9504-4e48-9705-ee9532a0bb84", - "width": 70, - "x": 4130, - "y": 1680, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3ed38041-de3e-4763-b88e-e17412a9b0dc", - "width": 70, - "x": 4130, - "y": 1120, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "99e80935-5b7e-4c67-93be-c1e719829e27", - "width": 70, - "x": 4130, - "y": 1400, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 89.2461, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "53b19ea2-0a23-4f21-8203-bd8552fee418", - "width": 70, - "x": 3920, - "y": 1260, - "zOrder": 267, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "77bdca95-7d1a-48ac-b8ce-95ae92e6a2bf", - "width": 0, - "x": 3990, - "y": 1610, - "zOrder": 270, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "ae132096-8e86-4872-95b5-5a0bc9538206", - "width": 0, - "x": 4130, - "y": 1190, - "zOrder": 271, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "e6e31524-ed43-44f7-bf4b-6d109b4fbe32", - "width": 0, - "x": 4130, - "y": 1330, - "zOrder": 272, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "50a94928-eaa9-4d74-acb3-8104621b8900", - "width": 70, - "x": 3500, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "05e4e15e-4bda-47ad-b5d4-17032a13d99a", - "width": 70, - "x": 3570, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "58b7dc7a-fecf-4663-adf3-62122949e185", - "width": 70, - "x": 3640, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "be0451df-10c9-4d5c-ba2e-a685759b6bf0", - "width": 70, - "x": 3710, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "deabdc77-6f22-45de-b2f4-76f9bb412fa7", - "width": 70, - "x": 3780, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "f702189e-4027-4106-b333-3deb7f523e0b", - "width": 70, - "x": 3850, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a184f5f6-bba2-4730-a007-78c21311e097", - "width": 70, - "x": 3990, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c83e9dc0-b284-4d51-88de-23765da56189", - "width": 70, - "x": 4060, - "y": 1190, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1c31bac9-15b3-4ad4-9277-5fa80acef55b", - "width": 70, - "x": 4130, - "y": 1190, - "zOrder": 271, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0d29ed55-6db7-41f4-9615-a132a4dce6fb", - "width": 70, - "x": 4130, - "y": 1330, - "zOrder": 271, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "afa0f627-0774-4424-bd0e-3226a61757dc", - "width": 70, - "x": 3500, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b69a48f6-39c2-4437-89ee-043c322872fd", - "width": 70, - "x": 3570, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "66f796fb-c6b7-47d2-8560-2c75b0d0a217", - "width": 70, - "x": 3640, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "db052223-de52-47cf-8bcb-c1e82e821526", - "width": 70, - "x": 3710, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6fe9712-6b65-4ebf-a181-9f681610fe7d", - "width": 70, - "x": 3850, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3f2143c9-4d20-4609-a14b-440c838258aa", - "width": 70, - "x": 3780, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "faa74db0-a52e-43ff-9050-dfb0b5109672", - "width": 70, - "x": 4060, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "49919ad0-0513-48c3-a532-961725558342", - "width": 70, - "x": 3990, - "y": 1260, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "88afa5cd-50c7-4b53-a0f9-248afb294d18", - "width": 70, - "x": 3990, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e7499b99-119c-41d1-b939-51fe583549b8", - "width": 70, - "x": 3990, - "y": 1400, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7390c091-3856-423f-9ed0-4b1a7065c7eb", - "width": 70, - "x": 3850, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "fe8b1bcc-3b69-4627-ac72-2eaba542517d", - "width": 70, - "x": 4145.2, - "y": 1349.81, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "1163d703-f047-42a6-bb88-cf3945bf01f5", - "width": 70, - "x": 3920, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9738ebda-bde0-4954-a4d7-e594529b7a22", - "width": 70, - "x": 3920, - "y": 1400, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "45eb57b0-e23a-44de-aca4-338d4a85092e", - "width": 70, - "x": 3850, - "y": 1400, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d3bccc62-cceb-4e68-93c8-dc7351fc6808", - "width": 70, - "x": 3850, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0e90226b-8104-487d-958d-5a1e90684636", - "width": 70, - "x": 3920, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a1b82904-1895-445a-9253-641ba2590737", - "width": 70, - "x": 3990, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b11dc843-1490-405e-8993-45848778616d", - "width": 70, - "x": 4060, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "09da1d97-f9e7-4559-8d25-6c08969a9f12", - "width": 70, - "x": 4130, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "b8da9aa1-f89c-44a2-a378-eb4cb9b523ec", - "width": 70, - "x": 4130, - "y": 1540, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "48a400b3-094b-4848-b191-00381257a11d", - "width": 70, - "x": 4130, - "y": 1610, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cac76677-ce9a-46d9-b926-20b84405ebf8", - "width": 70, - "x": 4060, - "y": 1610, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "269481d6-0e3c-45a6-bb4a-3c9d6cbb9ced", - "width": 70, - "x": 3990, - "y": 1540, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6bb6ab42-0488-433d-83c6-acacdce34fb5", - "width": 70, - "x": 4060, - "y": 1540, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d9052d4e-6ad1-4071-bb9a-cf0d98de6bbc", - "width": 70, - "x": 3920, - "y": 1540, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "71caabac-87d2-4bbf-814b-22bada5ed98d", - "width": 70, - "x": 3850, - "y": 1540, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4af70540-2162-4756-8932-510fbb22b4f3", - "width": 70, - "x": 3500, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "df54681b-ad62-4720-8df9-79ef018ae918", - "width": 70, - "x": 3500, - "y": 1400, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d35b0de8-524b-4a5a-b865-6fc391e939ea", - "width": 70, - "x": 3570, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8c85a6e9-f864-4314-9ccd-0a875341049e", - "width": 70, - "x": 3570, - "y": 1400, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "11b9b18b-a18a-4888-8d8a-541b3103fa0b", - "width": 70, - "x": 3640, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6b9653bc-6717-4cd1-b900-89287f9f448a", - "width": 70, - "x": 3570, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6343286-96b5-4941-a22d-fa799eaf6dde", - "width": 70, - "x": 3500, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "9137ab5f-c99c-4ab0-9104-e7aa04cf42f7", - "width": 70, - "x": 3640, - "y": 1400, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c2d9d988-d325-4fdb-9903-6a4ea82f14e3", - "width": 70, - "x": 3710, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6afbc83d-76f2-4435-9635-b8bc985b3802", - "width": 70, - "x": 3780, - "y": 1330, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c105c183-da3f-4ac0-ac32-44b08485eebc", - "width": 70, - "x": 3710, - "y": 1400, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c82705c9-3c48-4cc7-9601-7e386f8dac1c", - "width": 70, - "x": 3710, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "58233abc-ef3b-4a4f-8a5f-f02ac244537b", - "width": 70, - "x": 3640, - "y": 1470, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a5403042-270e-4806-a84a-be9cc3a60440", - "width": 70, - "x": 3920, - "y": 1260, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "286d50c7-a9e9-4985-88f5-f131907a017f", - "width": 70, - "x": 3920, - "y": 1190, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "648b8c28-d32c-45fb-8e9c-c110b664c72d", - "width": 70, - "x": 4130, - "y": 1260, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d213e1d1-ef2f-4365-ae49-703285a89e96", - "width": 70, - "x": 4060, - "y": 1330, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3d8d6426-bc78-4fab-8da4-3136939fcc34", - "width": 70, - "x": 3990, - "y": 1610, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "971f14d6-4425-4a2f-a82b-3124cec3a741", - "width": 70, - "x": 3640, - "y": 1120, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a0255d74-d4b0-48af-a147-3545ac42a94e", - "width": 70, - "x": 3850, - "y": 1120, - "zOrder": 27, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "43bcc2d9-12fd-4c0d-965b-c3b2a2edcfef", - "width": 70, - "x": 3710, - "y": 1120, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "737ec068-c2a9-4fa2-ab26-0c62937e6850", - "width": 70, - "x": 3780, - "y": 1120, - "zOrder": 273, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e2d60b89-f2da-4075-98dd-366ef72d8a4a", - "width": 70, - "x": 3710, - "y": 1120, - "zOrder": 280, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "613828ae-43fb-440a-8cb1-d879426c6bba", - "width": 70, - "x": 3780, - "y": 1120, - "zOrder": 280, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "12903c60-c208-4b90-9511-8ca598bdc5cb", - "width": 70, - "x": 3850, - "y": 1120, - "zOrder": 28, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "773ff991-1e80-40ee-8fab-0e5dad18bb83", - "width": 70, - "x": 3640, - "y": 1120, - "zOrder": 28, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 34, - "layer": "", - "name": "room6out", - "persistentUuid": "04bc9df1-542a-49ab-b11e-a2711c6e672a", - "width": 280, - "x": 3640, - "y": 1120, - "zOrder": 281, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Niko", - "persistentUuid": "5cb6196f-fa34-4eb9-a71b-35d19bd21122", - "width": 0, - "x": 210, - "y": 140, - "zOrder": 282, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c9ba5ce8-ee97-4e69-8d84-85fcd3750780", - "width": 1190, - "x": 3430, - "y": 2240, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f676f78d-3172-49c1-9cec-0e43fa0b61fd", - "width": 70, - "x": 3360, - "y": 2240, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 490, - "layer": "", - "name": "walls", - "persistentUuid": "1138a496-ff22-4797-924e-ae308efc3c32", - "width": 70, - "x": 3360, - "y": 2590, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b2aeb7ff-2c1f-4758-ba61-3a136fa82ddc", - "width": 70, - "x": 3360, - "y": 3080, - "zOrder": 286, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "600adaf2-363c-4ba1-b3c1-1a514f70a7ae", - "width": 350, - "x": 3430, - "y": 3080, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "bd96f49f-d24e-4d22-bd72-465479c8c470", - "width": 70, - "x": 3780, - "y": 3080, - "zOrder": 287, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d5edab9b-4ff7-4e31-a2c0-c2023c6be0fe", - "width": 70, - "x": 4060, - "y": 3080, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "87d83384-e8e5-4e94-ba5e-fb26c8adba4b", - "width": 70, - "x": 4130, - "y": 2660, - "zOrder": 290, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "988b6d89-96c7-4145-a845-ceaacd142d8b", - "width": 70, - "x": 4620, - "y": 2240, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "aeffcd83-0b74-4191-9cb2-a0c6cb9fbb79", - "width": 70, - "x": 4620, - "y": 2310, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "95d1a411-bc5d-4c93-9e55-4f1fd1f12b02", - "width": 70, - "x": 4620, - "y": 2660, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ae6e9b89-ebf6-495a-bfef-6fa4804cfc94", - "width": 420, - "x": 4200, - "y": 2660, - "zOrder": 293, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "Wooden_floor", - "persistentUuid": "b99477f5-0cc3-4412-a04a-971dc298310e", - "width": 1190, - "x": 3430, - "y": 2310, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "40c14d26-8c9f-4432-a337-144f7c0d7276", - "width": 70, - "x": 4200, - "y": 2380, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "ee6dab4d-ae15-4790-8512-89ba08e70468", - "width": 70, - "x": 4200, - "y": 2520, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "8b04dfec-2a53-43ba-b7ad-30fc8549b337", - "width": 70, - "x": 4200, - "y": 2450, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 17 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2059d59e-ba18-4adf-b97d-28caaf2ea72b", - "width": 70, - "x": 4340, - "y": 2590, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a633b2f6-1b6a-46ab-9dd3-7c18f37edff1", - "width": 70, - "x": 4410, - "y": 2590, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "0e743676-ddb5-476f-a0ee-1746542813dd", - "width": 70, - "x": 4340, - "y": 2310, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "7dd95e80-c168-4f10-a716-a5b3a3c066d4", - "width": 70, - "x": 4410, - "y": 2310, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": false, - "height": 0, - "layer": "", - "name": "furniture", - "persistentUuid": "979b11cb-aa20-4fa4-aaa3-388561170450", - "width": 0, - "x": 4550, - "y": 2450, - "zOrder": 262, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a9259600-46be-4ce3-ac54-65175f655013", - "width": 70, - "x": 3575, - "y": 2700, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "furniture", - "persistentUuid": "a3eaec3a-b4a5-44b4-9acc-173174f6c71c", - "width": 140, - "x": 3538, - "y": 2758, - "zOrder": 35, - "numberProperties": [ - { - "name": "animation", - "value": 21 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "7f93b456-4f94-4ca4-bf8a-a252b7bf88c8", - "width": 70, - "x": 3501, - "y": 2828, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "13eb0ffa-e5ed-4d2d-aa39-65b3b09941d4", - "width": 70, - "x": 3501, - "y": 2758, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a3fe06a2-6222-4675-9867-7a629e685599", - "width": 70, - "x": 3646, - "y": 2758, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1200e3a1-b951-42cc-8944-e4c26f08711d", - "width": 70, - "x": 3646, - "y": 2828, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "8bf63887-4060-4c6f-b94a-1dcbd0489878", - "width": 70, - "x": 3572, - "y": 2884, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4b1f003a-b682-435a-a4f3-00dab245f00a", - "width": 70, - "x": 3360, - "y": 2520, - "zOrder": 294, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "walls", - "persistentUuid": "30938a28-72af-46c7-ac9a-9ec56cf0bc1c", - "width": 70, - "x": 3360, - "y": 2310, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a1845947-73a0-433e-8931-f65572a8a2d0", - "width": 350, - "x": 3430, - "y": 2520, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6d90c856-8eb2-4115-b7b4-4910f70bd7ff", - "width": 70, - "x": 3780, - "y": 2520, - "zOrder": 287, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "7e576957-cf48-4424-acad-c1429520a7da", - "width": 70, - "x": 3430, - "y": 2310, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "7ccbf64c-4083-422a-b115-9710b130a783", - "width": 70, - "x": 3500, - "y": 2310, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "470c0e59-4b28-48a2-96aa-2f291d56a170", - "width": 70, - "x": 3570, - "y": 2310, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "97ce7ee6-ed55-4a2f-9abc-793dab238a08", - "width": 70, - "x": 3640, - "y": 2310, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "5885a083-c3dc-4273-b167-81678edd9ee8", - "width": 70, - "x": 3710, - "y": 2310, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "d90edec6-5c6f-4cc8-ba4d-c15b41298987", - "width": 70, - "x": 3710, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "31322c49-0959-4681-89e4-016fee643d60", - "width": 70, - "x": 3640, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "28ff668e-a0a1-46ed-9405-a6abff97ba97", - "width": 70, - "x": 3500, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "3d5d3632-fc27-42f8-b1b7-6592a95fe949", - "width": 70, - "x": 3570, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "17243cda-5fdb-4d16-877b-b71c9d587e3d", - "width": 70, - "x": 3430, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e371395c-7a81-446e-a096-919e6f710b85", - "width": 70, - "x": 3430, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "383fcb2b-0b77-4911-9d04-653f8bc88496", - "width": 70, - "x": 3500, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6ba77adf-1ea3-469b-91b0-0da65a33ede8", - "width": 70, - "x": 3570, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "58f1acea-dbc2-4ddd-a02d-31b14b464430", - "width": 70, - "x": 3640, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "c6464947-bb5e-4a78-9d65-dba42fa3973d", - "width": 70, - "x": 3710, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7ff67ed0-229c-4eff-b7b3-ca21b892b64f", - "width": 70, - "x": 3780, - "y": 2450, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "4d3c6af1-d6fb-4470-9270-8908bf124a93", - "width": 70, - "x": 3780, - "y": 2310, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "a2aab55a-68ee-4d19-ad05-6342a6ae240e", - "width": 70, - "x": 3780, - "y": 2380, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "e2b4a0ff-7d5c-4ebb-8dac-f19f78d58e5c", - "width": 70, - "x": 3780, - "y": 2450, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "ce4db660-d5c3-43c4-8cc9-63421d2c80a2", - "width": 70, - "x": 3430, - "y": 2310, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "b963cdb1-0090-4a9a-b2e7-358202d3914a", - "width": 70, - "x": 3430, - "y": 2590, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 70, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "2c74aa9f-3009-482d-839f-9464e2a5516f", - "width": 70, - "x": 3710, - "y": 3010, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "6e77e7b0-0d9d-4f16-bfd3-f6bca951a851", - "width": 70, - "x": 4550, - "y": 2450, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "9b7e38e5-fbc0-4021-ac2e-7b402fa04c6a", - "width": 70, - "x": 3780, - "y": 2800, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "b42278ea-f468-4c0c-b9bd-429de15a2fbf", - "width": 70, - "x": 3780, - "y": 2730, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "8482a9f5-3154-4ed7-8813-2cf04bf15551", - "width": 0, - "x": 4549.46, - "y": 2387.99, - "zOrder": 271, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "f645bc79-3c30-488b-a04b-0a983b530c23", - "width": 0, - "x": 4549.46, - "y": 2528.93, - "zOrder": 271, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "564f7162-e2e8-40cb-a6d1-3899ffb12e88", - "width": 70, - "x": 4620, - "y": 3080, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "c5816fcd-1f69-46e4-908c-dcec17fe9138", - "width": 70, - "x": 4620, - "y": 2730, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "78b30559-8b49-4a88-ad4f-11e7b2cc6aeb", - "width": 70, - "x": 4130, - "y": 3080, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "14e1116a-3a90-4d2d-be49-85a84e479ce3", - "width": 420, - "x": 4200, - "y": 3080, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "walls", - "persistentUuid": "055c055d-245b-44fe-936a-66569de60983", - "width": 70, - "x": 4130, - "y": 2940, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9fdf0bac-9c52-4b80-baa4-595e7957c01d", - "width": 70, - "x": 4130, - "y": 2870, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cd54905d-0feb-425b-a3a6-f8efd0b27149", - "width": 70, - "x": 4130, - "y": 2730, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "d02ccbca-2a01-4e89-b18b-880d122cd6e5", - "width": 70, - "x": 4200, - "y": 2940, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "6cbb894a-80b5-41f3-bfe2-c73b752989c5", - "width": 70, - "x": 4270, - "y": 2940, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "4e752bee-307e-4cae-8118-136895252957", - "width": 70, - "x": 4340, - "y": 2940, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "12760856-4d83-46e4-ae56-fd5ce64e1e2c", - "width": 70, - "x": 4340, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "fbf3874c-52d1-4093-b800-3adbb9de5c70", - "width": 70, - "x": 4270, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "4afbd525-60d6-4142-b6ec-34e4884f6a8d", - "width": 70, - "x": 4200, - "y": 3010, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 70, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "00c0b2fa-b892-4543-bf29-59c1aa55a1d4", - "width": 70, - "x": 4550, - "y": 2730, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "624cc69c-e9c2-4f98-a0b0-ea346da71f1a", - "width": 70, - "x": 4480, - "y": 2730, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 40, - "customSize": true, - "height": 50, - "layer": "", - "name": "furniture", - "persistentUuid": "466d42a4-e8fb-44c2-af12-3649dd6b7838", - "width": 50, - "x": 4480, - "y": 2800, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -70, - "customSize": false, - "height": 0, - "layer": "", - "name": "furniture", - "persistentUuid": "9eef5792-e16f-4cfb-b9dd-a0a69ba9e5d5", - "width": 0, - "x": 4536, - "y": 2990, - "zOrder": 262, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -70, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "4505e1a8-e8bd-4ca9-8417-856269084c38", - "width": 70, - "x": 4536, - "y": 2990, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "da6fcf6f-24d3-4685-93d4-74ba445c156f", - "width": 70, - "x": 1820, - "y": 2590, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "197fcb91-3da0-4679-b1e6-95c51f32e202", - "width": 70, - "x": 1820, - "y": 3500, - "zOrder": 286, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c33b653f-9c70-4ef5-acd4-df1563515609", - "width": 70, - "x": 2870, - "y": 2240, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5616a92a-4bca-43ea-958d-16d034eaa73c", - "width": 70, - "x": 2870, - "y": 3500, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "name": "walls", - "persistentUuid": "27d10840-2810-4b7d-85f4-d38d9d7f9668", - "width": 70, - "x": 2870, - "y": 2310, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "34a01116-5752-478e-9801-29e55e687549", - "width": 350, - "x": 1890, - "y": 2590, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "02c2a90b-16a0-4184-b291-2fc4266d0de6", - "width": 70, - "x": 2240, - "y": 2240, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "21be10c7-9447-418c-a7c8-aa42bb4bf62c", - "width": 560, - "x": 2310, - "y": 2240, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "569faf64-452c-4f14-82e0-d2f3fdb1907d", - "width": 70, - "x": 2240, - "y": 2310, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "8f755a99-4901-4ad3-bafa-09eccdf9a66e", - "width": 70, - "x": 1820, - "y": 2660, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f55955f9-a683-43ef-a0b2-cd9f200869c1", - "width": 70, - "x": 2240, - "y": 2590, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6990a8aa-755d-4dc2-b1cd-4a6333a9fa93", - "width": 280, - "x": 2310, - "y": 2590, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ea9d29e6-6a9a-469b-ab84-c9a8b5beffb6", - "width": 350, - "x": 1890, - "y": 3500, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "0e22809b-ae08-4558-8889-2a1bb34bad67", - "width": 210, - "x": 2660, - "y": 3500, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a0c79deb-e940-4527-be5e-f4f85dd641f2", - "width": 70, - "x": 2240, - "y": 3500, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d46f27f1-835e-4a1b-bd57-5bc586b4291c", - "width": 70, - "x": 2520, - "y": 3500, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "Wooden_floor_dark", - "persistentUuid": "798e9697-eca2-4310-a9ae-9cf67f6b8355", - "width": 1120, - "x": 1820, - "y": 2590, - "zOrder": 0, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Wooden_floor_dark", - "persistentUuid": "0d95e5da-4d15-4d6d-a352-e04884437c2c", - "width": 560, - "x": 2310, - "y": 2310, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "775c2dd3-6e69-49b8-8075-e47c936f236c", - "width": 70, - "x": 2181, - "y": 2729, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "13211fb0-c968-4846-9498-0c4232cc5db0", - "width": 70, - "x": 2181, - "y": 2799, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1800ac0d-f457-4fa7-a974-147e701c884c", - "width": 70, - "x": 2181, - "y": 2869, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "84061bca-0841-4066-bd81-1cfc8b585d39", - "width": 70, - "x": 2058, - "y": 2928, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "38ad9705-d0ea-472a-9345-7ef40c464b6b", - "width": 70, - "x": 1988, - "y": 2928, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1c3e60fc-0607-403e-9403-4f622a334031", - "width": 70, - "x": 1918, - "y": 2777, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "061c3004-958d-4fa6-8563-eb923fa52de0", - "width": 70, - "x": 1918, - "y": 2777, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "0a83ee93-4ebd-45c8-b77a-e712cfd66b7a", - "width": 70, - "x": 2030, - "y": 3179, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c7bdc34a-bbb2-4f2c-90fa-42b9fa9f1b81", - "width": 70, - "x": 2101, - "y": 3237, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "22113808-03a0-4c28-8812-fde845d27a08", - "width": 70, - "x": 2101, - "y": 3307, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "furniture", - "persistentUuid": "c40d93da-4346-4188-b345-2a7c5e8a174e", - "width": 140, - "x": 1993, - "y": 3237, - "zOrder": 35, - "numberProperties": [ - { - "name": "animation", - "value": 21 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "3c4db02d-36cc-4094-a740-5c389acffb76", - "width": 70, - "x": 2027, - "y": 3363, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "19483094-0076-4047-ac91-d9e829bb32a1", - "width": 70, - "x": 1956, - "y": 3307, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "74946752-f6b7-4740-a5ae-1362a2d04e07", - "width": 70, - "x": 1956, - "y": 3237, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9497456b-0bc7-4342-b8d6-55897444b713", - "width": 70, - "x": 1820, - "y": 3010, - "zOrder": 294, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 420, - "layer": "", - "name": "walls", - "persistentUuid": "ac83ac67-3e6d-40b7-bd37-8e4aace9f6e1", - "width": 70, - "x": 1820, - "y": 3080, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "905c465b-ecdb-4126-a7ef-ceee2d399a39", - "width": 350, - "x": 1890, - "y": 3010, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "49316bec-ee03-4ded-8f46-5eab7a30f66d", - "width": 70, - "x": 2240, - "y": 3010, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "74d3d3b6-fa0e-4cfe-82ba-23945afbf26a", - "width": 70, - "x": 1889, - "y": 3438, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "dcc06820-a42d-4484-90e7-0141cf47930f", - "width": 70, - "x": 2800, - "y": 3010, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "4637035d-3c50-4361-9e68-fb9d971ea397", - "width": 70, - "x": 2520, - "y": 2660, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "0d88c3c6-26c6-4ae7-b509-0307b430a63d", - "width": 70, - "x": 2590, - "y": 2590, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "walls", - "persistentUuid": "8ad28146-4d18-4c01-83e3-4cecd30dff9a", - "width": 70, - "x": 2590, - "y": 2660, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "512291db-2d62-4332-acaf-e4dc6c374ade", - "width": 70, - "x": 2590, - "y": 2870, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7977c8b0-6710-42d7-9380-bbcb61930064", - "width": 70, - "x": 2870, - "y": 3080, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "38155c46-c85d-41a5-a5c7-b471d405a806", - "width": 70, - "x": 2870, - "y": 3150, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "581d4d04-2d57-4228-998f-4784a66e4fe9", - "width": 70, - "x": 2590, - "y": 3500, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 140, - "layer": "", - "name": "walls", - "persistentUuid": "99351ebb-6c8e-4f4a-baa2-f8835f066ac6", - "width": 70, - "x": 2590, - "y": 3360, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4ef9d654-bd35-4fc6-9480-8d184c5e7216", - "width": 210, - "x": 2660, - "y": 3080, - "zOrder": 293, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8d308ed4-feab-4d9c-8479-23038a182d92", - "width": 70, - "x": 2590, - "y": 3290, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d4906007-c420-4901-88d9-e2b112fe6d36", - "width": 70, - "x": 2590, - "y": 3080, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "Grey_floor_tiled", - "persistentUuid": "1af62462-8740-44a6-a920-7a120c0750f9", - "width": 210, - "x": 2660, - "y": 3150, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "457aa1af-c2bc-45b9-b789-cab3a3338c38", - "width": 70, - "x": 2800, - "y": 3430, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "8ea711b8-b127-43f6-b84e-7f4386128a21", - "width": 70, - "x": 2800, - "y": 3360, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "8e9d85f1-f675-429c-9eb6-f66e891f295a", - "width": 70, - "x": 2800, - "y": 3290, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "b5887b3c-cd35-4d64-8ca9-71cd58157a09", - "width": 70, - "x": 2800, - "y": 3220, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "6800dce0-399c-4701-a64b-9a6cffffc0c7", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "3f0f4743-bc24-4b12-801a-bfee333012fc", - "width": 70, - "x": 2800, - "y": 3150, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "4f325a20-c5c0-4560-b777-80f11730e129", - "width": 70, - "x": 2310, - "y": 2380, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2923ab99-a665-495b-a586-b5016a56ceb5", - "width": 70, - "x": 2310, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "22316b78-3129-47a9-8868-629690cfc781", - "width": 70, - "x": 2380, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "210fc99f-e5a5-4414-bc49-7aba02654924", - "width": 70, - "x": 2450, - "y": 2450, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "631c0d8e-7802-4833-8fe9-1645d79e7cd7", - "width": 70, - "x": 2380, - "y": 2380, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "25fdeb0c-1c6e-4bef-be20-f559863a63c3", - "width": 70, - "x": 2450, - "y": 2380, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "5c958615-fe68-4981-9431-f138ebb08a9c", - "width": 70, - "x": 2310, - "y": 2520, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1254f2c8-c9bb-4ede-b024-0f495fe8d30e", - "width": 70, - "x": 2310, - "y": 2520, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1241358e-e700-44ff-8f34-ef30e0addadf", - "width": 70, - "x": 2310, - "y": 2310, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "39eb54b9-113c-4617-93a6-199313179433", - "width": 70, - "x": 2310, - "y": 2310, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "aaa4fd0d-d20d-4dc0-b64b-5ea7eb53a18b", - "width": 70, - "x": 2730, - "y": 2310, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "cf067b8c-7c47-4226-bfd3-e6c224f96a86", - "width": 70, - "x": 2730, - "y": 2367, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8ea362e6-107a-40b4-b380-1aa22f24c7cc", - "width": 70, - "x": 2660, - "y": 2590, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "77e47111-7ac7-4171-88e6-01ca4167bfe3", - "width": 70, - "x": 280, - "y": 2590, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "23d5e77d-3376-40d5-8e51-defd889a9ccc", - "width": 70, - "x": 1190, - "y": 3500, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "736d10e9-0d1b-4c96-8cad-4b4fa538bf2b", - "width": 70, - "x": 280, - "y": 3500, - "zOrder": 286, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4d1eeae6-d251-4ca8-b8a2-b3377ca3b5c0", - "width": 70, - "x": 1190, - "y": 2590, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ea338da-63f8-454e-83d1-8c4a22a3fd8d", - "width": 560, - "x": 350, - "y": 2590, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2ee9b3e0-fd05-40be-bb57-60ec98b8037a", - "width": 210, - "x": 70, - "y": 2660, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1b340ea7-8414-43ad-9367-e60842e862be", - "width": 70, - "x": 0, - "y": 2660, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "78ad3f15-d8b2-4cd3-87f0-6e987343381e", - "width": 70, - "x": 0, - "y": 2730, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8ae3df79-8b47-4323-8698-a30b0fe123fe", - "width": 70, - "x": 0, - "y": 3010, - "zOrder": 286, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c8e6a956-0993-4271-951e-05cd57b53e77", - "width": 210, - "x": 70, - "y": 3010, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "adcd5bb9-3871-4ac7-9ef5-99b6b66a8325", - "width": 70, - "x": 280, - "y": 3010, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e01d275f-f33c-4dde-af1a-32df14ea4f1d", - "width": 70, - "x": 280, - "y": 2660, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "6ace8185-fa95-43c0-a179-0b5ae2b7a3c6", - "width": 70, - "x": 280, - "y": 2730, - "zOrder": 13, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "f71e6702-ed7c-4799-95a9-e5b540ee986a", - "width": 70, - "x": 280, - "y": 2940, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "0a447bf7-7c9f-4f73-80eb-a8d04e559712", - "width": 70, - "x": 280, - "y": 3150, - "zOrder": 1, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 840, - "layer": "", - "name": "walls", - "persistentUuid": "95b7b156-7d42-404b-9b9d-81d8323651bf", - "width": 70, - "x": 1190, - "y": 2660, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "da15ff62-4135-4b35-8621-6698c5b0798e", - "width": 350, - "x": 350, - "y": 3500, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "698b4c3b-9a12-4307-b8ed-c100c21dadea", - "width": 70, - "x": 700, - "y": 3500, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e808b2d3-4688-41e6-8deb-5d0c11fdbae3", - "width": 140, - "x": 1050, - "y": 3500, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "474ae3e0-57bc-4911-8c35-9c0fbd86e916", - "width": 70, - "x": 910, - "y": 3500, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Grey_floor_tiled", - "persistentUuid": "05819116-6582-4c75-bf6c-d7a5cc5f1fde", - "width": 280, - "x": 70, - "y": 2730, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "08ae459b-27b6-48f7-b6a2-312eb86941ab", - "width": 70, - "x": 70, - "y": 2730, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "8e1aa817-f1d2-4439-afe9-372aca6b3dc0", - "width": 70, - "x": 70, - "y": 2800, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "32084239-5ea5-4ce1-ab69-0cac4dc34ae2", - "width": 70, - "x": 70, - "y": 2870, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "e2d28972-643b-402e-b196-8aae13ef59c8", - "width": 70, - "x": 70, - "y": 2940, - "zOrder": 100, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "291429a3-e574-41b6-852c-22947022ddf8", - "width": 70, - "x": 70, - "y": 2940, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "237c65e1-167d-41a8-8196-04dbd0a341b5", - "width": 70, - "x": 910, - "y": 2590, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "bf0d27af-35e2-4dd2-b76c-178cb37d05c8", - "width": 210, - "x": 980, - "y": 2590, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "76d684cc-72c1-4da8-a712-a218886f91c5", - "width": 70, - "x": 910, - "y": 2660, - "zOrder": 18, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "60c253d6-9917-48d4-825e-ec29f028e403", - "width": 70, - "x": 910, - "y": 2940, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "5d9cd5f4-fb4f-4522-ab92-15f119d32df4", - "width": 70, - "x": 1120, - "y": 2660, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "9a2c2574-313f-4b4a-ada5-6fc9d32f08c1", - "width": 70, - "x": 1050, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "895a356f-0358-4a97-812b-fa18224eec8e", - "width": 70, - "x": 1120, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "7b5c8a3e-82d0-4f31-949d-9253307d1b25", - "width": 70, - "x": 1050, - "y": 2800, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "b710b458-a58d-4de3-9841-a80052efeb30", - "width": 70, - "x": 1120, - "y": 2730, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "eeece8fb-a9fc-4429-b1b2-909dd92df8f5", - "width": 70, - "x": 1050, - "y": 2660, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "flower", - "persistentUuid": "adea10b7-8dea-41d3-a8a2-bdea3511e4b5", - "width": 70, - "x": 980, - "y": 2660, - "zOrder": 17, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "4ebf06b4-537c-4a9c-8155-d484f21c2315", - "width": 70, - "x": 980, - "y": 2660, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 240, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "202786e8-4a71-4c68-ab3e-b8943020832e", - "width": 70, - "x": 826, - "y": 2674, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 240, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a85763cd-5212-4034-a717-0448b914d341", - "width": 70, - "x": 826, - "y": 2674, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "e901505e-1685-4fa1-be51-f0260cdbf9d8", - "width": 70, - "x": 770, - "y": 2870, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "898ebc01-0b50-41e8-951a-9f2447a397d2", - "width": 70, - "x": 700, - "y": 2870, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "425e0e8d-e9ec-4733-b958-42b17cef4dff", - "width": 70, - "x": 630, - "y": 2730, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c469b0bb-5f8a-4963-8331-e4305efc298c", - "width": 70, - "x": 481, - "y": 3188, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "98a23410-a17c-4fda-b866-957dc9e4fd9f", - "width": 70, - "x": 552, - "y": 3246, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "f5901a3b-1b6c-4aca-aaf7-2f0bbace8c3a", - "width": 70, - "x": 552, - "y": 3316, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "furniture", - "persistentUuid": "cec3d4b4-b5d0-4c8f-9b5b-dc2a7219a56e", - "width": 140, - "x": 444, - "y": 3246, - "zOrder": 35, - "numberProperties": [ - { - "name": "animation", - "value": 21 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "d7526131-8c7a-4a56-b68c-ac28711589ca", - "width": 70, - "x": 478, - "y": 3372, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a566c2c2-0892-4ca9-abed-62294e26750e", - "width": 70, - "x": 407, - "y": 3316, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2341b9a8-b8e9-4a21-baac-2684a4ba3ca4", - "width": 70, - "x": 407, - "y": 3246, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "bfb41509-2936-403f-8bb6-0181a02de7c9", - "width": 70, - "x": 980, - "y": 3500, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "walls", - "persistentUuid": "941364ec-da40-4c42-bbb3-13f7df38fc30", - "width": 70, - "x": 980, - "y": 3290, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "8e102d70-99f4-44a9-9d68-de777c4bc51b", - "width": 70, - "x": 980, - "y": 3220, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "8fe329c0-7b72-4e3f-8ffc-174fae1dc08c", - "width": 70, - "x": 1120, - "y": 3290, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "56dd99a3-c69c-46fd-ac67-ef5ad513867e", - "width": 70, - "x": 1050, - "y": 3360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "67656edf-8861-424e-86b3-3ba193dbf6d3", - "width": 70, - "x": 1120, - "y": 3360, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "92c3bb43-e430-417d-9a62-b4fb452c4874", - "width": 70, - "x": 1050, - "y": 3430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "873d5d74-1cd1-460e-abbf-92c4f8111014", - "width": 70, - "x": 1120, - "y": 3430, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3986af42-c74c-4d66-9c7f-9133388ba686", - "width": 70, - "x": 280, - "y": 3080, - "zOrder": 294, - "numberProperties": [ - { - "name": "animation", - "value": 11 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "186015a5-5b64-46b1-842e-e6b287cd0dc1", - "width": 280, - "x": 350, - "y": 3080, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "76e60764-8fbc-43e6-a7e1-9ff9820bab8c", - "width": 70, - "x": 630, - "y": 3080, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 910, - "layer": "", - "name": "Wooden_floor_dark", - "persistentUuid": "68f8e56b-34c1-4f72-8191-7ba7c01589e1", - "width": 910, - "x": 350, - "y": 2660, - "zOrder": -1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3e96d033-81a2-487c-b2c2-4aebac45ad37", - "width": 70, - "x": 4550, - "y": 3920, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 9 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "12ef1cf8-54ed-4d7e-8e8c-45864663f9e4", - "width": 700, - "x": 3850, - "y": 3920, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "c0f41a30-79c3-4b4e-912d-429c9061d5d5", - "width": 70, - "x": 3500, - "y": 3920, - "zOrder": 211, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 980, - "layer": "", - "name": "walls", - "persistentUuid": "ce22ed01-4b85-40d0-9b1b-e5b3d5f5ae7f", - "width": 70, - "x": 3500, - "y": 3990, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "b67541ff-830d-494b-ab4f-7683216c4c54", - "width": 70, - "x": 4550, - "y": 4340, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "cd6dda9e-1254-4604-945f-29d56e8c91fa", - "width": 70, - "x": 3500, - "y": 4970, - "zOrder": 286, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "3451dd4a-8b3b-46f7-9f8a-1d1716860df6", - "width": 70, - "x": 4550, - "y": 4970, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 10 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "a2530963-0fae-4ad6-9c7b-b981f398494f", - "width": 280, - "x": 3570, - "y": 4970, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "56cf4d5c-e499-4329-ac90-566e90d4df70", - "width": 70, - "x": 3920, - "y": 4970, - "zOrder": 2, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "67f24a51-18fc-447e-be74-3cf04b31333f", - "width": 210, - "x": 4340, - "y": 4970, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "094f95c3-c4f3-478e-ba31-18e58f0dadf9", - "width": 70, - "x": 4130, - "y": 4970, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1050, - "layer": "", - "name": "Wooden_floor_dark", - "persistentUuid": "1244bb01-8e57-456a-bdd0-09825107aa88", - "width": 700, - "x": 3850, - "y": 3990, - "zOrder": -1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1f8dfcb3-a796-46b6-89ed-69313eb1bc92", - "width": 70, - "x": 3780, - "y": 3920, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "9f3f116a-6553-4300-9969-94337083437d", - "width": 70, - "x": 3780, - "y": 3990, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "4c5875a2-766f-47d4-8d12-fa5c69a5d9cc", - "width": 70, - "x": 3780, - "y": 4270, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "42421c7d-8b5d-4bde-a5e8-3a8cfc3b7067", - "width": 210, - "x": 3570, - "y": 3920, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 770, - "layer": "", - "name": "Wooden_floor_dark", - "persistentUuid": "1bd444e0-eb31-4a23-b5c0-b00f99896d71", - "width": 280, - "x": 3570, - "y": 4270, - "zOrder": -1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "Grey_floor_tiled", - "persistentUuid": "36d7e9c5-bc86-4956-8f37-29260b65998e", - "width": 210, - "x": 3570, - "y": 3990, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "5f442d12-3ab2-4f1f-99e5-8e9738147fd2", - "width": 70, - "x": 3710, - "y": 3990, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "1b90183f-827f-4655-a4f2-f44abd56ed68", - "width": 70, - "x": 3710, - "y": 4060, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 0 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "92ea64dd-bada-4203-8e5e-0a2989c9f036", - "width": 70, - "x": 3710, - "y": 4130, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "kitchen", - "persistentUuid": "306758df-9e19-4abc-9734-76e1e916b5a1", - "width": 70, - "x": 3710, - "y": 4200, - "zOrder": 50, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "004a16ec-3e30-41cb-9340-26e253d52ca9", - "width": 70, - "x": 4480, - "y": 4130, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "eda6f1ea-a7a0-4b11-b33f-f28f9fcbcb6d", - "width": 70, - "x": 4480, - "y": 4060, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 2 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "bb76653a-a594-4373-8215-712f6a6de9db", - "width": 70, - "x": 4410, - "y": 4130, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a6a34250-ac6e-4049-8dd7-68ca5aea4ac4", - "width": 70, - "x": 4410, - "y": 4060, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "bf7c007e-1635-4be3-b2e9-f083275c56fe", - "width": 70, - "x": 4340, - "y": 4060, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "dbafdb67-90cd-4088-9208-f42f2dd98405", - "width": 70, - "x": 4340, - "y": 4130, - "zOrder": 6, - "numberProperties": [ - { - "name": "animation", - "value": 3 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "2db49129-7c4e-4d00-9b1b-c32129ed14bc", - "width": 70, - "x": 4550, - "y": 4270, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 280, - "layer": "", - "name": "walls", - "persistentUuid": "d5027d02-86fe-4bc2-aa88-222e615583a6", - "width": 70, - "x": 4550, - "y": 3990, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "09cdea9d-fb82-4645-950d-5734e4c516ba", - "width": 420, - "x": 4130, - "y": 4270, - "zOrder": 293, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "5cdb15ec-5c3d-4eea-85bc-4833743fb2fb", - "width": 70, - "x": 4060, - "y": 4270, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "37e1021f-7e86-4c1f-af3f-1a7137d2975e", - "width": 0, - "x": 4480, - "y": 4200, - "zOrder": 270, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "31cdca98-c4f5-4580-8b54-31526fcf933a", - "width": 70, - "x": 4480, - "y": 3990, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "df5cfc5b-a237-46b6-92d6-0432d77fd599", - "width": 70, - "x": 4480, - "y": 4200, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "flower", - "persistentUuid": "76ce7776-c5c9-4231-b0d8-25d30819fc0a", - "width": 0, - "x": 4480, - "y": 3990, - "zOrder": 270, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "74585e19-1c5e-41bf-b187-1b740d54e193", - "width": 70, - "x": 4130, - "y": 3990, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 40, - "customSize": true, - "height": 50, - "layer": "", - "name": "furniture", - "persistentUuid": "0f987118-7555-40ba-b8a1-a64002251048", - "width": 50, - "x": 4060, - "y": 3990, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 19 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "7ea298d0-e3d7-4853-8aed-e75fd5601aeb", - "width": 70, - "x": 4338, - "y": 4396, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 140, - "layer": "", - "name": "furniture", - "persistentUuid": "81e1ee22-020e-4a2f-a446-9f1dd532ad18", - "width": 140, - "x": 4301, - "y": 4454, - "zOrder": 35, - "numberProperties": [ - { - "name": "animation", - "value": 21 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a9134440-287d-4e46-808e-c0b15220da4f", - "width": 70, - "x": 4264, - "y": 4524, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c154072f-ffc8-489e-8a38-6e68c34ccb31", - "width": 70, - "x": 4264, - "y": 4454, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "f5c066b6-8549-4c0c-b3f2-4e73c5dd88d3", - "width": 70, - "x": 4409, - "y": 4454, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "1d09867b-3653-4f33-8103-ba382803138c", - "width": 70, - "x": 4409, - "y": 4524, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "41ffec36-f8f8-4a18-9769-a4485a15be61", - "width": 70, - "x": 4335, - "y": 4580, - "zOrder": 21, - "numberProperties": [ - { - "name": "animation", - "value": 22 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "1df3351a-4ac7-43e4-8e07-01388d376150", - "width": 70, - "x": 4550, - "y": 4690, - "zOrder": 292, - "numberProperties": [ - { - "name": "animation", - "value": 13 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7f02221b-0b2c-4562-96a5-6f10d91e30ad", - "width": 210, - "x": 4340, - "y": 4690, - "zOrder": 293, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "429c1978-6f9d-43e3-a043-f69e236c2891", - "width": 70, - "x": 4130, - "y": 4690, - "zOrder": 289, - "numberProperties": [ - { - "name": "animation", - "value": 8 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 210, - "layer": "", - "name": "walls", - "persistentUuid": "e5b9bfe2-10ed-4560-bd92-ce9089635fb9", - "width": 70, - "x": 4550, - "y": 4760, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "2ad80e72-3fe2-4da2-9a8f-dbbb32a1f2ac", - "width": 70, - "x": 3640, - "y": 4620, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 180, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "c9d74ef6-ec2f-469e-a601-422ff70a6235", - "width": 70, - "x": 3710, - "y": 4620, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "81a7cb43-d246-47be-84a5-80df53db9165", - "width": 70, - "x": 3780, - "y": 4830, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 16 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": -90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a93df84f-3d65-42e4-b0c4-a97f66938028", - "width": 70, - "x": 3780, - "y": 4760, - "zOrder": 16, - "numberProperties": [ - { - "name": "animation", - "value": 18 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "42ced599-4ff0-4627-b3e7-f66aaf447c07", - "width": 70, - "x": 3570, - "y": 4796, - "zOrder": 30, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "furniture", - "persistentUuid": "a30bfb2f-6803-462d-b1a3-fea395b67fff", - "width": 70, - "x": 3570, - "y": 4796, - "zOrder": 22, - "numberProperties": [ - { - "name": "animation", - "value": 14 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "6901ae4b-af3f-4257-93e4-5ae73ee27f14", - "width": 70, - "x": 4410, - "y": 4760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "57ee38c8-975d-4f1a-a8ba-76c303faba6a", - "width": 70, - "x": 4480, - "y": 4760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "728854d1-25a5-433d-a0b6-982ab3ce0a38", - "width": 70, - "x": 4410, - "y": 4830, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "47435270-f0d4-457a-b45a-081222cd1e56", - "width": 70, - "x": 4480, - "y": 4830, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "cc208698-f85a-4ca9-be67-aae858ce9129", - "width": 70, - "x": 4410, - "y": 4900, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "10757183-b9fb-4e22-809b-f3e9c4b54e72", - "width": 70, - "x": 4480, - "y": 4900, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "0cef3551-65b4-4f70-818b-bb43fe57c800", - "width": 70, - "x": 4340, - "y": 4760, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "86063643-7a05-4bfe-aa61-2fbf6de7af47", - "width": 70, - "x": 4340, - "y": 4830, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "7b369c33-5148-4594-b2cc-1eba1f885e90", - "width": 70, - "x": 4340, - "y": 4900, - "zOrder": 4, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "7ca90a6e-bca8-483a-99a2-68c3ce1e501d", - "width": 70, - "x": 4270, - "y": 4690, - "zOrder": 291, - "numberProperties": [ - { - "name": "animation", - "value": 12 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "d6cbadc2-fa24-49df-b278-d7b2241e9bab", - "width": 70, - "x": 4200, - "y": 4690, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "fcf29a18-3267-46e8-b869-42b5f8a8a032", - "width": 70, - "x": 4270, - "y": 4970, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 90, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "9f260004-df25-41a7-9cef-8b23abfb616e", - "width": 70, - "x": 4270, - "y": 4760, - "zOrder": 14, - "numberProperties": [ - { - "name": "animation", - "value": 7 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "20437a9b-fdf0-4102-bf22-7237a08f1adf", - "width": 70, - "x": 4270, - "y": 4900, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "e36883c5-0e57-46dd-a23c-b123b8e954fc", - "width": 70, - "x": 4200, - "y": 4970, - "zOrder": 284, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "70beba79-257b-47d4-972a-77edf2ac8037", - "width": 70, - "x": 3850, - "y": 4970, - "zOrder": 247, - "numberProperties": [ - { - "name": "animation", - "value": 6 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 350, - "layer": "", - "name": "walls", - "persistentUuid": "7931d5b2-315c-4cb3-8620-08e7ae1a85d0", - "width": 70, - "x": 3850, - "y": 4620, - "zOrder": 285, - "numberProperties": [ - { - "name": "animation", - "value": 4 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "walls", - "persistentUuid": "ecfadca2-013d-4a63-a6ef-7d476ee9c684", - "width": 70, - "x": 3850, - "y": 4550, - "zOrder": 295, - "numberProperties": [ - { - "name": "animation", - "value": 1 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 70, - "layer": "", - "name": "floor", - "persistentUuid": "5d5358c6-1327-4c91-976c-d9e68a30eac4", - "width": 70, - "x": 1050, - "y": 1890, - "zOrder": -12, - "numberProperties": [ - { - "name": "animation", - "value": 5 - } - ], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 1890, - "layer": "Fade", - "name": "game_transition", - "persistentUuid": "207d60f3-0f67-4356-baee-09aac503e6cb", - "width": 3150, - "x": 0, - "y": 0, - "zOrder": 296, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "walls", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\walls\\tile_234.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 63, - "y": 1 - }, - { - "x": 63, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\walls\\tile_260.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 1, - "y": 32 - }, - { - "x": 63, - "y": 33 - }, - { - "x": 61, - "y": 62 - }, - { - "x": 1, - "y": 63 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_145.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_118.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_147.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_120.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_122.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\walls\\tile_233.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 1 - }, - { - "x": 32, - "y": 0 - }, - { - "x": 30, - "y": 61 - }, - { - "x": 2, - "y": 62 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\walls\\tile_261.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 31, - "y": 0 - }, - { - "x": 63, - "y": 3 - }, - { - "x": 62, - "y": 62 - }, - { - "x": 32, - "y": 61 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_119.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_146.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_148.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_121.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_149.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "kitchen", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\kitchen\\tile_321.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\kitchen\\tile_297.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\kitchen\\tile_323.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\kitchen\\tile_270.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 28 - }, - { - "x": 62, - "y": 28 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 0, - "y": 63 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\kitchen\\tile_269.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\kitchen\\tile_322.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "furniture", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_102.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\bed\\tile_21.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 46 - }, - { - "x": 63, - "y": 44 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 2, - "y": 63 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_104.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\bed\\tile_49.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 10 - }, - { - "x": 63, - "y": 9 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 2, - "y": 62 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_103.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_76.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_77.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\bed\\tile_50.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 9 - }, - { - "x": 63, - "y": 10 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 0, - "y": 63 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\chair\\tile_501.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 5, - "y": 10 - }, - { - "x": 62, - "y": 10 - }, - { - "x": 63, - "y": 52 - }, - { - "x": 6, - "y": 54 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\chair\\tile_502.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 1, - "y": 13 - }, - { - "x": 62, - "y": 12 - }, - { - "x": 62, - "y": 53 - }, - { - "x": 0, - "y": 52 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\chair\\tile_504.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 1, - "y": 12 - }, - { - "x": 58, - "y": 11 - }, - { - "x": 58, - "y": 56 - }, - { - "x": 1, - "y": 55 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\chair\\tile_505.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 7, - "y": 13 - }, - { - "x": 56, - "y": 13 - }, - { - "x": 57, - "y": 53 - }, - { - "x": 5, - "y": 54 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\electronic\\tile_534.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\table\\tile_483.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 62, - "y": 63 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\carpet\\tile_484.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\electronic\\tile_535.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 6, - "y": 12 - }, - { - "x": 59, - "y": 10 - }, - { - "x": 59, - "y": 56 - }, - { - "x": 6, - "y": 54 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\chair\\tile_474.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\chair\\tile_475.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\chair\\tile_476.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\chair\\tile_477.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\table\\tile_507.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\table\\tile_510.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\Interior\\furniture\\chair\\tile_529.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 53, - "y": 51 - }, - { - "x": 10, - "y": 49 - } - ] - ] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_48.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_52.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_53.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_79.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_80.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_106.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\furniture\\bed\\tile_107.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Niko", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_stand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_stand.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_hold.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Single_pistol.png", - "points": [ - { - "name": "shoot", - "x": 46, - "y": 36 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Machine_gun_hold.png", - "points": [ - { - "name": "shoot", - "x": 56, - "y": 27 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_flametrhower.png", - "points": [ - { - "name": "f_t_collision", - "x": 47.5, - "y": 31 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_sniper.png", - "points": [ - { - "name": "shoot", - "x": 61, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "Gun5-loaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Rocket_launcher_loaded.png", - "points": [ - { - "name": "shoot", - "x": 52, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "mele1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_tazer.png", - "points": [ - { - "name": "hitbox", - "x": 45, - "y": 33 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "phone", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_phone_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim1", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "swim2", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_4.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_7.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_6.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\manBlue_swim_5.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "gun5 unloaded", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\Rocket_launcher_unloaded.png", - "points": [ - { - "name": "shoot", - "x": 52, - "y": 28 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "knife ", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\knife_a1.png", - "points": [ - { - "name": "slash", - "x": 51, - "y": 30 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 17, - "y": 21 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 30, - "emitterForceMin": 23, - "flow": 12, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 300000, - "name": "flame_thrower_fire_secondary", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "floor", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\floor\\tile_11.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\floor\\tile_46.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_441.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_440.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\walls\\tile_466.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\floor\\tile_12.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\floor\\tile_45.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\Interior\\floor\\tile_42.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "energy", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\energy.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Placeholder", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 500, - "deceleration": 800, - "ignoreDefaultControls": true, - "maxSpeed": 200, - "rotateObject": true - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.3, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\placeholder.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room6out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room5out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room4out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room3out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room2out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun3", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\flamethrower.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "room1out", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\door.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flame_thrower_fire_collision", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\flame thrower fire collision.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 16 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 16 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Single_pistol_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 11 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Machine_gun_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun4", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\sniper.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 10 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 10 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "gun5", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 7 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 7 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\mele\\tazer.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 4 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 4 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Wheel_info", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Wheel using: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "additive": true, - "assetStoreId": "", - "destroyWhenNoParticles": false, - "emitterAngleA": 0, - "emitterAngleB": 20, - "emitterForceMax": 300, - "emitterForceMin": 230, - "flow": 120, - "jumpForwardInTimeOnCreation": 0, - "maxParticleNb": 3000000, - "name": "flame_thrower_fire", - "particleAlpha1": 200, - "particleAlpha2": 0, - "particleAlphaRandomness1": 0, - "particleAlphaRandomness2": 0, - "particleAngle1": 0, - "particleAngle2": 0, - "particleAngleRandomness1": 0, - "particleAngleRandomness2": 0, - "particleBlue1": 168, - "particleBlue2": 8, - "particleGravityX": 0, - "particleGravityY": 0, - "particleGreen1": 245, - "particleGreen2": 43, - "particleLifeTimeMax": 0.5, - "particleLifeTimeMin": 0.20000000298023224, - "particleRed1": 255, - "particleRed2": 214, - "particleSize1": 40, - "particleSize2": 100, - "particleSizeRandomness1": 0, - "particleSizeRandomness2": 0, - "rendererParam1": 3, - "rendererParam2": 1, - "rendererType": "Quad", - "tank": -1, - "textureParticleName": "assets\\particles\\FireParticle.png", - "type": "ParticleSystem::ParticleEmitter", - "zoneRadius": 5, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "bullet", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "name": "bullet", - "type": "string", - "value": "0" - } - ], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "bullet1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [ - [ - { - "x": 3, - "y": 3 - }, - { - "x": 13, - "y": 3 - }, - { - "x": 13, - "y": 13 - }, - { - "x": 3, - "y": 13 - } - ] - ] - } - ] - } - ] - }, - { - "name": "bullet2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "bullet3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "ammo", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "ammo1", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo2", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo3", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 3 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 3 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "ammo4", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\weapons\\bullet\\Rocket_ammo.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "flower", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\foliage\\flower\\tile_240.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 16, - "y": 16 - }, - { - "x": 48, - "y": 16 - }, - { - "x": 48, - "y": 48 - }, - { - "x": 16, - "y": 48 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_wifi", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 8 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\wifi_3.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 11 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "phone_battery", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_battery.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "crossair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 16, - "y": 15.5 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Phone", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_lock.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_unlock.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\phone_apps.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.5, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\character\\Player\\phone\\pointer_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "phone_time", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "string": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "content": { - "bold": true, - "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": "00:00", - "font": "", - "textAlignment": "", - "characterSize": 14, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "reloading", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "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": "reloading", - "font": "", - "textAlignment": "", - "characterSize": 50, - "color": "112;112;112" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "AmmoText", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 156, - "g": 156, - "r": 156 - }, - "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": "Ammo: [number]", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "156;156;156" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "tazer_hitbox", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": true, - "timeBetweenFrames": 0.1429, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - }, - { - "hasCustomCollisionMask": false, - "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 2.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 2.5 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "Slash1", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\slash.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 31.77560043334961, - "y": 12.954500198364258 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 31.320999145507812, - "y": 12.954500198364258 - }, - "customCollisionMask": [ - [ - { - "x": 15.028800010681152, - "y": 3.6842100620269775 - }, - { - "x": 34.76559829711914, - "y": 0 - }, - { - "x": 58.18669891357422, - "y": 15 - }, - { - "x": 33.976200103759766, - "y": 4.473680019378662 - }, - { - "x": 19.765600204467773, - "y": 6.8421101570129395 - }, - { - "x": 3.9761500358581543, - "y": 18.157899856567383 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "mele2", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets\\weapons\\mele\\knife.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 14.640199661254883, - "y": 10.606100082397461 - }, - { - "x": 22, - "y": 22 - }, - { - "x": 10.09469985961914, - "y": 15.15149974822998 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "roomIndic", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [], - "string": "1", - "font": "", - "textAlignment": "", - "characterSize": 50, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "content": { - "bold": true, - "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": "1", - "font": "", - "textAlignment": "", - "characterSize": 50, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "height": 70, - "name": "Wooden_floor", - "texture": "assets/Interior/floor/tile_100.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "Wooden_floor_dark", - "texture": "assets/Interior/floor/tile_46.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "assetStoreId": "", - "height": 70, - "name": "Grey_floor_tiled", - "texture": "assets/Interior/floor/tile_11.png", - "type": "TiledSpriteObject::TiledSprite", - "width": 70, - "variables": [], - "effects": [], - "behaviors": [] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "walls" - }, - { - "objectName": "kitchen" - }, - { - "objectName": "furniture" - }, - { - "objectName": "Niko" - }, - { - "objectName": "flame_thrower_fire_secondary" - }, - { - "objectName": "floor" - }, - { - "objectName": "energy" - }, - { - "objectName": "Placeholder" - }, - { - "objectName": "room6out" - }, - { - "objectName": "room5out" - }, - { - "objectName": "room4out" - }, - { - "objectName": "room3out" - }, - { - "objectName": "room2out" - }, - { - "objectName": "gun3" - }, - { - "objectName": "room1out" - }, - { - "objectName": "flame_thrower_fire_collision" - }, - { - "objectName": "gun1" - }, - { - "objectName": "gun2" - }, - { - "objectName": "gun4" - }, - { - "objectName": "gun5" - }, - { - "objectName": "mele1" - }, - { - "objectName": "Wheel_info" - }, - { - "objectName": "flame_thrower_fire" - }, - { - "objectName": "bullet" - }, - { - "objectName": "ammo" - }, - { - "objectName": "flower" - }, - { - "objectName": "phone_wifi" - }, - { - "objectName": "phone_battery" - }, - { - "objectName": "crossair" - }, - { - "objectName": "Phone" - }, - { - "objectName": "phone_time" - }, - { - "objectName": "reloading" - }, - { - "objectName": "AmmoText" - }, - { - "objectName": "tazer_hitbox" - }, - { - "objectName": "Slash1" - }, - { - "objectName": "mele2" - }, - { - "objectName": "roomIndic" - }, - { - "objectName": "Wooden_floor" - }, - { - "objectName": "Wooden_floor_dark" - }, - { - "objectName": "Grey_floor_tiled" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "MettreXY" - }, - "parameters": [ - "Placeholder", - "=", - "RoomManager::getX(GlobalVariable(currentRoomID))", - "=", - "RoomManager::getY(GlobalVariable(currentRoomID))" - ] - }, - { - "type": { - "value": "Cache" - }, - "parameters": [ - "exit_rooms" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "SystemInfo::IsPreview" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "i", - "=", - "1" - ] - } - ], - "events": [ - { - "infiniteLoopWarning": true, - "type": "BuiltinCommonInstructions::While", - "whileConditions": [ - { - "type": { - "inverted": true, - "value": "VarScene" - }, - "parameters": [ - "i", - "=", - "RoomManager::roomNumbers() + 1" - ] - } - ], - "conditions": [], - "actions": [ - { - "type": { - "value": "Create" - }, - "parameters": [ - "", - "roomIndic", - "RoomManager::getX(Variable(iteration))", - "RoomManager::getY(Variable(iteration))", - "" - ] - }, - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "roomIndic", - "=", - "ToString(Variable(iteration))" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "i", - "+", - "1" - ] - } - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Game" - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Room Teleportation", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "CollisionNP" - }, - "parameters": [ - "Placeholder", - "exit_rooms", - "", - "", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "PopScene" - }, - "parameters": [ - "" - ] - } - ] - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "GUI", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - }, - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "Fade", - "renderingType": "", - "visibility": true, - "cameras": [], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "Text", - "type": "TextContainerCapability::TextContainerBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/settings.json b/src/layouts/settings.json deleted file mode 100644 index 3684e57ea..000000000 --- a/src/layouts/settings.json +++ /dev/null @@ -1,2321 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "Settings", - "name": "Settings", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 375, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 0.5537499999999994, - "windowMask": false - }, - "objectsGroups": [], - "variables": [ - { - "name": "ShadowSettingChanged", - "type": "string", - "value": "0" - }, - { - "name": "SoundSettingChanged", - "type": "string", - "value": "0" - }, - { - "name": "FullScreen", - "type": "string", - "value": "0" - }, - { - "name": "volume", - "type": "string", - "value": "0" - } - ], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "settingshadows", - "persistentUuid": "b7c46744-17e1-4a0a-b23c-3c5db950a653", - "width": 0, - "x": 281, - "y": 200, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "shadows", - "persistentUuid": "2f0c55c0-2527-424d-8b8b-2f598f7ef8bd", - "width": 0, - "x": 314, - "y": 212, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Settings", - "persistentUuid": "9c494e04-e63b-48ab-8426-9c269158e3ff", - "width": 0, - "x": 637, - "y": 24, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "name": "shadowtemp", - "type": "string", - "value": "on" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "settingsound", - "persistentUuid": "fd41c3be-ca83-43ce-8d0d-e106e280d57b", - "width": 0, - "x": 657, - "y": 200, - "zOrder": 4, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "sound", - "persistentUuid": "27821ca7-97b5-4e56-ba34-8af2a0d472fe", - "width": 0, - "x": 705, - "y": 212, - "zOrder": 5, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "settingfullscreen", - "persistentUuid": "4564917a-f54a-41f2-802e-f3b7216f12d9", - "width": 0, - "x": 1031, - "y": 200, - "zOrder": 6, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Fullscreen", - "persistentUuid": "6a9fbf37-8f25-457d-82e7-559d6e40ab84", - "width": 0, - "x": 1057, - "y": 212, - "zOrder": 7, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Volume", - "persistentUuid": "2f308064-f62d-4b6c-9a8e-49efe1227a12", - "width": 0, - "x": 646, - "y": 318, - "zOrder": 8, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "volplus", - "persistentUuid": "756c5766-bbaf-4156-8c94-8118592ee0c0", - "width": 0, - "x": 999, - "y": 429, - "zOrder": 9, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "volminus", - "persistentUuid": "c7e8c13b-355e-4787-a6c2-bc0616081700", - "width": 0, - "x": 488, - "y": 425, - "zOrder": 10, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "volumevolume", - "persistentUuid": "be181311-9bf3-4731-9eb3-7fb61cbd7a33", - "width": 0, - "x": 749, - "y": 434, - "zOrder": 11, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "plus", - "persistentUuid": "33b72434-d279-4733-a0f5-1171aee438ed", - "width": 0, - "x": 1005, - "y": 469, - "zOrder": 12, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "minus", - "persistentUuid": "fbf3ff87-5be7-4544-828d-b730a8241d92", - "width": 0, - "x": 499, - "y": 469, - "zOrder": 13, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": true, - "height": 100, - "layer": "", - "name": "back", - "persistentUuid": "af73f201-b11d-46b7-9c1f-9b12bd235ed3", - "width": 101, - "x": 14, - "y": 582, - "zOrder": 14, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "goback", - "persistentUuid": "dcd2bff6-8d1a-4203-8507-cecd3ed38506", - "width": 0, - "x": 53, - "y": 611, - "zOrder": 15, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "crossair", - "persistentUuid": "4b0e12d9-8c15-47fc-98d6-445ed0d13f1b", - "width": 0, - "x": 902, - "y": 168, - "zOrder": 16, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "settingshadows", - "persistentUuid": "7dd87d04-9148-4d80-949c-fa9a62f4e41d", - "width": 0, - "x": 281, - "y": 200, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "settingshadows", - "persistentUuid": "0c763b1e-e126-4c31-9c9d-942f0f25124c", - "width": 0, - "x": 281, - "y": 200, - "zOrder": 1, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "settingshadows", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "shadows", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "Shadows: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Shadows: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "Volume", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "Volume", - "font": "", - "textAlignment": "", - "characterSize": 59, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "Volume", - "font": "", - "textAlignment": "", - "characterSize": 59, - "color": "0;0;0" - } - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "Settings", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "Settings", - "font": "", - "textAlignment": "", - "characterSize": 59, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "Settings", - "font": "", - "textAlignment": "", - "characterSize": 59, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "settingsound", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "sound", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "Sound: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Sound: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "crossair", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crossair_1.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "crosshair010", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\crossair\\crosshair_2.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "settingfullscreen", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonLong_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "Fullscreen", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "Fullscreen: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "Fullscreen: On", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "volplus", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\arrowBeige_right.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\arrowBeige_right.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "volminus", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\arrowBeige_left.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\arrowBeige_left.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": false, - "assetStoreId": "", - "name": "back", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton", - "ANIMATION_UP": "up", - "ANIMATION_OVER": "over", - "ANIMATION_DOWN": "down", - "ANIMATION_DISABLED": "disabled", - "ENABLED": true - } - ], - "animations": [ - { - "name": "up", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonSquare_beige.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - }, - { - "name": "down", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": false, - "image": "assets\\UI\\buttons\\beige\\buttonSquare_beige_pressed.png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "volumevolume", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 255, - "g": 255, - "r": 255 - }, - "content": { - "bold": true, - "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": "", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "255;255;255" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "minus", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "-", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "-", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "assetStoreId": "", - "bold": false, - "italic": false, - "name": "plus", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 3, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 3 - } - ], - "string": "+", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "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": "+", - "font": "", - "textAlignment": "", - "characterSize": 20, - "color": "0;0;0" - } - }, - { - "assetStoreId": "", - "bold": true, - "italic": false, - "name": "goback", - "smoothed": true, - "type": "TextObject::Text", - "underlined": false, - "variables": [], - "effects": [], - "behaviors": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior", - "bottomEdgeAnchor": 0, - "leftEdgeAnchor": 1, - "relativeToOriginalWindowSize": true, - "rightEdgeAnchor": 0, - "topEdgeAnchor": 2 - } - ], - "string": "<", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": { - "b": 0, - "g": 0, - "r": 0 - }, - "content": { - "bold": true, - "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": "<", - "font": "", - "textAlignment": "", - "characterSize": 30, - "color": "0;0;0" - } - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "settingshadows" - }, - { - "objectName": "shadows" - }, - { - "objectName": "Volume" - }, - { - "objectName": "Settings" - }, - { - "objectName": "settingsound" - }, - { - "objectName": "sound" - }, - { - "objectName": "crossair" - }, - { - "objectName": "settingfullscreen" - }, - { - "objectName": "Fullscreen" - }, - { - "objectName": "volplus" - }, - { - "objectName": "volminus" - }, - { - "objectName": "back" - }, - { - "objectName": "volumevolume" - }, - { - "objectName": "minus" - }, - { - "objectName": "plus" - }, - { - "objectName": "goback" - } - ] - }, - "events": [ - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "General", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "volumevolume", - "=", - "GlobalVariableString(Volume)" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobal" - }, - "parameters": [ - "Volume", - "=", - "100" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModGlobalVolume" - }, - "parameters": [ - "", - "=", - "100" - ] - }, - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "volumevolume", - "=", - "\"100\"" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Volume", - "=", - "100" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobal" - }, - "parameters": [ - "Volume", - ">", - "100" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModGlobalVolume" - }, - "parameters": [ - "", - "=", - "100" - ] - }, - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "volumevolume", - "=", - "\"100\"" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Volume", - "=", - "100" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "back", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "sceneLoad", - "=", - "\"Menu\"" - ] - }, - { - "type": { - "value": "Scene" - }, - "parameters": [ - "", - "\"Loading\"", - "" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Shadows", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "settingshadows", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "ShadowSettingChanged", - "=", - "0" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "shadowsetting", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "ShadowSettingChanged", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "shadows", - "=", - "\"Shadows: On\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "shadowsetting", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "ShadowSettingChanged", - "=", - "1" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "shadowsetting", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "ShadowSettingChanged", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "shadows", - "=", - "\"Shadows: Off\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "shadowsetting", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "ShadowSettingChanged", - "=", - "1" - ] - } - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Sound", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "settingsound", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "SoundSettingChanged", - "=", - "0" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "soundsetting", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "SoundSettingChanged", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "sound", - "=", - "\"Sound: On\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "soundsetting", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "SoundSettingChanged", - "=", - "1" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "soundsetting", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "SoundSettingChanged", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "sound", - "=", - "\"Sound: Off\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "soundsetting", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "SoundSettingChanged", - "=", - "1" - ] - } - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "VolumePlus", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "volplus", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModGlobalVolume" - }, - "parameters": [ - "", - "=", - "GlobalVariable(Volume)" - ] - }, - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "volumevolume", - "=", - "GlobalVariableString(Volume)" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Volume", - "+", - "1" - ] - }, - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "volplus", - "\"down\"" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "VolumeMinus", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "volminus", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModGlobalVolume" - }, - "parameters": [ - "", - "=", - "GlobalVariable(Volume)" - ] - }, - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "volumevolume", - "=", - "GlobalVariableString(Volume)" - ] - }, - { - "type": { - "value": "ModVarGlobal" - }, - "parameters": [ - "Volume", - "-", - "1" - ] - }, - { - "type": { - "value": "SetAnimationName" - }, - "parameters": [ - "volplus", - "\"down\"" - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Fullscreen", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "Button::InteractiveButton::isClicked" - }, - "parameters": [ - "settingfullscreen", - "InteractiveButton", - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ModVarSceneTxt" - }, - "parameters": [ - "FullScreen", - "=", - "0" - ] - } - ], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "fullscreen", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "FullScreen", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "Fullscreen", - "=", - "\"Fullscreen: On\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "fullscreen", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "FullScreen", - "=", - "1" - ] - }, - { - "type": { - "value": "SetFullScreen" - }, - "parameters": [ - "", - "yes", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarGlobalTxt" - }, - "parameters": [ - "fullscreen", - "=", - "\"toggled\"" - ] - }, - { - "type": { - "value": "VarScene" - }, - "parameters": [ - "FullScreen", - "=", - "0" - ] - } - ], - "actions": [ - { - "type": { - "value": "TextObject::String" - }, - "parameters": [ - "Fullscreen", - "=", - "\"Fullscreen: Off\"" - ] - }, - { - "type": { - "value": "ModVarGlobalTxt" - }, - "parameters": [ - "fullscreen", - "=", - "\"untoggled\"" - ] - }, - { - "type": { - "value": "ModVarScene" - }, - "parameters": [ - "FullScreen", - "=", - "1" - ] - }, - { - "type": { - "value": "SetFullScreen" - }, - "parameters": [ - "", - "no", - "" - ] - } - ] - } - ] - } - ], - "parameters": [] - }, - { - "colorB": 228, - "colorG": 176, - "colorR": 74, - "creationTime": 0, - "name": "Links", - "source": "", - "type": "BuiltinCommonInstructions::Group", - "events": [ - { - "type": "BuiltinCommonInstructions::Link", - "include": { - "includeConfig": 0 - }, - "target": "Global" - } - ], - "parameters": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 0.1, - "cameraType": "perspective", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [] - } - ], - "behaviorsSharedData": [ - { - "name": "Anchor", - "type": "AnchorBehavior::AnchorBehavior" - }, - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "InteractiveButton", - "type": "Button::InteractiveButton" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - } - ] -} \ No newline at end of file diff --git a/src/layouts/test.json b/src/layouts/test.json deleted file mode 100644 index 218e054fa..000000000 --- a/src/layouts/test.json +++ /dev/null @@ -1,904 +0,0 @@ -{ - "b": 209, - "disableInputWhenNotFocused": true, - "mangledName": "test", - "name": "test", - "r": 209, - "standardSortMethod": true, - "stopSoundsOnStartup": true, - "title": "", - "v": 209, - "uiSettings": { - "grid": false, - "gridType": "rectangular", - "gridWidth": 32, - "gridHeight": 32, - "gridOffsetX": 0, - "gridOffsetY": 0, - "gridColor": 10401023, - "gridAlpha": 0.8, - "snap": false, - "zoomFactor": 5.253273170732179, - "windowMask": false - }, - "objectsGroups": [], - "variables": [], - "instances": [ - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "Player", - "persistentUuid": "01d7a4c9-1cfb-4e03-8357-7f4723b68f8f", - "width": 0, - "x": 365, - "y": 287, - "zOrder": 7, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [] - }, - { - "angle": 10, - "customSize": false, - "height": 0, - "layer": "", - "name": "leg", - "persistentUuid": "ed0c54c8-fb42-41cb-9763-be3dc9682bc4", - "width": 0, - "x": 394, - "y": 309, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "hand", - "persistentUuid": "7669219d-a81b-41bd-9ceb-e5ea7505c70a", - "width": 0, - "x": 376, - "y": 326, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "L" - } - ] - }, - { - "angle": 0, - "customSize": false, - "height": 0, - "layer": "", - "name": "hand", - "persistentUuid": "5eaaad51-0429-40fb-8c8d-f0c81c9d7db7", - "width": 0, - "x": 376, - "y": 278, - "zOrder": 3, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - }, - { - "angle": 350, - "customSize": false, - "height": 0, - "layer": "", - "name": "leg", - "persistentUuid": "183c990e-409b-4774-bcf2-ab2adfab8691", - "width": 0, - "x": 394, - "y": 292, - "zOrder": 2, - "numberProperties": [], - "stringProperties": [], - "initialVariables": [ - { - "folded": true, - "name": "angle", - "type": "number", - "value": 180 - }, - { - "folded": true, - "name": "type", - "type": "string", - "value": "R" - } - ] - } - ], - "objects": [ - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "Player", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "Animation", - "type": "string", - "value": "" - }, - { - "name": "Movement", - "type": "structure", - "children": [ - { - "folded": true, - "name": "handTweenDuration", - "type": "number", - "value": 0.5 - }, - { - "folded": true, - "name": "legTweenDuration", - "type": "number", - "value": 0.5 - } - ] - }, - { - "name": "Customisation", - "type": "structure", - "children": [ - { - "folded": true, - "name": "body", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "hand", - "type": "number", - "value": 0 - }, - { - "folded": true, - "name": "leg", - "type": "number", - "value": 0 - } - ] - } - ], - "effects": [], - "behaviors": [ - { - "acceleration": 400, - "allowDiagonals": true, - "angleOffset": 0, - "angularMaxSpeed": 400, - "customIsometryAngle": 30, - "deceleration": 800, - "ignoreDefaultControls": false, - "maxSpeed": 200, - "movementAngleOffset": 0, - "name": "TopDownMovement", - "rotateObject": true, - "type": "TopDownMovementBehavior::TopDownMovementBehavior", - "viewpoint": "TopDown" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (1).png", - "points": [ - { - "name": "pointR", - "x": 11, - "y": 24.5 - }, - { - "name": "pointL", - "x": 11, - "y": 6.5 - } - ], - "originPoint": { - "name": "origine", - "x": 0, - "y": 0 - }, - "centerPoint": { - "automatic": true, - "name": "centre", - "x": 0, - "y": 0 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 21, - "y": 0 - }, - { - "x": 21, - "y": 31 - }, - { - "x": 0, - "y": 31 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "leg", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (13).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 18, - "y": 0 - }, - { - "x": 18, - "y": 13 - }, - { - "x": 0, - "y": 13 - } - ] - ] - } - ] - } - ] - } - ] - }, - { - "assetStoreId": "", - "height": 32, - "name": "NewTiledSprite", - "texture": "", - "type": "TiledSpriteObject::TiledSprite", - "width": 32, - "variables": [], - "effects": [], - "behaviors": [] - }, - { - "adaptCollisionMaskAutomatically": true, - "assetStoreId": "", - "name": "hand", - "type": "Sprite", - "updateIfNotVisible": false, - "variables": [ - { - "folded": true, - "name": "type", - "type": "string", - "value": "" - }, - { - "folded": true, - "name": "angle", - "type": "number", - "value": 0 - } - ], - "effects": [], - "behaviors": [ - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ], - "animations": [ - { - "name": "", - "useMultipleDirections": false, - "directions": [ - { - "looping": false, - "timeBetweenFrames": 0.08, - "sprites": [ - { - "hasCustomCollisionMask": true, - "image": "assets/character/test/characterBlue (11).png", - "points": [], - "originPoint": { - "name": "origine", - "x": 0, - "y": 6.5 - }, - "centerPoint": { - "automatic": false, - "name": "centre", - "x": 0, - "y": 6.5 - }, - "customCollisionMask": [ - [ - { - "x": 0, - "y": 0 - }, - { - "x": 18, - "y": 0 - }, - { - "x": 18, - "y": 13 - }, - { - "x": 0, - "y": 13 - } - ] - ] - } - ] - } - ] - } - ] - } - ], - "objectsFolderStructure": { - "folderName": "__ROOT", - "children": [ - { - "objectName": "Player" - }, - { - "objectName": "leg" - }, - { - "objectName": "NewTiledSprite" - }, - { - "objectName": "hand" - } - ] - }, - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "MettreXY" - }, - "parameters": [ - "hand", - "=", - "Player.PointX(\"point\" + hand.type)", - "=", - "Player.PointY(\"point\" + hand.type)" - ] - }, - { - "type": { - "value": "MettreXY" - }, - "parameters": [ - "leg", - "=", - "Player.PointX(\"point\" + leg.type)", - "=", - "Player.PointY(\"point\" + leg.type)" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "SetAngle" - }, - "parameters": [ - "hand", - "=", - "hand.angle + Player.Angle()" - ] - }, - { - "type": { - "value": "SetAngle" - }, - "parameters": [ - "leg", - "=", - "leg.angle + Player.Angle()" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "TopDownMovementBehavior::IsMoving" - }, - "parameters": [ - "Player", - "TopDownMovement" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjetTxt" - }, - "parameters": [ - "Player", - "Animation", - "=", - "\"walk\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "inverted": true, - "value": "TopDownMovementBehavior::IsMoving" - }, - "parameters": [ - "Player", - "TopDownMovement" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "ModVarObjetTxt" - }, - "parameters": [ - "Player", - "Animation", - "=", - "\"idle\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "DepartScene" - }, - "parameters": [ - "" - ] - } - ], - "actions": [ - { - "type": { - "value": "ResetObjectTimer" - }, - "parameters": [ - "Player", - "\"switchWalkAngle\"" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjetTxt" - }, - "parameters": [ - "Player", - "Animation", - "=", - "\"walk\"" - ] - } - ], - "actions": [], - "events": [ - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "CompareObjectTimer" - }, - "parameters": [ - "Player", - "\"switchWalkAngle\"", - ">=", - "Player.TopDownMovement::Speed()/400" - ] - }, - { - "type": { - "value": "BuiltinCommonInstructions::Once" - }, - "parameters": [] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "hand", - "Tween", - "\"hand\"", - "0", - "\"easeInQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "leg", - "Tween", - "\"leg\"", - "0", - "\"easeInQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Wait" - }, - "parameters": [ - "0.4" - ] - }, - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "hand", - "angle", - "+", - "180" - ] - }, - { - "type": { - "value": "ModVarObjet" - }, - "parameters": [ - "leg", - "angle", - "+", - "180" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "hand", - "Tween", - "\"hand\"", - "19", - "\"easeOutQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "leg", - "Tween", - "\"leg\"", - "19", - "\"easeOutQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "ResetObjectTimer" - }, - "parameters": [ - "Player", - "\"switchWalkAngle\"" - ] - } - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [ - { - "type": { - "value": "VarObjetTxt" - }, - "parameters": [ - "Player", - "Animation", - "=", - "\"idle\"" - ] - } - ], - "actions": [ - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "leg", - "Tween", - "\"leg\" + Player.Animation", - "0", - "\"easeOutQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - }, - { - "type": { - "value": "Tween::TweenBehavior::AddObjectWidthTween2" - }, - "parameters": [ - "hand", - "Tween", - "\"hand\" + Player.Animation", - "0", - "\"easeOutQuad\"", - "Player.Movement.handTweenDuration", - "" - ] - } - ] - }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [] - } - ], - "layers": [ - { - "ambientLightColorB": 200, - "ambientLightColorG": 200, - "ambientLightColorR": 200, - "camera3DFarPlaneDistance": 10000, - "camera3DFieldOfView": 45, - "camera3DNearPlaneDistance": 3, - "cameraType": "", - "followBaseLayerCamera": false, - "isLightingLayer": false, - "isLocked": false, - "name": "", - "renderingType": "", - "visibility": true, - "cameras": [ - { - "defaultSize": true, - "defaultViewport": true, - "height": 0, - "viewportBottom": 1, - "viewportLeft": 0, - "viewportRight": 1, - "viewportTop": 0, - "width": 0 - } - ], - "effects": [ - { - "effectType": "Scene3D::HemisphereLight", - "name": "3D Light", - "doubleParameters": { - "elevation": 45, - "intensity": 1, - "rotation": 0 - }, - "stringParameters": { - "groundColor": "64;64;64", - "skyColor": "255;255;255", - "top": "Y-" - }, - "booleanParameters": {} - } - ] - } - ], - "behaviorsSharedData": [ - { - "name": "Animation", - "type": "AnimatableCapability::AnimatableBehavior" - }, - { - "name": "Effect", - "type": "EffectCapability::EffectBehavior" - }, - { - "name": "FlashTransitionPainter", - "type": "FlashTransitionPainter::FlashTransitionPainter" - }, - { - "name": "Flippable", - "type": "FlippableCapability::FlippableBehavior" - }, - { - "name": "Opacity", - "type": "OpacityCapability::OpacityBehavior" - }, - { - "name": "Resizable", - "type": "ResizableCapability::ResizableBehavior" - }, - { - "name": "Scale", - "type": "ScalableCapability::ScalableBehavior" - }, - { - "name": "TopDownMovement", - "type": "TopDownMovementBehavior::TopDownMovementBehavior" - }, - { - "name": "Tween", - "type": "Tween::TweenBehavior" - } - ] -} \ No newline at end of file